From 03fa16ece128e585de7e98b788ba097f2f0682c8 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Sat, 18 Apr 2026 06:58:33 +0300 Subject: [PATCH 01/42] port compatible trader tool changes from pob1 --- spec/System/TestTradeQueryCurrency_spec.lua | 11 +- src/Classes/ItemsTab.lua | 4 +- src/Classes/TradeQuery.lua | 274 ++++++++++++++------ src/Classes/TradeQueryGenerator.lua | 95 +++++-- src/Classes/TradeQueryRequests.lua | 16 +- 5 files changed, 291 insertions(+), 109 deletions(-) diff --git a/spec/System/TestTradeQueryCurrency_spec.lua b/spec/System/TestTradeQueryCurrency_spec.lua index d3cccb5298..897de51637 100644 --- a/spec/System/TestTradeQueryCurrency_spec.lua +++ b/spec/System/TestTradeQueryCurrency_spec.lua @@ -1,6 +1,9 @@ describe("TradeQuery Currency Conversion", function() - local mock_tradeQuery = new("TradeQuery", { itemsTab = {} }) + local mock_tradeQuery + before_each(function() + mock_tradeQuery = new("TradeQuery", { itemsTab = {} }) + end) -- test case for commit: "Skip callback on errors to prevent incomplete conversions" describe("FetchCurrencyConversionTable", function() -- Pass: Callback not called on error @@ -40,15 +43,19 @@ describe("TradeQuery Currency Conversion", function() end) describe("PriceBuilderProcessPoENinjaResponse", function() - -- Pass: Processes without error, restoring map + -- Pass: Processes without error, restoring map while adding a notice -- Fail: Corrupts map or crashes, indicating fragile API response handling, breaking future conversions it("handles unmapped currency", function() local orig_conv = mock_tradeQuery.currencyConversionTradeMap mock_tradeQuery.currencyConversionTradeMap = { div = "id" } + mock_tradeQuery.pbLeague = "league" + mock_tradeQuery.pbCurrencyConversion = { league = {} } + mock_tradeQuery.controls.pbNotice = { label = "" } local resp = { exotic = 10 } mock_tradeQuery:PriceBuilderProcessPoENinjaResponse(resp) -- No crash expected assert.is_true(true) + assert.is_true(mock_tradeQuery.controls.pbNotice.label == "No currencies received from PoE Ninja") mock_tradeQuery.currencyConversionTradeMap = orig_conv end) end) diff --git a/src/Classes/ItemsTab.lua b/src/Classes/ItemsTab.lua index 112b343563..6faf51048f 100644 --- a/src/Classes/ItemsTab.lua +++ b/src/Classes/ItemsTab.lua @@ -1512,7 +1512,7 @@ local function isAugmentable(item) return (item.sockets and #item.sockets > 0) or (item.base.socketLimit and item.base.socketLimit > 0) end -function ItemsTabClass:copyAnointsAndAugments(newItem, copyAugments, overwrite, sourceSlotName) +function ItemsTabClass:CopyAnointsAndAugments(newItem, copyAugments, overwrite, sourceSlotName) local isWeapon = newItem.base.tags and (newItem.base.tags.onehand or newItem.base.tags.twohand) local isShield = newItem.base.tags and (newItem.base.tags.shield or newItem.base.tags.focus) local newItemType = sourceSlotName or (isWeapon and "Weapon 1") or (isShield and "Weapon 2") or newItem.base.type @@ -1577,7 +1577,7 @@ end function ItemsTabClass:CreateDisplayItemFromRaw(itemRaw, normalise) local newItem = new("Item", itemRaw) if newItem.base then - self:copyAnointsAndAugments(newItem, main.migrateAugments, false) + self:CopyAnointsAndAugments(newItem, main.migrateAugments, false) if normalise then newItem:NormaliseQuality() newItem:BuildModList() diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index 95d62dd7db..258837e58e 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -48,6 +48,8 @@ local TradeQueryClass = newClass("TradeQuery", function(self, itemsTab) self.realmIds = { ["PoE 2"] = "poe2", } + -- last query for each row + self.lastQueries = {} self.tradeQueryRequests = new("TradeQueryRequests") main.onFrameFuncs["TradeQueryRequests"] = function() @@ -186,12 +188,17 @@ function TradeQueryClass:PriceBuilderProcessPoENinjaResponse(resp) if resp then -- Populate the chaos-converted values for each tradeId for currencyName, chaosEquivalent in pairs(resp) do + local currencyName = currencyName:lower() if self.currencyConversionTradeMap[currencyName] then self.pbCurrencyConversion[self.pbLeague][self.currencyConversionTradeMap[currencyName]] = chaosEquivalent else ConPrintf("Unhandled Currency Name: '"..currencyName.."'") end end + -- if nothing was actually found, we should add a notice + if next(self.pbCurrencyConversion[self.pbLeague]) == nil then + self:SetNotice(self.controls.pbNotice, "No currencies received from PoE Ninja") + end else self:SetNotice(self.controls.pbNotice, "PoE Ninja JSON Processing Error") end @@ -279,9 +286,25 @@ You can click this button to enter your POESESSID. - You can only generate weighted searches for public leagues. (Generated searches can be modified on trade site to work on other leagues and realms)]] --- Fetches Box + -- Buyout selection + self.tradeTypes = { + "Instant buyout", + "Instant buyout and in person", + "In person (online in league)", + "In person (online)", + "Any (includes offline)" + } + + self.controls.tradeTypeSelection = new("DropDownControl", { "TOPLEFT", self.controls.poesessidButton, "BOTTOMLEFT" }, + { 0, row_vertical_padding, 188, row_height }, self.tradeTypes, function(index, value) + self.tradeTypeIndex = index + end) + -- remember previous choice + self.controls.tradeTypeSelection:SetSel(self.tradeTypeIndex or 1) + + -- Fetches Box self.maxFetchPerSearchDefault = 2 - self.controls.fetchCountEdit = new("EditControl", {"TOPRIGHT", nil, "TOPRIGHT"}, {-12, 19, 154, row_height}, "", "Fetch Pages", "%D", 3, function(buf) + self.controls.fetchCountEdit = new("EditControl", {"TOPRIGHT", nil, "TOPRIGHT"}, {-12, 19, 150, row_height}, "", "Fetch Pages", "%D", 3, function(buf) self.maxFetchPages = m_min(m_max(tonumber(buf) or self.maxFetchPerSearchDefault, 1), 10) self.tradeQueryRequests.maxFetchPerSearch = 10 * self.maxFetchPages self.controls.fetchCountEdit.focusValue = self.maxFetchPages @@ -340,25 +363,12 @@ on trade site to work on other leagues and realms)]] [[Weighted Sum searches will always sort using descending weighted sum Additional post filtering options can be done these include: Highest Stat Value - Sort from highest to lowest Stat Value change of equipping item -Highest Stat Value / Price - Sorts from highest to lowest Stat Value per currency +Highest Stat Value / Price - Sorts from highest to lowest by estimated Stat Value per currency Lowest Price - Sorts from lowest to highest price of retrieved items Highest Weight - Displays the order retrieved from trade]] - self.controls.itemSortSelection:SetSel(self.pbItemSortSelectionIndex) - self.controls.itemSortSelectionLabel = new("LabelControl", {"TOPRIGHT", self.controls.itemSortSelection, "TOPLEFT"}, {-4, 0, 60, 16}, "^7Sort By:") - - -- Use Enchant in DPS sorting - self.controls.enchantInSort = new("CheckBoxControl", {"TOPRIGHT",self.controls.fetchCountEdit,"TOPLEFT"}, {-8, 0, row_height}, "Include Enchants:", function(state) - self.enchantInSort = state - for row_idx, _ in pairs(self.resultTbl) do - self:UpdateControlsWithItems(row_idx) - end - end) - self.controls.enchantInSort.tooltipText = "This includes enchants in sorting that occurs after trade results have been retrieved" - - self.controls.updateCurrencyConversion = new("ButtonControl", {"BOTTOMLEFT", nil, "BOTTOMLEFT"}, {pane_margins_horizontal, -pane_margins_vertical, 240, row_height}, "Get Currency Conversion Rates", function() - -- self:PullPoENinjaCurrencyConversion(self.pbLeague) - end) - self.controls.pbNotice = new("LabelControl", {"BOTTOMRIGHT", nil, "BOTTOMRIGHT"}, {-row_height - pane_margins_vertical - row_vertical_padding, -pane_margins_vertical - row_height - row_vertical_padding, 300, row_height}, "") + -- avoid calling selFunc to avoid updating controls before they are initialised + self.controls.itemSortSelection:SetSel(self.pbItemSortSelectionIndex, true) + self.controls.itemSortSelectionLabel = new("LabelControl", {"TOPRIGHT", self.controls.itemSortSelection, "TOPLEFT"}, {-4, 0, 56, 16}, "^7Sort By:") -- Realm selection self.controls.realmLabel = new("LabelControl", {"LEFT", self.controls.setSelect, "RIGHT"}, {18, 0, 20, row_height - 4}, "^7Realm:") @@ -433,7 +443,7 @@ Highest Weight - Displays the order retrieved from trade]] t_insert(slotTables, { slotName = self.itemsTab.sockets[nodeId].label, nodeId = nodeId }) end - self.controls.sectionAnchor = new("LabelControl", {"LEFT", self.controls.poesessidButton, "LEFT"}, {0, 0, 0, 0}, "") + self.controls.sectionAnchor = new("LabelControl", {"LEFT", self.controls.tradeTypeSelection, "LEFT"}, {0, row_vertical_padding + row_height, 0, 0}, "") top_pane_alignment_ref = {"TOPLEFT", self.controls.sectionAnchor, "TOPLEFT"} local scrollBarShown = #slotTables > 21 -- clipping starts beyond this -- dynamically hide rows that are above or below the scrollBar @@ -494,6 +504,11 @@ Highest Weight - Displays the order retrieved from trade]] wipeItemControls() end) + self.controls.updateCurrencyConversion = new("ButtonControl", {"BOTTOMLEFT", nil, "BOTTOMLEFT"}, {pane_margins_horizontal, -pane_margins_vertical, 240, row_height}, "Get Currency Conversion Rates", function() + self:PullPoENinjaCurrencyConversion(self.pbLeague) + end) + self.controls.pbNotice = new("LabelControl", {"BOTTOMRIGHT", nil, "BOTTOMRIGHT"}, {-row_height - pane_margins_vertical - row_vertical_padding, -pane_margins_vertical, 300, row_height}, "") + -- used in PopupDialog:Draw() local function scrollBarFunc() self.controls.scrollBar.height = self.pane_height-100 @@ -617,6 +632,7 @@ function TradeQueryClass:SetCurrencyConversionButton() self.controls.updateCurrencyConversion.tooltipFunc = function(tooltip) tooltip:Clear() tooltip:AddLine(16, "Currency Conversion rates are pulled from PoE Ninja") + tooltip:AddLine(16, "The data is only available for the PC realm.") end return end @@ -675,23 +691,24 @@ function TradeQueryClass:ReduceOutput(output) end -- Method to evaluate a result by getting it's output and weight -function TradeQueryClass:GetResultEvaluation(row_idx, result_index) +function TradeQueryClass:GetResultEvaluation(row_idx, result_index, calcFunc, baseOutput) local result = self.resultTbl[row_idx][result_index] - local calcFunc, baseOutput = self.itemsTab.build.calcsTab:GetMiscCalculator() - local onlyWeightedBaseOutput = self:ReduceOutput(baseOutput) - if not self.onlyWeightedBaseOutput[row_idx] then - self.onlyWeightedBaseOutput[row_idx] = { } - end - if not self.lastComparedWeightList[row_idx] then - self.lastComparedWeightList[row_idx] = { } - end - -- If the interesting stats are the same (the build hasn't changed) and result has already been evaluated, then just return that - if result.evaluation and tableDeepEquals(onlyWeightedBaseOutput, self.onlyWeightedBaseOutput[row_idx][result_index]) and tableDeepEquals(self.statSortSelectionList, self.lastComparedWeightList[row_idx][result_index]) then - return result.evaluation + if not calcFunc then -- Always evaluate when calcFunc is given + calcFunc, baseOutput = self.itemsTab.build.calcsTab:GetMiscCalculator() + local onlyWeightedBaseOutput = self:ReduceOutput(baseOutput) + if not self.onlyWeightedBaseOutput[row_idx] then + self.onlyWeightedBaseOutput[row_idx] = { } + end + if not self.lastComparedWeightList[row_idx] then + self.lastComparedWeightList[row_idx] = { } + end + -- If the interesting stats are the same (the build hasn't changed) and result has already been evaluated, then just return that + if result.evaluation and tableDeepEquals(onlyWeightedBaseOutput, self.onlyWeightedBaseOutput[row_idx][result_index]) and tableDeepEquals(self.statSortSelectionList, self.lastComparedWeightList[row_idx][result_index]) then + return result.evaluation + end + self.onlyWeightedBaseOutput[row_idx][result_index] = onlyWeightedBaseOutput + self.lastComparedWeightList[row_idx][result_index] = self.statSortSelectionList end - self.fullBaseOutput = baseOutput - self.onlyWeightedBaseOutput[row_idx][result_index] = onlyWeightedBaseOutput - self.lastComparedWeightList[row_idx][result_index] = self.statSortSelectionList local slotName = self.slotTables[row_idx].nodeId and "Jewel " .. tostring(self.slotTables[row_idx].nodeId) or self.slotTables[row_idx].slotName if slotName == "Megalomaniac" then @@ -708,10 +725,7 @@ function TradeQueryClass:GetResultEvaluation(row_idx, result_index) result.evaluation = {{ output = output, weight = weight }} else local item = new("Item", result.item_string) - if not self.enchantInSort then -- Calc item DPS without anoint or enchant as these can generally be added after. - item.enchantModLines = { } - item:BuildAndParseRaw() - end + local output = self:ReduceOutput(calcFunc({ repSlotName = slotName, repItem = item })) local weight = self.tradeQueryGenerator.WeightedRatioOutputs(baseOutput, output, self.statSortSelectionList) result.evaluation = {{ output = output, weight = weight }} @@ -720,6 +734,22 @@ function TradeQueryClass:GetResultEvaluation(row_idx, result_index) end -- Method to update controls after a search is completed +function TradeQueryClass:UpdateDropdownList(row_idx) + local dropdownLabels = {} + + if not self.resultTbl[row_idx] then return end + + for result_index = 1, #self.resultTbl[row_idx] do + + local pb_index = self.sortedResultTbl[row_idx][result_index].index + local result = self.resultTbl[row_idx][pb_index] + local price = string.format(" %s(%d %s)", colorCodes["CURRENCY"], result.amount, result.currency) + local item = new("Item", result.item_string) + table.insert(dropdownLabels, colorCodes[item.rarity] .. item.name .. price) + end + self.controls["resultDropdown".. row_idx].selIndex = 1 + self.controls["resultDropdown".. row_idx]:SetList(dropdownLabels) +end function TradeQueryClass:UpdateControlsWithItems(row_idx) local sortMode = self.itemSortSelectionList[self.pbItemSortSelectionIndex] local sortedItems, errMsg = self:SortFetchResults(row_idx, sortMode) @@ -743,14 +773,7 @@ function TradeQueryClass:UpdateControlsWithItems(row_idx) amount = self.resultTbl[row_idx][pb_index].amount, } self.controls.fullPrice.label = "Total Price: " .. self:GetTotalPriceString() - local dropdownLabels = {} - for result_index = 1, #self.resultTbl[row_idx] do - local pb_index = self.sortedResultTbl[row_idx][result_index].index - local item = new("Item", self.resultTbl[row_idx][pb_index].item_string) - table.insert(dropdownLabels, colorCodes[item.rarity]..item.name) - end - self.controls["resultDropdown".. row_idx].selIndex = 1 - self.controls["resultDropdown".. row_idx]:SetList(dropdownLabels) + self:UpdateDropdownList(row_idx) end -- Method to set the current result return in the pane based of an index @@ -766,7 +789,11 @@ end -- Method to sort the fetched results function TradeQueryClass:SortFetchResults(row_idx, mode) + local calcFunc, baseOutput local function getResultWeight(result_index) + if not calcFunc then + calcFunc, baseOutput = self.itemsTab.build.calcsTab:GetMiscCalculator() + end local sum = 0 for _, eval in ipairs(self:GetResultEvaluation(row_idx, result_index)) do sum = sum + eval.weight @@ -804,7 +831,20 @@ function TradeQueryClass:SortFetchResults(row_idx, mode) return nil, "MissingConversionRates" end for result_index = 1, #self.resultTbl[row_idx] do - t_insert(newTbl, { outputAttr = getResultWeight(result_index) / priceTable[result_index], index = result_index }) + -- generally, because we are filtering our results to only the top + -- contenders, we will end up with a small spread of result weights. + -- this is however not true for prices as *decent* items might start + -- at a couple of div while perfect items are worth hundreds of + -- divs. I think the best option here is weight - k * log10(price) + -- to prioritise good items while only slightly punishing high + -- prices. another option would be weight / log10(price), but it + -- still seems to overrate very cheap items that are bad + + -- scaling factor for price + local k = 0.03 + t_insert(newTbl, + { outputAttr = getResultWeight(result_index) - k * math.log(priceTable[result_index], 10), index = + result_index }) end table.sort(newTbl, function(a,b) return a.outputAttr > b.outputAttr end) elseif mode == self.sortModes.Price then @@ -840,7 +880,10 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro local controls = self.controls local slotTbl = self.slotTables[row_idx] local activeSlotRef = slotTbl.nodeId and self.itemsTab.activeItemSet[slotTbl.nodeId] or self.itemsTab.activeItemSet[slotTbl.slotName] - local activeSlot = slotTbl.nodeId and self.itemsTab.sockets[slotTbl.nodeId] or slotTbl.slotName and self.itemsTab.slots[slotTbl.slotName] + local activeSlot = slotTbl.nodeId and self.itemsTab.sockets[slotTbl.nodeId] or + slotTbl.slotName and (self.itemsTab.slots[slotTbl.slotName] or + slotTbl.slotName == "Watcher's Eye" and self:findValidSlotForWatchersEye() or + slotTbl.fullName and self.itemsTab.slots[slotTbl.fullName]) -- fullName for Abyssal Sockets local nameColor = slotTbl.unique and colorCodes.UNIQUE or "^7" controls["name"..row_idx] = new("LabelControl", top_pane_alignment_ref, {0, row_idx*(row_height + row_vertical_padding), 100, row_height - 4}, nameColor..slotTbl.slotName) controls["bestButton"..row_idx] = new("ButtonControl", { "LEFT", controls["name"..row_idx], "LEFT"}, {100 + 8, 0, 80, row_height}, "Find best", function() @@ -858,6 +901,7 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro return end context.controls["priceButton"..context.row_idx].label = "Searching..." + self.lastQueries[row_idx] = query self.tradeQueryRequests:SearchWithQueryWeightAdjusted(self.pbRealm, self.pbLeague, query, function(items, errMsg) if errMsg then @@ -867,6 +911,31 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro else self:SetNotice(context.controls.pbNotice, "") end + + if self.tradeQueryGenerator.lastAugmentBehaviour == "Copy Current" or self.tradeQueryGenerator.lastAnointBehaviour == "Copy Current" then + for i, _ in ipairs(items) do + local item = new("Item", items[i].item_string) + self.itemsTab:CopyAnointsAndAugments(item, true, true, context.slotTbl.slotName) + items[i].item_string = item:BuildRaw() + end + elseif self.tradeQueryGenerator.lastAugmentBehaviour == "Remove" then + for item_idx, _ in ipairs(items) do + local item = new("Item", items[item_idx].item_string) + -- sockets are kept as-is so the user can see e.g. exceptional or corrupted sockets + for rune_idx, _ in ipairs(item.runes or {}) do + item.runes[rune_idx] = "None" + end + item:UpdateRunes() + items[item_idx].item_string = item:BuildRaw() + end + elseif self.tradeQueryGenerator.lastAnointBehaviour == "Remove" then + for i, _ in ipairs(items) do + local item = new("Item", items[i].item_string) + item.enchantModLines = {} + items[i].item_string = item:BuildRaw() + end + end + self.resultTbl[context.row_idx] = items self:UpdateControlsWithItems(context.row_idx) context.controls["priceButton"..context.row_idx].label = "Price Item" @@ -914,11 +983,12 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro controls["priceButton"..row_idx] = new("ButtonControl", { "TOPLEFT", controls["uri"..row_idx], "TOPRIGHT"}, {8, 0, 100, row_height}, "Price Item", function() controls["priceButton"..row_idx].label = "Searching..." - self.tradeQueryRequests:SearchWithURL(controls["uri"..row_idx].buf, function(items, errMsg) + self.tradeQueryRequests:SearchWithURL(controls["uri"..row_idx].buf, function(items, errMsg, query) if errMsg then self:SetNotice(controls.pbNotice, "Error: " .. errMsg) else self:SetNotice(controls.pbNotice, "") + self.lastQueries[row_idx] = query self.resultTbl[row_idx] = items self:UpdateControlsWithItems(row_idx) end @@ -950,29 +1020,24 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro self.controls.fullPrice.label = "Total Price: " .. self:GetTotalPriceString() end) controls["changeButton"..row_idx].shown = function() return self.resultTbl[row_idx] end - local dropdownLabels = {} - for _, sortedResult in ipairs(self.sortedResultTbl[row_idx] or {}) do - local item = new("Item", self.resultTbl[row_idx][sortedResult.index].item_string) - table.insert(dropdownLabels, colorCodes[item.rarity]..item.name) - end - controls["resultDropdown"..row_idx] = new("DropDownControl", { "TOPLEFT", controls["changeButton"..row_idx], "TOPRIGHT"}, {8, 0, 325, row_height}, dropdownLabels, function(index) + controls["resultDropdown"..row_idx] = new("DropDownControl", { "TOPLEFT", controls["changeButton"..row_idx], "TOPRIGHT"}, {8, 0, 325, row_height}, {}, function(index) self.itemIndexTbl[row_idx] = self.sortedResultTbl[row_idx][index].index self:SetFetchResultReturn(row_idx, self.itemIndexTbl[row_idx]) end) - local function addCompareTooltip(tooltip, result_index, dbMode) - local result = self.resultTbl[row_idx][result_index] - local item = new("Item", result.item_string) - self.itemsTab:AddItemTooltip(tooltip, item, slotTbl, dbMode) - if main.slotOnlyTooltips and slotTbl.slotName == "Megalomaniac" then - local evaluation = self.resultTbl[row_idx][result_index].evaluation - self.itemsTab.build:AddStatComparesToTooltip(tooltip, self.onlyWeightedBaseOutput[row_idx][result_index], evaluation[1].output, "^7Equipping this item will give you:") - end - end + self:UpdateDropdownList(row_idx) controls["resultDropdown"..row_idx].tooltipFunc = function(tooltip, dropdown_mode, dropdown_index, dropdown_display_string) + local sortedRow = self.sortedResultTbl[row_idx] + if not sortedRow or not sortedRow[dropdown_index] then + return + end + local pb_index = sortedRow[dropdown_index].index + local result = self.resultTbl[row_idx] and self.resultTbl[row_idx][pb_index] + if not result then + return + end + local item = new("Item", result.item_string) tooltip:Clear() - local result_index = self.sortedResultTbl[row_idx][dropdown_index].index - local result = self.resultTbl[row_idx][result_index] - addCompareTooltip(tooltip, result_index) + self.itemsTab:AddItemTooltip(tooltip, item, activeSlot) tooltip:AddSeparator(10) tooltip:AddLine(16, string.format("^7Price: %s %s", result.amount, result.currency)) end @@ -993,28 +1058,69 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro controls["importButton"..row_idx].tooltipFunc = function(tooltip) tooltip:Clear() local selected_result_index = self.itemIndexTbl[row_idx] - if selected_result_index then - addCompareTooltip(tooltip, selected_result_index, true) + local item_string = self.resultTbl[row_idx][selected_result_index].item_string + if selected_result_index and item_string then + -- TODO: item parsing bug caught here. + -- item.baseName is nil and throws error in the following AddItemTooltip func + -- if the item is unidentified + local item = new("Item", item_string) + self.itemsTab:AddItemTooltip(tooltip, item, activeSlot, true) end end controls["importButton"..row_idx].enabled = function() return self.itemIndexTbl[row_idx] and self.resultTbl[row_idx][self.itemIndexTbl[row_idx]].item_string ~= nil end -- Whisper so we can copy to clipboard - controls["whisperButton"..row_idx] = new("ButtonControl", { "TOPLEFT", controls["importButton"..row_idx], "TOPRIGHT"}, {8, 0, 185, row_height}, function() - return self.totalPrice[row_idx] and "Whisper for " .. self.totalPrice[row_idx].amount .. " " .. self.totalPrice[row_idx].currency or "Whisper" - end, function() - Copy(self.resultTbl[row_idx][self.itemIndexTbl[row_idx]].whisper) - end) - controls["whisperButton"..row_idx].enabled = function() - return self.itemIndexTbl[row_idx] and self.resultTbl[row_idx][self.itemIndexTbl[row_idx]].whisper ~= nil - end - controls["whisperButton"..row_idx].tooltipFunc = function(tooltip) + controls["whisperButton" .. row_idx] = new("ButtonControl", + { "TOPLEFT", controls["importButton" .. row_idx], "TOPRIGHT" }, { 8, 0, 170, row_height }, function() + local itemResult = self.itemIndexTbl[row_idx] and self.resultTbl[row_idx][self.itemIndexTbl[row_idx]] + + if not itemResult then return "" end + + local price = self.totalPrice[row_idx] and + self.totalPrice[row_idx].amount .. " " .. self.totalPrice[row_idx].currency + + if itemResult.whisper then + return price and "Whisper for " .. price or "Whisper" + else + return price and "Search for " .. price or "Search" + end + + end, function() + local itemResult = self.itemIndexTbl[row_idx] and self.resultTbl[row_idx][self.itemIndexTbl[row_idx]] + if itemResult.whisper then + Copy(itemResult.whisper) + else + local exactQuery = dkjson.decode(self.lastQueries[row_idx]) + -- use trade sum to get the specific item. both min and max + -- weight on site uses floats but only shows integer in the api + -- e.g. weight of 172.3 shows up as 172 in the api + exactQuery.query.stats[1].value = { min = floor(itemResult.weight, 1) - 1, max = round(itemResult.weight, 1) + 1 } + -- also apply trader name. this should make false positives + -- extremely unlikely. this doesn't seem to take up a filter slot + exactQuery.query.filters = exactQuery.query.filters or { } + exactQuery.query.filters.trade_filters = exactQuery.query.filters.trade_filters or { filters = { } } + exactQuery.query.filters.trade_filters.filters = exactQuery.query.filters.trade_filters.filters or { } + exactQuery.query.filters.trade_filters.filters.account = { input = itemResult.trader } + + local exactQueryStr = dkjson.encode(exactQuery) + + self.tradeQueryRequests:SearchWithQuery(self.pbRealm, self.pbLeague, exactQueryStr, function(_, _) + end, {callbackQueryId = function(queryId) + local url = self.hostName.."trade2/search/"..self.pbLeague.."/"..queryId + Copy(url) + OpenURL(url) + end}) + end + end) + + controls["whisperButton" .. row_idx].tooltipFunc = function(tooltip) tooltip:Clear() - if self.itemIndexTbl[row_idx] and self.resultTbl[row_idx][self.itemIndexTbl[row_idx]].item_string then - tooltip.center = true - tooltip:AddLine(16, "Copies the item purchase whisper to the clipboard") - end + tooltip.center = true + local itemResult = self.itemIndexTbl[row_idx] and self.resultTbl[row_idx][self.itemIndexTbl[row_idx]] + local text = itemResult.whisper and "Copies the item purchase whisper to the clipboard" or + "Opens the search page to show the item" + tooltip:AddLine(16, text) end end @@ -1052,7 +1158,7 @@ function TradeQueryClass:UpdateRealms() self.controls.realm:SetSel(self.pbRealmIndex) end - -- use trade leagues api to get trade leagues including private leagues if valid. + -- use trade leagues api to get trade leagues including private leagues is valid. for _, realmId in pairs (self.realmIds) do self.tradeQueryRequests:FetchLeagues(realmId, function(leagues, errMsg) if errMsg then diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index cd04b97399..443cae97e9 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -706,6 +706,15 @@ function TradeQueryGeneratorClass:FinishQuery() -- So apply a modifier to get a reasonable min and hopefully approximate that the query will start out with small upgrades. local minWeight = megalomaniacSpecialMinWeight or currentStatDiff * 0.5 + -- what the trade site API uses for instant buyout etc. + self.tradeTypes = { + "securable", + "available", + "onlineleague", + "online", + "any", + } + local selectedTradeType = self.tradeTypes[self.tradeTypeIndex] -- Generate trade query str and open in browser local filters = 0 local queryTable = { @@ -718,7 +727,7 @@ function TradeQueryGeneratorClass:FinishQuery() } } }, - status = { option = "available" }, + status = { option = selectedTradeType }, stats = { { type = "weight", @@ -740,6 +749,10 @@ function TradeQueryGeneratorClass:FinishQuery() if options.maxPrice and options.maxPrice > 0 then num_extra = num_extra + 1 end + if options.account then + queryTable.query.filters.trade_filters.filters.account = {input = options.account} + end + if options.maxLevel and options.maxLevel > 0 then num_extra = num_extra + 1 end @@ -836,30 +849,65 @@ function TradeQueryGeneratorClass:RequestQuery(slot, context, statWeights, callb local isJewelSlot = slot and slot.slotName:find("Jewel") ~= nil - controls.includeCorrupted = new("CheckBoxControl", {"TOP",nil,"TOP"}, {-40, 30, 18}, "Corrupted Mods:", function(state) end) + local lastItemAnchor + local function updateLastAnchor(anchor, height) + lastItemAnchor = anchor + popupHeight = popupHeight + (height or 23) + end + + controls.includeCorrupted = new("CheckBoxControl", {"TOP",nil,"TOP"}, {-40, 30, 18}, "Corrupted Mods:", function(state) end, "Includes corruption implicit modifiers in the weighted sum.\nNote that there is a maximum search filter count which means this might cause other weights to not be included.") controls.includeCorrupted.state = not context.slotTbl.alreadyCorrupted and (self.lastIncludeCorrupted == nil or self.lastIncludeCorrupted == true) controls.includeCorrupted.enabled = not context.slotTbl.alreadyCorrupted + updateLastAnchor(controls.includeCorrupted) - local canHaveRunes = slot and (slot.slotName:find("Weapon 1") or slot.slotName:find("Weapon 2") or slot.slotName:find("Helmet") or slot.slotName:find("Body Armour") or slot.slotName:find("Gloves") or slot.slotName:find("Boots")) - controls.includeRunes = new("CheckBoxControl", {"TOPRIGHT",controls.includeCorrupted,"BOTTOMRIGHT"}, {0, 5, 18}, "Rune Mods:", function(state) end) - controls.includeRunes.state = canHaveRunes and (self.lastIncludeRunes == nil or self.lastIncludeRunes == true) - controls.includeRunes.enabled = canHaveRunes - local lastItemAnchor = controls.includeRunes + - local function updateLastAnchor(anchor, height) - lastItemAnchor = anchor - popupHeight = popupHeight + (height or 23) + controls.includeMirrored = new("CheckBoxControl", {"TOPRIGHT",lastItemAnchor,"BOTTOMRIGHT"}, {0, 5, 18}, "Mirrored Items:", function(state) end) + controls.includeMirrored.state = (self.lastIncludeMirrored == nil or self.lastIncludeMirrored == true) + updateLastAnchor(controls.includeMirrored) + + -- there are also some exceptions like the darkness enthroned belt, but runes on these are not yet working pob + local isAugmentableSlot = slot and (slot.slotName:find("Weapon 1") or slot.slotName:find("Weapon 2") or slot.slotName:find("Helmet") or slot.slotName:find("Body Armour") or slot.slotName:find("Gloves") or slot.slotName:find("Boots")) + if isAugmentableSlot then + local augmentTooltip = [[Controls how augments are used in the search. + +Copy Current: augments in weights are skipped and augments are replaced with the current augments when possible. +Usually the best opinion as this ensures the augments makes sense for your build. + +Keep: augments will be included in weights and will not be changed on items. +Best used when you value an augment greatly, and cannot add it yourself. + +Remove: augments are completely ignored, and removed from items.]] + controls.augmentBehaviour = new("DropDownControl", {"TOPLEFT", lastItemAnchor, "BOTTOMLEFT"}, {0, 5, 110, 18}, {"Copy Current", "Keep", "Remove"}, function(state) end, augmentTooltip) + controls.augmentBehaviour:SetSel(self.lastAugmentBehaviourIdx or 1) + controls.augmentBehaviourLabel = new("LabelControl", { "RIGHT", controls.augmentBehaviour, "LEFT" }, + { -4, 0, 80, 16 }, "Rune Behaviour:") + updateLastAnchor(controls.augmentBehaviour) + end + + local isAmulet = slot and (slot.slotName:find("Amulet")) + if isAmulet then + local augmentTooltip = [[Controls how anoints are used in the search. + +Copy Current: anoints are replaced with the current anoint when possible. +Usually the best opinion as this ensures the anoint makes sense for your build. + +Keep: anoints will not be changed on items. +Best used when you cannot add one yourself. Note that weights cannot be generated for anoints. + +Remove: anoints are completely ignored, and removed from items.]] + controls.anointBehaviour = new("DropDownControl", {"TOPLEFT", lastItemAnchor, "BOTTOMLEFT"}, {0, 5, 110, 18}, {"Copy Current", "Keep", "Remove"}, function(state) end, augmentTooltip) + controls.anointBehaviour:SetSel(self.lastAnointBehaviourIdx or 1) + controls.anointBehaviourLabel = new("LabelControl", { "RIGHT", controls.anointBehaviour, "LEFT" }, + { -4, 0, 80, 16 }, "Anoint Behaviour:") + updateLastAnchor(controls.anointBehaviour) end if context.slotTbl.unique then options.special = { itemName = context.slotTbl.slotName } end - controls.includeMirrored = new("CheckBoxControl", {"TOPRIGHT",lastItemAnchor,"BOTTOMRIGHT"}, {0, 5, 18}, "Mirrored items:", function(state) end) - controls.includeMirrored.state = (self.lastIncludeMirrored == nil or self.lastIncludeMirrored == true) - updateLastAnchor(controls.includeMirrored) - if isJewelSlot then controls.jewelType = new("DropDownControl", {"TOPLEFT",lastItemAnchor,"BOTTOMLEFT"}, {0, 5, 100, 18}, { "Any", "Base", "Radius" }, function(index, value) end) -- this does nothing atm @@ -889,7 +937,7 @@ function TradeQueryGeneratorClass:RequestQuery(slot, context, statWeights, callb if slot and not isJewelSlot and not slot.slotName:find("Flask") and not slot.slotName:find("Belt") and not slot.slotName:find("Ring") and not slot.slotName:find("Amulet") and not slot.slotName:find("Charm") then controls.sockets = new("EditControl", {"TOPLEFT",lastItemAnchor,"BOTTOMLEFT"}, {0, 5, 70, 18}, nil, nil, "%D") controls.sockets.buf = self.lastSockets and tostring(self.lastSockets) or "" - controls.socketsLabel = new("LabelControl", {"RIGHT",controls.sockets,"LEFT"}, {-5, 0, 0, 16}, "# of Empty Sockets:") + controls.socketsLabel = new("LabelControl", {"RIGHT",controls.sockets,"LEFT"}, {-5, 0, 0, 16}, "^7# of Empty Sockets:") updateLastAnchor(controls.sockets) end @@ -919,14 +967,27 @@ function TradeQueryGeneratorClass:RequestQuery(slot, context, statWeights, callb controls.generateQuery = new("ButtonControl", { "BOTTOM", nil, "BOTTOM" }, {-45, -10, 80, 20}, "Execute", function() main:ClosePopup() + self.tradeTypeIndex = context.controls.tradeTypeSelection.selIndex + if controls.includeMirrored then self.lastIncludeMirrored, options.includeMirrored = controls.includeMirrored.state, controls.includeMirrored.state end if controls.includeCorrupted then self.lastIncludeCorrupted, options.includeCorrupted = controls.includeCorrupted.state, controls.includeCorrupted.state end - if controls.includeRunes then - self.lastIncludeRunes, options.includeRunes = controls.includeRunes.state, controls.includeRunes.state + if controls.augmentBehaviour then + -- remember setting + self.lastAugmentBehaviourIdx = controls.augmentBehaviour.selIndex + -- used by TradeQuery to change augments accordingly + self.lastAugmentBehaviour = controls.augmentBehaviour:GetSelValue() + -- whether weights should be generated + options.includeRunes = controls.augmentBehaviour:GetSelValue() == "Keep" + end + if controls.anointBehaviour then + -- remember setting + self.lastAnointBehaviourIdx = controls.anointBehaviour.selIndex + -- used by TradeQuery to change anoints accordingly + self.lastAnointBehaviour = controls.anointBehaviour:GetSelValue() end if controls.jewelType then self.lastJewelType = controls.jewelType.selIndex diff --git a/src/Classes/TradeQueryRequests.lua b/src/Classes/TradeQueryRequests.lua index b0cdf86326..4f30c38471 100644 --- a/src/Classes/TradeQueryRequests.lua +++ b/src/Classes/TradeQueryRequests.lua @@ -425,8 +425,14 @@ function TradeQueryRequestsClass:FetchResultBlock(url, callback) table.insert(items, { amount = trade_entry.listing.price.amount, currency = trade_entry.listing.price.currency, + -- note: using these to travel to the hideout or for a + -- direct whisper is not allowed, even if they are provided + -- right here + -- hideout_token = trade_entry.listing.hideout_token, + -- whisper_token = trade_entry.listing.whisper_token, item_string = table.concat(rawLines, "\n"), whisper = trade_entry.listing.whisper, + trader = trade_entry.listing.account.name, weight = trade_entry.item.pseudoMods and trade_entry.item.pseudoMods[1]:match("Sum: (.+)") or "0", id = trade_entry.id }) @@ -436,7 +442,7 @@ function TradeQueryRequestsClass:FetchResultBlock(url, callback) }) end ----@param callback fun(items:table, errMsg:string) +---@param callback fun(items:table, errMsg:string, query: string?) function TradeQueryRequestsClass:SearchWithURL(url, callback) local subpath = url:match(self.hostName .. "trade2/search/(.+)$") local paths = {} @@ -444,7 +450,7 @@ function TradeQueryRequestsClass:SearchWithURL(url, callback) table.insert(paths, path) end if #paths < 2 or #paths > 3 then - return callback(nil, "Invalid URL") + return callback(nil, "Invalid URL", nil) end local realm, league, queryId if #paths == 3 then @@ -454,7 +460,7 @@ function TradeQueryRequestsClass:SearchWithURL(url, callback) queryId = paths[#paths] self:FetchSearchQuery(realm, league, queryId, function(query, errMsg) if errMsg then - return callback(nil, errMsg) + return callback(nil, errMsg, nil) end -- update sorting on provided url to sort by weights. @@ -470,7 +476,9 @@ function TradeQueryRequestsClass:SearchWithURL(url, callback) end query = dkjson.encode(json_data) - self:SearchWithQuery(realm, league, query, callback) + self:SearchWithQuery(realm, league, query, function(items, searchErrMsg) + callback(items, searchErrMsg, query) + end) end) end From 654cf23ccb7398e0ea650ee5024d33a1daf1cec6 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Sun, 19 Apr 2026 08:28:12 +0300 Subject: [PATCH 02/42] Fix corrupted mods being fractured mods in trade mod generation --- src/Classes/TradeQueryGenerator.lua | 2 +- src/Data/QueryMods.lua | 1025 +++++++++++++++++++-------- 2 files changed, 732 insertions(+), 295 deletions(-) diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index 443cae97e9..79350c56ae 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -84,7 +84,7 @@ end local tradeStatCategoryIndices = { ["Explicit"] = 2, ["Implicit"] = 3, - ["Corrupted"] = 4, + ["Corrupted"] = 5, ["AllocatesXEnchant"] = 5, ["Rune"] = 6, } diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index 8a7e56d1b0..1e05f7425e 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -7402,9 +7402,75 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_2321178454", + ["id"] = "enchant.stat_2321178454", ["text"] = "#% chance to Pierce an Enemy", - ["type"] = "fractured", + ["type"] = "enchant", + }, + }, + ["1087_AllDamage"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "enchant", + }, + }, + ["1227_LocalChaosDamage"] = { + ["1HMace"] = { + ["max"] = 14.5, + ["min"] = 9.5, + }, + ["1HWeapon"] = { + ["max"] = 14.5, + ["min"] = 9.5, + }, + ["2HMace"] = { + ["max"] = 20.5, + ["min"] = 13.5, + }, + ["2HWeapon"] = { + ["max"] = 20.5, + ["min"] = 9.5, + }, + ["Bow"] = { + ["max"] = 14.5, + ["min"] = 9.5, + }, + ["Crossbow"] = { + ["max"] = 20.5, + ["min"] = 13.5, + }, + ["Flail"] = { + ["max"] = 14.5, + ["min"] = 9.5, + }, + ["Quarterstaff"] = { + ["max"] = 20.5, + ["min"] = 13.5, + }, + ["Spear"] = { + ["max"] = 14.5, + ["min"] = 9.5, + }, + ["Talisman"] = { + ["max"] = 20.5, + ["min"] = 13.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "enchant", }, }, ["1402_GlobalIncreasePhysicalSpellSkillGemLevel"] = { @@ -7427,9 +7493,77 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_1600707273", + ["id"] = "enchant.stat_1600707273", ["text"] = "# to Level of all Physical Spell Skills", - ["type"] = "fractured", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["1445_GainLifeOnBlock"] = { + ["Shield"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_762600725", + ["text"] = "# Life gained when you Block", + ["type"] = "enchant", + }, + }, + ["1446_GainManaOnBlock"] = { + ["Shield"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "enchant", + }, + }, + ["1486_MaximumEnduranceCharges"] = { + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1515657623", + ["text"] = "# to Maximum Endurance Charges", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["1491_MaximumFrenzyCharges"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4078695", + ["text"] = "# to Maximum Frenzy Charges", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["1496_MaximumPowerCharges"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_227523295", + ["text"] = "# to Maximum Power Charges", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -7441,9 +7575,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_280731498", + ["id"] = "enchant.stat_280731498", ["text"] = "#% increased Area of Effect", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["1569_SkillEffectDuration"] = { @@ -7454,9 +7588,95 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_3377888098", + ["id"] = "enchant.stat_3377888098", ["text"] = "#% increased Skill Effect Duration", - ["type"] = "fractured", + ["type"] = "enchant", + }, + }, + ["1599_DamageGainedAsChaos"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["type"] = "enchant", + }, + }, + ["1617_LifeRegenerationRatePercentage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", + ["type"] = "enchant", + }, + }, + ["1659_MaximumBlockChance"] = { + ["Shield"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_480796730", + ["text"] = "#% to maximum Block chance", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["1937_BlindingHit"] = { + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2301191210", + ["text"] = "#% chance to Blind Enemies on hit", + ["type"] = "enchant", + }, + }, + ["2153_LocalChanceToBleed"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Flail"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "enchant", }, }, ["2258_CurseEffectiveness"] = { @@ -7467,9 +7687,30 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_2353576063", + ["id"] = "enchant.stat_2353576063", ["text"] = "#% increased Curse Magnitudes", - ["type"] = "fractured", + ["type"] = "enchant", + }, + }, + ["2599_ImmunityToBlind"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1436284579", + ["text"] = "Cannot be Blinded", + ["type"] = "enchant", }, }, ["2613_FireResistancePenetration"] = { @@ -7480,9 +7721,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_2653955271", + ["id"] = "enchant.stat_2653955271", ["text"] = "Damage Penetrates #% Fire Resistance", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["2614_ColdResistancePenetration"] = { @@ -7493,9 +7734,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_3417711605", + ["id"] = "enchant.stat_3417711605", ["text"] = "Damage Penetrates #% Cold Resistance", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["2615_LightningResistancePenetration"] = { @@ -7506,9 +7747,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_818778753", + ["id"] = "enchant.stat_818778753", ["text"] = "Damage Penetrates #% Lightning Resistance", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["2875_WarcrySpeed"] = { @@ -7519,9 +7760,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_1316278494", + ["id"] = "enchant.stat_1316278494", ["text"] = "#% increased Warcry Speed", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["2878_IncreasedStunThreshold"] = { @@ -7532,9 +7773,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_680068163", + ["id"] = "enchant.stat_680068163", ["text"] = "#% increased Stun Threshold", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["2879_FreezeThreshold"] = { @@ -7545,10 +7786,24 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_3780644166", + ["id"] = "enchant.stat_3780644166", ["text"] = "#% increased Freeze Threshold", - ["type"] = "fractured", + ["type"] = "enchant", + }, + }, + ["4166_GlobalSkillGemLevel"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4283407333", + ["text"] = "# to Level of all Skills", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, ["4283_ArmourBreak"] = { ["Gloves"] = { @@ -7558,62 +7813,272 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_1776411443", - ["text"] = "Break #% increased Armour", - ["type"] = "fractured", + ["id"] = "enchant.stat_1776411443", + ["text"] = "Break #% increased Armour", + ["type"] = "enchant", + }, + }, + ["4509_GlobalCooldownRecovery"] = { + ["Helmet"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "enchant", + }, + }, + ["4552_SlowEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3650992555", + ["text"] = "Debuffs you inflict have #% increased Slow Magnitude", + ["type"] = "enchant", + }, + }, + ["4608_SlowPotency"] = { + ["Boots"] = { + ["max"] = -20, + ["min"] = -30, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "enchant", + }, + }, + ["4866_CorruptedBloodImmunity"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", + ["type"] = "enchant", + }, + }, + ["5918_EnergyGeneration"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", + ["type"] = "enchant", + }, + }, + ["6448_CharmChargeGeneration"] = { + ["Amulet"] = { + ["max"] = 0.17, + ["min"] = 0.08, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_185580205", + ["text"] = "Charms gain # charges per Second", + ["type"] = "enchant", + }, + }, + ["6451_LifeFlaskChargeGeneration"] = { + ["Amulet"] = { + ["max"] = 0.17, + ["min"] = 0.08, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1102738251", + ["text"] = "Life Flasks gain # charges per Second", + ["type"] = "enchant", + }, + }, + ["6452_ManaFlaskChargeGeneration"] = { + ["Amulet"] = { + ["max"] = 0.17, + ["min"] = 0.08, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2200293569", + ["text"] = "Mana Flasks gain # charges per Second", + ["type"] = "enchant", + }, + }, + ["6476_GoldFoundIncrease"] = { + ["Gloves"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "enchant", + }, + }, + ["6752_ImmuneToMaim"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3429557654", + ["text"] = "Immune to Maim", + ["type"] = "enchant", + }, + }, + ["7131_LocalWeaponRangeIncrease"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_548198834", + ["text"] = "#% increased Melee Strike Range with this weapon", + ["type"] = "enchant", + }, + }, + ["7239_LocalRageOnHit"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Spear"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1725749947", + ["text"] = "Grants # Rage on Hit", + ["type"] = "enchant", }, }, - ["4509_GlobalCooldownRecovery"] = { - ["Helmet"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["specialCaseData"] = { + ["7320_LocalChanceToMaim"] = { + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "fractured.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", - ["type"] = "fractured", + ["Bow"] = { + ["max"] = 15, + ["min"] = 10, }, - }, - ["4608_SlowPotency"] = { - ["Boots"] = { - ["max"] = -20, - ["min"] = -30, + ["Crossbow"] = { + ["max"] = 15, + ["min"] = 10, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", - ["type"] = "fractured", + ["id"] = "enchant.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", + ["type"] = "enchant", }, }, - ["5918_EnergyGeneration"] = { - ["Helmet"] = { - ["max"] = 30, - ["min"] = 20, + ["7334_LocalChanceToPoisonOnHit"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "fractured.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", - ["type"] = "fractured", + ["Quarterstaff"] = { + ["max"] = 15, + ["min"] = 10, }, - }, - ["6476_GoldFoundIncrease"] = { - ["Gloves"] = { - ["max"] = 10, - ["min"] = 5, + ["Spear"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", - ["type"] = "fractured", + ["id"] = "enchant.stat_3885634897", + ["text"] = "#% chance to Poison on Hit with this weapon", + ["type"] = "enchant", }, }, ["821_LocalPhysicalDamagePercent"] = { @@ -7660,9 +8125,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_1509134228", + ["id"] = "enchant.stat_1509134228", ["text"] = "#% increased Physical Damage", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["823_LocalFireDamage"] = { @@ -7709,9 +8174,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_709508406", + ["id"] = "enchant.stat_709508406", ["text"] = "Adds # to # Fire Damage", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["824_LocalColdDamage"] = { @@ -7758,9 +8223,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_1037193709", + ["id"] = "enchant.stat_1037193709", ["text"] = "Adds # to # Cold Damage", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["825_LocalLightningDamage"] = { @@ -7807,9 +8272,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_3336890334", + ["id"] = "enchant.stat_3336890334", ["text"] = "Adds # to # Lightning Damage", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["827_MovementVelocity"] = { @@ -7820,22 +8285,26 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_2250533757", + ["id"] = "enchant.stat_2250533757", ["text"] = "#% increased Movement Speed", - ["type"] = "fractured", + ["type"] = "enchant", }, }, - ["830_LocalIncreasedBlockPercentage"] = { - ["Shield"] = { - ["max"] = 15, - ["min"] = 10, + ["828_IncreasedSkillSpeed"] = { + ["Quiver"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_4147897060", - ["text"] = "#% increased Block chance", - ["type"] = "fractured", + ["id"] = "enchant.stat_970213192", + ["text"] = "#% increased Skill Speed", + ["type"] = "enchant", }, }, ["834_LocalPhysicalDamageReductionRatingPercent"] = { @@ -7862,9 +8331,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_2866361420", + ["id"] = "enchant.stat_2866361420", ["text"] = "#% increased Armour", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["835_LocalEvasionRatingIncreasePercent"] = { @@ -7891,9 +8360,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_2106365538", + ["id"] = "enchant.stat_2106365538", ["text"] = "#% increased Evasion Rating", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["836_LocalEnergyShieldPercent"] = { @@ -7920,9 +8389,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_4015621042", + ["id"] = "enchant.stat_4015621042", ["text"] = "#% increased Energy Shield", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["837_LocalArmourAndEvasion"] = { @@ -7949,9 +8418,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_2451402625", + ["id"] = "enchant.stat_2451402625", ["text"] = "#% increased Armour and Evasion", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["838_LocalArmourAndEnergyShield"] = { @@ -7978,9 +8447,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_3321629045", + ["id"] = "enchant.stat_3321629045", ["text"] = "#% increased Armour and Energy Shield", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["839_LocalEvasionAndEnergyShield"] = { @@ -8003,9 +8472,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_1999113824", + ["id"] = "enchant.stat_1999113824", ["text"] = "#% increased Evasion and Energy Shield", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["842_LocalIncreasedSpiritPercent"] = { @@ -8020,9 +8489,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_3984865854", + ["id"] = "enchant.stat_3984865854", ["text"] = "#% increased Spirit", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["853_WeaponSpellDamage"] = { @@ -8049,9 +8518,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_2974417149", + ["id"] = "enchant.stat_2974417149", ["text"] = "#% increased Spell Damage", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["859_IncreasedWeaponElementalDamagePercent"] = { @@ -8098,9 +8567,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_387439868", + ["id"] = "enchant.stat_387439868", ["text"] = "#% increased Elemental Damage with Attacks", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["862_IncreasedAccuracy"] = { @@ -8115,9 +8584,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_803737631", + ["id"] = "enchant.stat_803737631", ["text"] = "# to Accuracy Rating", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -8129,9 +8598,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_2866361420", + ["id"] = "enchant.stat_2866361420", ["text"] = "#% increased Armour", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["866_GlobalEvasionRatingPercent"] = { @@ -8142,9 +8611,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_2106365538", + ["id"] = "enchant.stat_2106365538", ["text"] = "#% increased Evasion Rating", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["868_GlobalEnergyShieldPercent"] = { @@ -8155,9 +8624,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_2482852589", + ["id"] = "enchant.stat_2482852589", ["text"] = "#% increased maximum Energy Shield", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["869_IncreasedLife"] = { @@ -8172,9 +8641,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_3299347043", + ["id"] = "enchant.stat_3299347043", ["text"] = "# to maximum Life", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -8194,9 +8663,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_1050105434", + ["id"] = "enchant.stat_1050105434", ["text"] = "# to maximum Mana", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -8208,9 +8677,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_3981240776", + ["id"] = "enchant.stat_3981240776", ["text"] = "# to Spirit", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -8226,9 +8695,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_1798257884", + ["id"] = "enchant.stat_1798257884", ["text"] = "Allies in your Presence deal #% increased Damage", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["892_AlliesInPresenceCriticalStrikeMultiplier"] = { @@ -8243,9 +8712,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_3057012405", + ["id"] = "enchant.stat_3057012405", ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["893_AlliesInPresenceIncreasedAttackSpeed"] = { @@ -8260,9 +8729,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_1998951374", + ["id"] = "enchant.stat_1998951374", ["text"] = "Allies in your Presence have #% increased Attack Speed", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["894_AlliesInPresenceIncreasedCastSpeed"] = { @@ -8277,9 +8746,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_289128254", + ["id"] = "enchant.stat_289128254", ["text"] = "Allies in your Presence have #% increased Cast Speed", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["8959_ChainFromTerrain"] = { @@ -8290,9 +8759,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_4081947835", + ["id"] = "enchant.stat_4081947835", ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["916_ItemFoundRarityIncrease"] = { @@ -8307,9 +8776,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_3917489142", + ["id"] = "enchant.stat_3917489142", ["text"] = "#% increased Rarity of Items found", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["918_LocalCriticalStrikeMultiplier"] = { @@ -8356,61 +8825,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_2694482655", + ["id"] = "enchant.stat_2694482655", ["text"] = "#% to Critical Damage Bonus", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["919_LocalIncreasedAttackSpeed"] = { - ["1HMace"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["2HMace"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["2HWeapon"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["Bow"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["Crossbow"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["Flail"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["Quarterstaff"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["Spear"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["Talisman"] = { - ["max"] = 8, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "fractured.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "fractured", - }, - }, ["921_LocalAttributeRequirements"] = { ["1HMace"] = { ["max"] = -10, @@ -8492,9 +8912,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_3639275092", + ["id"] = "enchant.stat_3639275092", ["text"] = "#% increased Attribute Requirements", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["924_GlobalIncreaseFireSpellSkillGemLevel"] = { @@ -8517,9 +8937,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_591105508", + ["id"] = "enchant.stat_591105508", ["text"] = "# to Level of all Fire Spell Skills", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -8543,9 +8963,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_2254480358", + ["id"] = "enchant.stat_2254480358", ["text"] = "# to Level of all Cold Spell Skills", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -8569,9 +8989,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_1545858329", + ["id"] = "enchant.stat_1545858329", ["text"] = "# to Level of all Lightning Spell Skills", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -8595,9 +9015,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_4226189338", + ["id"] = "enchant.stat_4226189338", ["text"] = "# to Level of all Chaos Spell Skills", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -8609,9 +9029,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_9187492", + ["id"] = "enchant.stat_9187492", ["text"] = "# to Level of all Melee Skills", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -8623,9 +9043,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_2162097452", + ["id"] = "enchant.stat_2162097452", ["text"] = "# to Level of all Minion Skills", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -8649,9 +9069,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_737908626", + ["id"] = "enchant.stat_737908626", ["text"] = "#% increased Critical Hit Chance for Spells", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["937_CriticalStrikeMultiplier"] = { @@ -8666,9 +9086,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_3556824919", + ["id"] = "enchant.stat_3556824919", ["text"] = "#% increased Critical Damage Bonus", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["942_IncreasedCastSpeed"] = { @@ -8691,9 +9111,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_2891184298", + ["id"] = "enchant.stat_2891184298", ["text"] = "#% increased Cast Speed", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["943_AdditionalAmmo"] = { @@ -8708,9 +9128,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_1967051901", + ["id"] = "enchant.stat_1967051901", ["text"] = "Loads an additional bolt", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["943_Strength"] = { @@ -8729,9 +9149,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_4080418644", + ["id"] = "enchant.stat_4080418644", ["text"] = "# to Strength", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -8751,9 +9171,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_3261801346", + ["id"] = "enchant.stat_3261801346", ["text"] = "# to Dexterity", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -8770,9 +9190,9 @@ return { ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { - ["id"] = "fractured.stat_3885405204", + ["id"] = "enchant.stat_3885405204", ["text"] = "Bow Attacks fire # additional Arrows", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["945_Intelligence"] = { @@ -8791,9 +9211,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_328541901", + ["id"] = "enchant.stat_328541901", ["text"] = "# to Intelligence", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -8813,9 +9233,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_4080418644", + ["id"] = "enchant.stat_4080418644", ["text"] = "# to Strength", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -8835,9 +9255,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_3261801346", + ["id"] = "enchant.stat_3261801346", ["text"] = "# to Dexterity", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -8857,9 +9277,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_328541901", + ["id"] = "enchant.stat_328541901", ["text"] = "# to Intelligence", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -8871,9 +9291,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_3771516363", + ["id"] = "enchant.stat_3771516363", ["text"] = "#% additional Physical Damage Reduction", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["952_MaximumElementalResistance"] = { @@ -8888,9 +9308,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_1978899297", + ["id"] = "enchant.stat_1978899297", ["text"] = "#% to all Maximum Elemental Resistances", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -8902,9 +9322,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_4095671657", + ["id"] = "enchant.stat_4095671657", ["text"] = "#% to Maximum Fire Resistance", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -8924,9 +9344,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_3372524247", + ["id"] = "enchant.stat_3372524247", ["text"] = "#% to Fire Resistance", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -8938,9 +9358,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_3676141501", + ["id"] = "enchant.stat_3676141501", ["text"] = "#% to Maximum Cold Resistance", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -8960,9 +9380,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_4220027924", + ["id"] = "enchant.stat_4220027924", ["text"] = "#% to Cold Resistance", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -8974,9 +9394,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_1011760251", + ["id"] = "enchant.stat_1011760251", ["text"] = "#% to Maximum Lightning Resistance", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -8996,9 +9416,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_1671376347", + ["id"] = "enchant.stat_1671376347", ["text"] = "#% to Lightning Resistance", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -9014,9 +9434,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_2901986750", + ["id"] = "enchant.stat_2901986750", ["text"] = "#% to all Elemental Resistances", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -9036,9 +9456,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_2923486259", + ["id"] = "enchant.stat_2923486259", ["text"] = "#% to Chaos Resistance", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -9054,9 +9474,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_3372524247", + ["id"] = "enchant.stat_3372524247", ["text"] = "#% to Fire Resistance", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -9072,9 +9492,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_4220027924", + ["id"] = "enchant.stat_4220027924", ["text"] = "#% to Cold Resistance", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -9090,9 +9510,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_1671376347", + ["id"] = "enchant.stat_1671376347", ["text"] = "#% to Lightning Resistance", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -9108,9 +9528,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_2923486259", + ["id"] = "enchant.stat_2923486259", ["text"] = "#% to Chaos Resistance", - ["type"] = "fractured", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, @@ -9126,9 +9546,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_1315743832", + ["id"] = "enchant.stat_1315743832", ["text"] = "#% increased Thorns damage", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["967_EnergyShieldDelay"] = { @@ -9139,9 +9559,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_1782086450", + ["id"] = "enchant.stat_1782086450", ["text"] = "#% faster start of Energy Shield Recharge", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["969_LifeRegenerationRate"] = { @@ -9156,9 +9576,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_44972811", + ["id"] = "enchant.stat_44972811", ["text"] = "#% increased Life Regeneration rate", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["970_DamageTakenGainedAsLife"] = { @@ -9169,9 +9589,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_1444556985", + ["id"] = "enchant.stat_1444556985", ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["971_LifeLeechPermyriad"] = { @@ -9182,9 +9602,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_2557965901", + ["id"] = "enchant.stat_2557965901", ["text"] = "Leech #% of Physical Attack Damage as Life", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["975_LifeGainedFromEnemyDeath"] = { @@ -9211,9 +9631,30 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_3695891184", + ["id"] = "enchant.stat_3695891184", ["text"] = "Gain # Life per enemy killed", - ["type"] = "fractured", + ["type"] = "enchant", + }, + }, + ["9764_YouCannotBeHindered"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_721014846", + ["text"] = "You cannot be Hindered", + ["type"] = "enchant", }, }, ["976_ManaRegeneration"] = { @@ -9228,9 +9669,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_789117908", + ["id"] = "enchant.stat_789117908", ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["977_PercentDamageGoesToMana"] = { @@ -9241,9 +9682,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_472520716", + ["id"] = "enchant.stat_472520716", ["text"] = "#% of Damage taken Recouped as Mana", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["979_ManaLeechPermyriad"] = { @@ -9254,9 +9695,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_707457662", + ["id"] = "enchant.stat_707457662", ["text"] = "Leech #% of Physical Attack Damage as Mana", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["980_ManaGainedFromEnemyDeath"] = { @@ -9283,9 +9724,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_1368271171", + ["id"] = "enchant.stat_1368271171", ["text"] = "Gain # Mana per enemy killed", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["985_LocalStunDamageIncrease"] = { @@ -9320,9 +9761,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_791928121", + ["id"] = "enchant.stat_791928121", ["text"] = "Causes #% increased Stun Buildup", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["988_IgniteChanceIncrease"] = { @@ -9345,18 +9786,18 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_2968503605", + ["id"] = "enchant.stat_2968503605", ["text"] = "#% increased Flammability Magnitude", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["9897_WeaponSwapSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_3233599707", + ["id"] = "enchant.stat_3233599707", ["text"] = "#% increased Weapon Swap Speed", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["990_FreezeDamageIncrease"] = { @@ -9379,9 +9820,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_473429811", + ["id"] = "enchant.stat_473429811", ["text"] = "#% increased Freeze Buildup", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["992_ShockChanceIncrease"] = { @@ -9404,9 +9845,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_293638271", + ["id"] = "enchant.stat_293638271", ["text"] = "#% increased chance to Shock", - ["type"] = "fractured", + ["type"] = "enchant", }, }, ["998_PresenceRadius"] = { @@ -9417,9 +9858,9 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "fractured.stat_101878827", + ["id"] = "enchant.stat_101878827", ["text"] = "#% increased Presence Area of Effect", - ["type"] = "fractured", + ["type"] = "enchant", }, }, }, @@ -19833,7 +20274,7 @@ return { }, ["Rune"] = { ["1002"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 30, ["min"] = 30, }, @@ -20601,7 +21042,7 @@ return { ["usePositiveSign"] = true, }, ["2649"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 20, ["min"] = 20, }, @@ -21033,7 +21474,7 @@ return { }, }, ["4387"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 40, ["min"] = 40, }, @@ -21580,7 +22021,7 @@ return { }, }, ["5440"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 25, ["min"] = 25, }, @@ -21646,7 +22087,7 @@ return { }, }, ["5567"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 40, ["min"] = 40, }, @@ -21731,7 +22172,7 @@ return { }, }, ["5981"] = { - ["Gloves"] = { + ["Chest"] = { ["max"] = 10, ["min"] = 10, }, @@ -22046,7 +22487,7 @@ return { }, }, ["7037"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 25, ["min"] = 25, }, @@ -22746,7 +23187,7 @@ return { }, }, ["842"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 10, ["min"] = 10, }, @@ -22789,7 +23230,7 @@ return { }, }, ["8471"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 30, ["min"] = 30, }, @@ -22802,7 +23243,7 @@ return { }, }, ["8473"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 40, ["min"] = 40, }, @@ -23442,7 +23883,7 @@ return { }, }, ["881"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 30, ["min"] = 30, }, @@ -23455,7 +23896,7 @@ return { }, }, ["882"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 15, ["min"] = 15, }, @@ -23468,7 +23909,7 @@ return { }, }, ["885"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 20.5, ["min"] = 20.5, }, @@ -23494,7 +23935,7 @@ return { }, }, ["891"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 14, ["min"] = 14, }, @@ -23507,7 +23948,7 @@ return { }, }, ["892"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 14, ["min"] = 14, }, @@ -23520,7 +23961,7 @@ return { }, }, ["893"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 8, ["min"] = 8, }, @@ -23533,7 +23974,7 @@ return { }, }, ["894"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 8, ["min"] = 8, }, @@ -23546,7 +23987,7 @@ return { }, }, ["895"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 8, ["min"] = 8, }, @@ -23560,7 +24001,7 @@ return { ["usePositiveSign"] = true, }, ["896"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 8, ["min"] = 8, }, @@ -24056,7 +24497,7 @@ return { ["usePositiveSign"] = true, }, ["9317"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 10, ["min"] = 10, }, @@ -24466,10 +24907,6 @@ return { ["max"] = 20, ["min"] = 20, }, - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -25473,7 +25910,7 @@ return { }, }, ["9922"] = { - ["Sceptre"] = { + ["1HWeapon"] = { ["max"] = 20, ["min"] = 20, }, From d005f3e3f0474c207429bcb33f8c05073c8900df Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Sun, 19 Apr 2026 12:44:43 +0300 Subject: [PATCH 03/42] Fix radius jewel weight generation --- src/Classes/TradeQueryGenerator.lua | 35 +- src/Data/QueryMods.lua | 18897 ++++---------------------- 2 files changed, 2936 insertions(+), 15996 deletions(-) diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index 79350c56ae..e5846a8896 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -247,6 +247,10 @@ function TradeQueryGeneratorClass:ProcessMod(mod, tradeQueryStatsParsed, itemCat local statOrder = modLine:find("Nearby Enemies have %-") ~= nil and mod.statOrder[index + 1] or mod.statOrder[index] -- hack to get minus res mods associated with the correct statOrder local uniqueIndex = mod.group ~= "" and tostring(statOrder).."_"..mod.group or tostring(statOrder) + -- ensure that regular jewel and radius jewel mods don't get the same index + if mod.nodeType then + uniqueIndex = uniqueIndex.."Radius" + end if self.modData[modType][uniqueIndex] == nil then if tradeMod == nil then @@ -627,6 +631,13 @@ function TradeQueryGeneratorClass:StartQuery(slot, options) -- Create a temp item for the slot with no mods local itemRawStr = "Rarity: RARE\nStat Tester\n" .. testItemType + if options.jewelType == "Radius" then + itemRawStr = [[Rarity: RARE +Stat Tester +Time-Lost Sapphire +Radius: Small +Implicits: 0]] + end local testItem = new("Item", itemRawStr) -- Calculate base output with a blank item @@ -665,7 +676,25 @@ function TradeQueryGeneratorClass:ExecuteQuery() self:GeneratePassiveNodeWeights(self.modData.AllocatesXEnchant) return end - self:GenerateModWeights(self.modData["Explicit"]) + + -- the trade site has no filters for jewel categories, so we can remove the + -- other mods to filter the category. this should also free up some filter slots. + if self.calcContext.options.jewelType == "Radius" then + local radiusMods = {} + -- local baseMods = {} + for k, v in pairs(self.modData["Explicit"]) do + if v.RadiusJewel then + radiusMods[k] = v + end + end + + self:GenerateModWeights(radiusMods) + else + -- radius mods are not filtered out here, but they valued at zero and + -- ignored as the base item won't have a "radius:" line + self:GenerateModWeights(self.modData["Explicit"]) + end + self:GenerateModWeights(self.modData["Implicit"]) if self.calcContext.options.includeCorrupted then self:GenerateModWeights(self.modData["Corrupted"]) @@ -910,7 +939,7 @@ Remove: anoints are completely ignored, and removed from items.]] if isJewelSlot then - controls.jewelType = new("DropDownControl", {"TOPLEFT",lastItemAnchor,"BOTTOMLEFT"}, {0, 5, 100, 18}, { "Any", "Base", "Radius" }, function(index, value) end) -- this does nothing atm + controls.jewelType = new("DropDownControl", {"TOPLEFT",lastItemAnchor,"BOTTOMLEFT"}, {0, 5, 100, 18}, { "Base", "Radius" }, function(index, value) end) controls.jewelType.selIndex = self.lastJewelType or 1 controls.jewelTypeLabel = new("LabelControl", {"RIGHT",controls.jewelType,"LEFT"}, {-5, 0, 0, 16}, "Jewel Type:") updateLastAnchor(controls.jewelType) @@ -991,7 +1020,7 @@ Remove: anoints are completely ignored, and removed from items.]] end if controls.jewelType then self.lastJewelType = controls.jewelType.selIndex - options.jewelType = controls.jewelType.list[controls.jewelType.selIndex] + options.jewelType = controls.jewelType:GetSelValue() end if controls.maxPrice.buf then options.maxPrice = tonumber(controls.maxPrice.buf) diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index 1e05f7425e..aebc665985 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -7394,2709 +7394,2366 @@ return { }, }, ["Corrupted"] = { + }, + ["Enchant"] = { + }, + ["Explicit"] = { ["1001_ChanceToPierce"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2321178454", + ["id"] = "explicit.stat_2321178454", ["text"] = "#% chance to Pierce an Enemy", - ["type"] = "enchant", + ["type"] = "explicit", }, }, - ["1087_AllDamage"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, + ["1001_ChanceToPierceRadius"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2154246560", - ["text"] = "#% increased Damage", - ["type"] = "enchant", + ["id"] = "explicit.stat_1800303440", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", + ["type"] = "explicit", }, }, - ["1227_LocalChaosDamage"] = { - ["1HMace"] = { - ["max"] = 14.5, - ["min"] = 9.5, - }, - ["1HWeapon"] = { - ["max"] = 14.5, - ["min"] = 9.5, - }, - ["2HMace"] = { - ["max"] = 20.5, - ["min"] = 13.5, - }, - ["2HWeapon"] = { - ["max"] = 20.5, - ["min"] = 9.5, - }, - ["Bow"] = { - ["max"] = 14.5, - ["min"] = 9.5, + ["1002_PresenceRadius"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["Crossbow"] = { - ["max"] = 20.5, - ["min"] = 13.5, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["Flail"] = { - ["max"] = 14.5, - ["min"] = 9.5, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 20.5, - ["min"] = 13.5, + ["tradeMod"] = { + ["id"] = "explicit.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "explicit", }, - ["Spear"] = { - ["max"] = 14.5, - ["min"] = 9.5, + }, + ["1002_PresenceRadiusRadius"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 8, }, - ["Talisman"] = { - ["max"] = 20.5, - ["min"] = 13.5, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", - ["type"] = "enchant", + ["id"] = "explicit.stat_4032352472", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", + ["type"] = "explicit", }, }, - ["1402_GlobalIncreasePhysicalSpellSkillGemLevel"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, + ["1009_IgniteEffect"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1600707273", - ["text"] = "# to Level of all Physical Spell Skills", - ["type"] = "enchant", + ["id"] = "explicit.stat_3791899485", + ["text"] = "#% increased Ignite Magnitude", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1445_GainLifeOnBlock"] = { - ["Shield"] = { - ["max"] = 25, - ["min"] = 20, + ["1009_IgniteEffectRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_762600725", - ["text"] = "# Life gained when you Block", - ["type"] = "enchant", + ["id"] = "explicit.stat_253641217", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", + ["type"] = "explicit", }, }, - ["1446_GainManaOnBlock"] = { - ["Shield"] = { - ["max"] = 15, - ["min"] = 10, + ["1064_IncreasedBlockChance"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2122183138", - ["text"] = "# Mana gained when you Block", - ["type"] = "enchant", + ["id"] = "explicit.stat_4147897060", + ["text"] = "#% increased Block chance", + ["type"] = "explicit", }, }, - ["1486_MaximumEnduranceCharges"] = { - ["Belt"] = { - ["max"] = 1, + ["1064_IncreasedBlockChanceRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 3, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1515657623", - ["text"] = "# to Maximum Endurance Charges", - ["type"] = "enchant", + ["id"] = "explicit.stat_3821543413", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1491_MaximumFrenzyCharges"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, + ["1089_TotemDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4078695", - ["text"] = "# to Maximum Frenzy Charges", - ["type"] = "enchant", + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1496_MaximumPowerCharges"] = { - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, + ["1089_TotemDamageForJewelRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_227523295", - ["text"] = "# to Maximum Power Charges", - ["type"] = "enchant", + ["id"] = "explicit.stat_2108821127", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1554_AreaOfEffect"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["1093_AttackDamage"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "enchant", + ["id"] = "explicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", + ["type"] = "explicit", }, }, - ["1569_SkillEffectDuration"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["1093_AttackDamageRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "enchant", + ["id"] = "explicit.stat_1426522529", + ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", + ["type"] = "explicit", }, }, - ["1599_DamageGainedAsChaos"] = { - ["Helmet"] = { - ["max"] = 8, + ["1122_PhysicalDamagePercent"] = { + ["AnyJewel"] = { + ["max"] = 15, ["min"] = 5, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3398787959", - ["text"] = "Gain #% of Damage as Extra Chaos Damage", - ["type"] = "enchant", + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - }, - ["1617_LifeRegenerationRatePercentage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_836936635", - ["text"] = "Regenerate #% of maximum Life per second", - ["type"] = "enchant", + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", + ["type"] = "explicit", }, }, - ["1659_MaximumBlockChance"] = { - ["Shield"] = { - ["max"] = 3, - ["min"] = 3, + ["1122_PhysicalDamagePercentRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_480796730", - ["text"] = "#% to maximum Block chance", - ["type"] = "enchant", + ["id"] = "explicit.stat_1417267954", + ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1937_BlindingHit"] = { - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 10, + ["1124_MeleeDamage"] = { + ["AnyJewel"] = { + ["max"] = 15, ["min"] = 5, }, - ["Crossbow"] = { - ["max"] = 10, + ["BaseJewel"] = { + ["max"] = 15, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2301191210", - ["text"] = "#% chance to Blind Enemies on hit", - ["type"] = "enchant", + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", + ["type"] = "explicit", }, }, - ["2153_LocalChanceToBleed"] = { - ["1HMace"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["2HMace"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, + ["1124_MeleeDamageRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Flail"] = { - ["max"] = 15, - ["min"] = 10, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "enchant", + ["id"] = "explicit.stat_1337740333", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", + ["type"] = "explicit", }, }, - ["2258_CurseEffectiveness"] = { - ["Helmet"] = { - ["max"] = 10, - ["min"] = 5, + ["1175_IncreasedStaffDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", - ["type"] = "enchant", + ["id"] = "explicit.stat_4045894391", + ["text"] = "#% increased Damage with Quarterstaves", + ["type"] = "explicit", }, }, - ["2599_ImmunityToBlind"] = { + ["1175_IncreasedStaffDamageForJewelRadius"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1436284579", - ["text"] = "Cannot be Blinded", - ["type"] = "enchant", + ["id"] = "explicit.stat_821948283", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", + ["type"] = "explicit", }, }, - ["2613_FireResistancePenetration"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 10, + ["1186_IncreasedMaceDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", - ["type"] = "enchant", + ["id"] = "explicit.stat_1181419800", + ["text"] = "#% increased Damage with Maces", + ["type"] = "explicit", }, }, - ["2614_ColdResistancePenetration"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", - ["type"] = "enchant", + ["1186_IncreasedMaceDamageForJewelRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - }, - ["2615_LightningResistancePenetration"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 10, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", - ["type"] = "enchant", + ["id"] = "explicit.stat_1852184471", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", + ["type"] = "explicit", }, }, - ["2875_WarcrySpeed"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["1190_IncreasedBowDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1316278494", - ["text"] = "#% increased Warcry Speed", - ["type"] = "enchant", + ["id"] = "explicit.stat_4188894176", + ["text"] = "#% increased Damage with Bows", + ["type"] = "explicit", }, }, - ["2878_IncreasedStunThreshold"] = { - ["Boots"] = { - ["max"] = 30, - ["min"] = 20, + ["1190_IncreasedBowDamageForJewelRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_680068163", - ["text"] = "#% increased Stun Threshold", - ["type"] = "enchant", + ["id"] = "explicit.stat_945774314", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", + ["type"] = "explicit", }, }, - ["2879_FreezeThreshold"] = { - ["Boots"] = { - ["max"] = 30, - ["min"] = 20, + ["1204_SpearDamage"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3780644166", - ["text"] = "#% increased Freeze Threshold", - ["type"] = "enchant", + ["id"] = "explicit.stat_2696027455", + ["text"] = "#% increased Damage with Spears", + ["type"] = "explicit", }, }, - ["4166_GlobalSkillGemLevel"] = { - ["Amulet"] = { - ["max"] = 1, + ["1204_SpearDamageRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4283407333", - ["text"] = "# to Level of all Skills", - ["type"] = "enchant", + ["id"] = "explicit.stat_2809428780", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["4283_ArmourBreak"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 10, + ["1256_StaffAttackSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1776411443", - ["text"] = "Break #% increased Armour", - ["type"] = "enchant", + ["id"] = "explicit.stat_3283482523", + ["text"] = "#% increased Attack Speed with Quarterstaves", + ["type"] = "explicit", }, }, - ["4509_GlobalCooldownRecovery"] = { - ["Helmet"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["specialCaseData"] = { + ["1256_StaffAttackSpeedForJewelRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", - ["type"] = "enchant", + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - }, - ["4552_SlowEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3650992555", - ["text"] = "Debuffs you inflict have #% increased Slow Magnitude", - ["type"] = "enchant", + ["id"] = "explicit.stat_111835965", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", + ["type"] = "explicit", }, }, - ["4608_SlowPotency"] = { - ["Boots"] = { - ["max"] = -20, - ["min"] = -30, + ["1260_BowAttackSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", - ["type"] = "enchant", + ["id"] = "explicit.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", + ["type"] = "explicit", }, }, - ["4866_CorruptedBloodImmunity"] = { + ["1260_BowAttackSpeedForJewelRadius"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1658498488", - ["text"] = "Corrupted Blood cannot be inflicted on you", - ["type"] = "enchant", + ["id"] = "explicit.stat_3641543553", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", + ["type"] = "explicit", }, }, - ["5918_EnergyGeneration"] = { - ["Helmet"] = { - ["max"] = 30, - ["min"] = 20, + ["1263_SpearAttackSpeed"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", - ["type"] = "enchant", + ["id"] = "explicit.stat_1165163804", + ["text"] = "#% increased Attack Speed with Spears", + ["type"] = "explicit", }, }, - ["6448_CharmChargeGeneration"] = { - ["Amulet"] = { - ["max"] = 0.17, - ["min"] = 0.08, + ["1263_SpearAttackSpeedRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_185580205", - ["text"] = "Charms gain # charges per Second", - ["type"] = "enchant", + ["id"] = "explicit.stat_1266413530", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", + ["type"] = "explicit", }, }, - ["6451_LifeFlaskChargeGeneration"] = { - ["Amulet"] = { - ["max"] = 0.17, - ["min"] = 0.08, + ["1268_IncreasedAccuracyPercent"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1102738251", - ["text"] = "Life Flasks gain # charges per Second", - ["type"] = "enchant", + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "explicit", }, }, - ["6452_ManaFlaskChargeGeneration"] = { - ["Amulet"] = { - ["max"] = 0.17, - ["min"] = 0.08, + ["1268_IncreasedAccuracyPercentRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2200293569", - ["text"] = "Mana Flasks gain # charges per Second", - ["type"] = "enchant", + ["id"] = "explicit.stat_533892981", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", + ["type"] = "explicit", }, }, - ["6476_GoldFoundIncrease"] = { - ["Gloves"] = { - ["max"] = 10, + ["1277_BowIncreasedAccuracyRating"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", - ["type"] = "enchant", + ["id"] = "explicit.stat_169946467", + ["text"] = "#% increased Accuracy Rating with Bows", + ["type"] = "explicit", }, }, - ["6752_ImmuneToMaim"] = { + ["1277_BowIncreasedAccuracyRatingRadius"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3429557654", - ["text"] = "Immune to Maim", - ["type"] = "enchant", + ["id"] = "explicit.stat_1285594161", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", + ["type"] = "explicit", }, }, - ["7131_LocalWeaponRangeIncrease"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["1HWeapon"] = { + ["1328_SpearCriticalDamage"] = { + ["AnyJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["2HMace"] = { + ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 10, + ["specialCaseData"] = { }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "explicit.stat_2456523742", + ["text"] = "#% increased Critical Damage Bonus with Spears", + ["type"] = "explicit", }, - ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 10, + }, + ["1328_SpearCriticalDamageRadius"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 10, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_548198834", - ["text"] = "#% increased Melee Strike Range with this weapon", - ["type"] = "enchant", + ["id"] = "explicit.stat_138421180", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", + ["type"] = "explicit", }, }, - ["7239_LocalRageOnHit"] = { - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, + ["1437_MaximumLifeOnKillPercent"] = { + ["AnyJewel"] = { + ["max"] = 2, ["min"] = 1, }, - ["2HMace"] = { - ["max"] = 1, + ["BaseJewel"] = { + ["max"] = 2, ["min"] = 1, }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["specialCaseData"] = { }, - ["Flail"] = { - ["max"] = 1, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "explicit.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", + ["type"] = "explicit", }, - ["Quarterstaff"] = { + }, + ["1437_MaximumLifeOnKillPercentRadius"] = { + ["AnyJewel"] = { ["max"] = 1, ["min"] = 1, }, - ["Spear"] = { + ["RadiusJewel"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1725749947", - ["text"] = "Grants # Rage on Hit", - ["type"] = "enchant", + ["id"] = "explicit.stat_2726713579", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", + ["type"] = "explicit", }, }, - ["7320_LocalChanceToMaim"] = { - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Bow"] = { - ["max"] = 15, - ["min"] = 10, + ["1443_ManaGainedOnKillPercentage"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Crossbow"] = { - ["max"] = 15, - ["min"] = 10, + ["BaseJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2763429652", - ["text"] = "#% chance to Maim on Hit", - ["type"] = "enchant", + ["id"] = "explicit.stat_1030153674", + ["text"] = "Recover #% of maximum Mana on Kill", + ["type"] = "explicit", }, }, - ["7334_LocalChanceToPoisonOnHit"] = { - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 10, + ["1443_ManaGainedOnKillPercentageRadius"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Spear"] = { - ["max"] = 15, - ["min"] = 10, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3885634897", - ["text"] = "#% chance to Poison on Hit with this weapon", - ["type"] = "enchant", + ["id"] = "explicit.stat_525523040", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", + ["type"] = "explicit", }, }, - ["821_LocalPhysicalDamagePercent"] = { - ["1HMace"] = { - ["max"] = 25, - ["min"] = 15, + ["1459_IncreasedTotemLife"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 15, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["2HMace"] = { - ["max"] = 25, - ["min"] = 15, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_686254215", + ["text"] = "#% increased Totem Life", + ["type"] = "explicit", }, - ["Bow"] = { - ["max"] = 25, - ["min"] = 15, + }, + ["1459_IncreasedTotemLifeRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Crossbow"] = { - ["max"] = 25, - ["min"] = 15, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Flail"] = { - ["max"] = 25, - ["min"] = 15, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_442393998", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", + ["type"] = "explicit", }, - ["Spear"] = { + }, + ["1466_BaseCurseDuration"] = { + ["AnyJewel"] = { ["max"] = 25, ["min"] = 15, }, - ["Talisman"] = { + ["BaseJewel"] = { ["max"] = 25, ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "enchant", + ["id"] = "explicit.stat_3824372849", + ["text"] = "#% increased Curse Duration", + ["type"] = "explicit", }, }, - ["823_LocalFireDamage"] = { - ["1HMace"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["1HWeapon"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["2HMace"] = { - ["max"] = 25.5, - ["min"] = 17, - }, - ["2HWeapon"] = { - ["max"] = 25.5, - ["min"] = 12, - }, - ["Bow"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["Crossbow"] = { - ["max"] = 25.5, - ["min"] = 17, - }, - ["Flail"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["Quarterstaff"] = { - ["max"] = 25.5, - ["min"] = 17, - }, - ["Spear"] = { - ["max"] = 18, - ["min"] = 12, + ["1466_BaseCurseDurationRadius"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["Talisman"] = { - ["max"] = 25.5, - ["min"] = 17, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_709508406", - ["text"] = "Adds # to # Fire Damage", - ["type"] = "enchant", + ["id"] = "explicit.stat_1087108135", + ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", + ["type"] = "explicit", }, }, - ["824_LocalColdDamage"] = { - ["1HMace"] = { - ["max"] = 15.5, - ["min"] = 10.5, - }, - ["1HWeapon"] = { - ["max"] = 15.5, - ["min"] = 10.5, - }, - ["2HMace"] = { - ["max"] = 21.5, - ["min"] = 14.5, - }, - ["2HWeapon"] = { - ["max"] = 21.5, - ["min"] = 10.5, - }, - ["Bow"] = { - ["max"] = 15.5, - ["min"] = 10.5, - }, - ["Crossbow"] = { - ["max"] = 21.5, - ["min"] = 14.5, - }, - ["Flail"] = { - ["max"] = 15.5, - ["min"] = 10.5, - }, - ["Quarterstaff"] = { - ["max"] = 21.5, - ["min"] = 14.5, - }, - ["Spear"] = { - ["max"] = 15.5, - ["min"] = 10.5, + ["1539_IncreasedChillDuration"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["Talisman"] = { - ["max"] = 21.5, - ["min"] = 14.5, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", - ["type"] = "enchant", + ["id"] = "explicit.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", + ["type"] = "explicit", }, }, - ["825_LocalLightningDamage"] = { - ["1HMace"] = { - ["max"] = 22.5, - ["min"] = 15, - }, - ["1HWeapon"] = { - ["max"] = 22.5, - ["min"] = 15, - }, - ["2HMace"] = { - ["max"] = 32, - ["min"] = 21, + ["1539_IncreasedChillDurationRadius"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 6, }, - ["2HWeapon"] = { - ["max"] = 32, - ["min"] = 15, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 6, }, - ["Bow"] = { - ["max"] = 22.5, - ["min"] = 15, + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 32, - ["min"] = 21, + ["tradeMod"] = { + ["id"] = "explicit.stat_61644361", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", + ["type"] = "explicit", }, - ["Flail"] = { - ["max"] = 22.5, + }, + ["1540_ShockDuration"] = { + ["AnyJewel"] = { + ["max"] = 25, ["min"] = 15, }, - ["Quarterstaff"] = { - ["max"] = 32, - ["min"] = 21, - }, - ["Spear"] = { - ["max"] = 22.5, + ["BaseJewel"] = { + ["max"] = 25, ["min"] = 15, }, - ["Talisman"] = { - ["max"] = 32, - ["min"] = 21, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", - ["type"] = "enchant", + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration", + ["type"] = "explicit", }, }, - ["827_MovementVelocity"] = { - ["Boots"] = { - ["max"] = 5, - ["min"] = 3, + ["1540_ShockDurationRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "enchant", + ["id"] = "explicit.stat_3513818125", + ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", + ["type"] = "explicit", }, }, - ["828_IncreasedSkillSpeed"] = { - ["Quiver"] = { + ["1557_AreaOfEffect"] = { + ["AnyJewel"] = { ["max"] = 6, ["min"] = 4, }, - ["Ring"] = { + ["BaseJewel"] = { ["max"] = 6, ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_970213192", - ["text"] = "#% increased Skill Speed", - ["type"] = "enchant", + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "explicit", }, }, - ["834_LocalPhysicalDamageReductionRatingPercent"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["1557_AreaOfEffectRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Shield"] = { - ["max"] = 25, - ["min"] = 15, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "enchant", + ["id"] = "explicit.stat_3391917254", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", + ["type"] = "explicit", }, }, - ["835_LocalEvasionRatingIncreasePercent"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, + ["1572_SkillEffectDuration"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "explicit", }, - ["Shield"] = { - ["max"] = 25, - ["min"] = 15, + }, + ["1572_SkillEffectDurationRadius"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "enchant", + ["id"] = "explicit.stat_3113764475", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", + ["type"] = "explicit", }, }, - ["836_LocalEnergyShieldPercent"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, + ["1646_MinionDamage"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Focus"] = { - ["max"] = 25, - ["min"] = 15, + ["specialCaseData"] = { }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + }, + ["1646_MinionDamageRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4015621042", - ["text"] = "#% increased Energy Shield", - ["type"] = "enchant", + ["id"] = "explicit.stat_2954360902", + ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", + ["type"] = "explicit", }, }, - ["837_LocalArmourAndEvasion"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["1651_ElementalDamagePercent"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Shield"] = { - ["max"] = 25, - ["min"] = 15, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", - ["type"] = "enchant", + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", + ["type"] = "explicit", }, }, - ["838_LocalArmourAndEnergyShield"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["1651_ElementalDamagePercentRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Shield"] = { - ["max"] = 25, - ["min"] = 15, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", - ["type"] = "enchant", + ["id"] = "explicit.stat_3222402650", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", + ["type"] = "explicit", }, }, - ["839_LocalEvasionAndEnergyShield"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, + ["1663_ProjectileDamage"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", - ["type"] = "enchant", + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "explicit", }, }, - ["842_LocalIncreasedSpiritPercent"] = { - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 15, + ["1663_ProjectileDamageRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Sceptre"] = { - ["max"] = 25, - ["min"] = 15, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3984865854", - ["text"] = "#% increased Spirit", - ["type"] = "enchant", + ["id"] = "explicit.stat_455816363", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", + ["type"] = "explicit", }, }, - ["853_WeaponSpellDamage"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 40, - }, - ["Focus"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Staff"] = { - ["max"] = 60, - ["min"] = 40, + ["1669_KnockbackDistance"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 20, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "enchant", + ["id"] = "explicit.stat_565784293", + ["text"] = "#% increased Knockback Distance", + ["type"] = "explicit", }, }, - ["859_IncreasedWeaponElementalDamagePercent"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["2HMace"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["Bow"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Crossbow"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["Flail"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["Spear"] = { - ["max"] = 30, - ["min"] = 20, + ["1669_KnockbackDistanceRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - ["Talisman"] = { - ["max"] = 50, - ["min"] = 40, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attacks", - ["type"] = "enchant", + ["id"] = "explicit.stat_2976476845", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", + ["type"] = "explicit", }, }, - ["862_IncreasedAccuracy"] = { - ["Helmet"] = { - ["max"] = 100, - ["min"] = 50, + ["1719_GlobalFlaskLifeRecovery"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Quiver"] = { - ["max"] = 100, - ["min"] = 50, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_803737631", - ["text"] = "# to Accuracy Rating", - ["type"] = "enchant", + ["id"] = "explicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["864_GlobalPhysicalDamageReductionRatingPercent"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 15, + ["1719_GlobalFlaskLifeRecoveryRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "enchant", + ["id"] = "explicit.stat_980177976", + ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", + ["type"] = "explicit", }, }, - ["866_GlobalEvasionRatingPercent"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 15, + ["1720_FlaskManaRecovery"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "enchant", + ["id"] = "explicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "explicit", }, }, - ["868_GlobalEnergyShieldPercent"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 15, + ["1720_FlaskManaRecoveryRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "enchant", + ["id"] = "explicit.stat_3774951878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", + ["type"] = "explicit", }, }, - ["869_IncreasedLife"] = { - ["Belt"] = { - ["max"] = 40, - ["min"] = 30, + ["1820_LifeLeechAmount"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Chest"] = { - ["max"] = 40, - ["min"] = 30, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "enchant", + ["id"] = "explicit.stat_2112395885", + ["text"] = "#% increased amount of Life Leeched", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["871_IncreasedMana"] = { - ["Focus"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Quiver"] = { - ["max"] = 25, - ["min"] = 20, + ["1820_LifeLeechAmountRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Ring"] = { - ["max"] = 25, - ["min"] = 20, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "enchant", + ["id"] = "explicit.stat_3666476747", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["874_BaseSpirit"] = { - ["Helmet"] = { - ["max"] = 30, - ["min"] = 20, + ["1822_ManaLeechAmount"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "enchant", + ["id"] = "explicit.stat_2839066308", + ["text"] = "#% increased amount of Mana Leeched", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["881_AlliesInPresenceAllDamage"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["1822_ManaLeechAmountRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Sceptre"] = { - ["max"] = 30, - ["min"] = 20, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", - ["type"] = "enchant", + ["id"] = "explicit.stat_3700202631", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", + ["type"] = "explicit", }, }, - ["892_AlliesInPresenceCriticalStrikeMultiplier"] = { - ["1HWeapon"] = { + ["1871_MarkCastSpeed"] = { + ["AnyJewel"] = { ["max"] = 15, - ["min"] = 10, + ["min"] = 5, }, - ["Sceptre"] = { + ["BaseJewel"] = { ["max"] = 15, - ["min"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3057012405", - ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", - ["type"] = "enchant", + ["id"] = "explicit.stat_1714971114", + ["text"] = "Mark Skills have #% increased Use Speed", + ["type"] = "explicit", }, }, - ["893_AlliesInPresenceIncreasedAttackSpeed"] = { - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, + ["1871_MarkCastSpeedRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Sceptre"] = { - ["max"] = 10, - ["min"] = 5, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1998951374", - ["text"] = "Allies in your Presence have #% increased Attack Speed", - ["type"] = "enchant", + ["id"] = "explicit.stat_2202308025", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", + ["type"] = "explicit", }, }, - ["894_AlliesInPresenceIncreasedCastSpeed"] = { - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, + ["1875_CurseAreaOfEffect"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 8, }, - ["Sceptre"] = { - ["max"] = 10, - ["min"] = 5, + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_289128254", - ["text"] = "Allies in your Presence have #% increased Cast Speed", - ["type"] = "enchant", + ["id"] = "explicit.stat_153777645", + ["text"] = "#% increased Area of Effect of Curses", + ["type"] = "explicit", }, }, - ["8959_ChainFromTerrain"] = { - ["Quiver"] = { - ["max"] = 20, - ["min"] = 10, + ["1875_CurseAreaOfEffectRadius"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 6, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4081947835", - ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", - ["type"] = "enchant", + ["id"] = "explicit.stat_3859848445", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", + ["type"] = "explicit", }, }, - ["916_ItemFoundRarityIncrease"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, + ["1946_MinionPhysicalDamageReduction"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 10, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "enchant", + ["id"] = "explicit.stat_3119612865", + ["text"] = "Minions have #% additional Physical Damage Reduction", + ["type"] = "explicit", }, }, - ["918_LocalCriticalStrikeMultiplier"] = { - ["1HMace"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 10, - ["min"] = 5, + ["1946_MinionPhysicalDamageReductionRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Crossbow"] = { - ["max"] = 10, - ["min"] = 5, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Flail"] = { - ["max"] = 10, - ["min"] = 5, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "explicit.stat_30438393", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", + ["type"] = "explicit", }, - ["Spear"] = { - ["max"] = 10, - ["min"] = 5, + }, + ["2250_SummonTotemCastSpeed"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Talisman"] = { - ["max"] = 10, - ["min"] = 5, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", - ["type"] = "enchant", + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["921_LocalAttributeRequirements"] = { - ["1HMace"] = { - ["max"] = -10, - ["min"] = -20, - }, - ["1HWeapon"] = { - ["max"] = -10, - ["min"] = -20, + ["2250_SummonTotemCastSpeedRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["2HMace"] = { - ["max"] = -10, - ["min"] = -20, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["2HWeapon"] = { - ["max"] = -10, - ["min"] = -20, + ["specialCaseData"] = { }, - ["Boots"] = { - ["max"] = -10, - ["min"] = -20, + ["tradeMod"] = { + ["id"] = "explicit.stat_1145481685", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", + ["type"] = "explicit", }, - ["Bow"] = { - ["max"] = -10, - ["min"] = -20, + }, + ["2266_CurseEffectivenessForJewel"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["Chest"] = { - ["max"] = -10, - ["min"] = -20, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["Crossbow"] = { - ["max"] = -10, - ["min"] = -20, + ["specialCaseData"] = { }, - ["Flail"] = { - ["max"] = -10, - ["min"] = -20, + ["tradeMod"] = { + ["id"] = "explicit.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "explicit", }, - ["Focus"] = { - ["max"] = -10, - ["min"] = -20, + }, + ["2266_CurseEffectivenessForJewelRadius"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Gloves"] = { - ["max"] = -10, - ["min"] = -20, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Helmet"] = { - ["max"] = -10, - ["min"] = -20, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = -10, - ["min"] = -20, + ["tradeMod"] = { + ["id"] = "explicit.stat_2770044702", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", + ["type"] = "explicit", }, - ["Sceptre"] = { - ["max"] = -10, - ["min"] = -20, + }, + ["2268_MarkEffect"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 4, }, - ["Shield"] = { - ["max"] = -10, - ["min"] = -20, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 4, }, - ["Spear"] = { - ["max"] = -10, - ["min"] = -20, + ["specialCaseData"] = { }, - ["Staff"] = { - ["max"] = -10, - ["min"] = -20, + ["tradeMod"] = { + ["id"] = "explicit.stat_712554801", + ["text"] = "#% increased Effect of your Mark Skills", + ["type"] = "explicit", }, - ["Talisman"] = { - ["max"] = -10, - ["min"] = -20, + }, + ["2268_MarkEffectRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Wand"] = { - ["max"] = -10, - ["min"] = -20, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3639275092", - ["text"] = "#% increased Attribute Requirements", - ["type"] = "enchant", + ["id"] = "explicit.stat_179541474", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", + ["type"] = "explicit", }, }, - ["924_GlobalIncreaseFireSpellSkillGemLevel"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, + ["2362_DamageRemovedFromManaBeforeLife"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_591105508", - ["text"] = "# to Level of all Fire Spell Skills", - ["type"] = "enchant", + ["id"] = "explicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["925_GlobalIncreaseColdSpellSkillGemLevel"] = { - ["1HWeapon"] = { + ["2362_DamageRemovedFromManaBeforeLifeRadius"] = { + ["AnyJewel"] = { ["max"] = 1, ["min"] = 1, }, - ["2HWeapon"] = { + ["RadiusJewel"] = { ["max"] = 1, ["min"] = 1, }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "explicit.stat_2709646369", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", + ["type"] = "explicit", }, + }, + ["2472_AuraEffectForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2254480358", - ["text"] = "# to Level of all Cold Spell Skills", - ["type"] = "enchant", + ["id"] = "explicit.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["926_GlobalIncreaseLightningSpellSkillGemLevel"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["2472_AuraEffectForJewelRadius"] = { + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "explicit.stat_3243034867", + ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", + ["type"] = "explicit", }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, + }, + ["2558_MinionElementalResistance"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1545858329", - ["text"] = "# to Level of all Lightning Spell Skills", - ["type"] = "enchant", + ["id"] = "explicit.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", + ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["927_GlobalIncreaseChaosSpellSkillGemLevel"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 1, + ["2558_MinionElementalResistanceRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, ["min"] = 1, }, - ["Wand"] = { - ["max"] = 1, + ["RadiusJewel"] = { + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4226189338", - ["text"] = "# to Level of all Chaos Spell Skills", - ["type"] = "enchant", + ["id"] = "explicit.stat_3225608889", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", + ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["928_GlobalIncreaseMeleeSkillGemLevel"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, + ["2559_MinionChaosResistance"] = { + ["AnyJewel"] = { + ["max"] = 13, + ["min"] = 7, + }, + ["BaseJewel"] = { + ["max"] = 13, + ["min"] = 7, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_9187492", - ["text"] = "# to Level of all Melee Skills", - ["type"] = "enchant", + ["id"] = "explicit.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", + ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["931_GlobalIncreaseMinionSpellSkillGemLevel"] = { - ["Helmet"] = { - ["max"] = 1, + ["2559_MinionChaosResistanceRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2162097452", - ["text"] = "# to Level of all Minion Skills", - ["type"] = "enchant", + ["id"] = "explicit.stat_1756380435", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", + ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["935_SpellCriticalStrikeChance"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Staff"] = { - ["max"] = 30, - ["min"] = 20, + ["2613_FireResistancePenetration"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 20, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", - ["type"] = "enchant", + ["id"] = "explicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", }, }, - ["937_CriticalStrikeMultiplier"] = { - ["Quiver"] = { - ["max"] = 20, - ["min"] = 15, + ["2613_FireResistancePenetrationRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Ring"] = { - ["max"] = 20, - ["min"] = 15, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3556824919", - ["text"] = "#% increased Critical Damage Bonus", - ["type"] = "enchant", + ["id"] = "explicit.stat_1432756708", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", }, }, - ["942_IncreasedCastSpeed"] = { - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 15, - ["min"] = 10, + ["2614_ColdResistancePenetration"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Wand"] = { - ["max"] = 15, - ["min"] = 10, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "enchant", + ["id"] = "explicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "explicit", }, }, - ["943_AdditionalAmmo"] = { - ["2HWeapon"] = { - ["max"] = 1, + ["2614_ColdResistancePenetrationRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, ["min"] = 1, }, - ["Crossbow"] = { - ["max"] = 1, + ["RadiusJewel"] = { + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1967051901", - ["text"] = "Loads an additional bolt", - ["type"] = "enchant", + ["id"] = "explicit.stat_1896066427", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", + ["type"] = "explicit", }, }, - ["943_Strength"] = { + ["2615_LightningResistancePenetration"] = { ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["max"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["RadiusJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "enchant", + ["id"] = "explicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["944_Dexterity"] = { + ["2615_LightningResistancePenetrationRadius"] = { ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["RadiusJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, - ["945_AdditionalArrows"] = { - ["2HWeapon"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, - ["Bow"] = { - ["max"] = 1, + ["RadiusJewel"] = { + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { - ["id"] = "enchant.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", - ["type"] = "enchant", + ["id"] = "explicit.stat_868556494", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", + ["type"] = "explicit", }, }, - ["945_Intelligence"] = { + ["2649_MinionAreaOfEffect"] = { ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["max"] = 8, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["RadiusJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["max"] = 8, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "enchant", + ["id"] = "explicit.stat_3811191316", + ["text"] = "Minions have #% increased Area of Effect", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["947_Strength"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, + ["2649_MinionAreaOfEffectRadius"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 10, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "enchant", + ["id"] = "explicit.stat_2534359663", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["948_Dexterity"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, + ["2786_PoisonDuration"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 10, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "enchant", + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["949_Intelligence"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, + ["2786_PoisonDurationRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 10, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "enchant", + ["id"] = "explicit.stat_221701169", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["951_ReducedPhysicalDamageTaken"] = { - ["Chest"] = { - ["max"] = 5, - ["min"] = 3, + ["2789_BaseChanceToPoison"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", - ["type"] = "enchant", + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", + ["type"] = "explicit", }, }, - ["952_MaximumElementalResistance"] = { - ["Amulet"] = { + ["2789_BaseChanceToPoisonRadius"] = { + ["AnyJewel"] = { ["max"] = 1, ["min"] = 1, }, - ["Chest"] = { + ["RadiusJewel"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", - ["type"] = "enchant", + ["id"] = "explicit.stat_2840989393", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["953_MaximumFireResist"] = { - ["Belt"] = { - ["max"] = 3, - ["min"] = 1, + ["2821_DamageVsRareOrUnique"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", - ["type"] = "enchant", + ["id"] = "explicit.stat_1852872083", + ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["954_FireResistance"] = { + ["2821_DamageVsRareOrUniqueRadius"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "enchant", + ["id"] = "explicit.stat_147764878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["954_MaximumColdResist"] = { - ["Helmet"] = { - ["max"] = 3, - ["min"] = 1, + ["2878_IncreasedStunThreshold"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3676141501", - ["text"] = "#% to Maximum Cold Resistance", - ["type"] = "enchant", + ["id"] = "explicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["955_ColdResistance"] = { + ["2878_IncreasedStunThresholdRadius"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "enchant", + ["id"] = "explicit.stat_484792219", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["955_MaximumLightningResistance"] = { - ["Boots"] = { - ["max"] = 3, - ["min"] = 1, + ["2879_FreezeThreshold"] = { + ["AnyJewel"] = { + ["max"] = 32, + ["min"] = 18, + }, + ["BaseJewel"] = { + ["max"] = 32, + ["min"] = 18, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", - ["type"] = "enchant", + ["id"] = "explicit.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["956_LightningResistance"] = { + ["2879_FreezeThresholdRadius"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 4, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "enchant", + ["id"] = "explicit.stat_830345042", + ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["957_AllResistances"] = { - ["Amulet"] = { - ["max"] = 10, - ["min"] = 5, + ["2884_WarcrySpeed"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Ring"] = { - ["max"] = 10, - ["min"] = 5, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - ["type"] = "enchant", + ["id"] = "explicit.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["957_ChaosResistance"] = { + ["2884_WarcrySpeedRadius"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - ["type"] = "enchant", + ["id"] = "explicit.stat_1602294220", + ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["958_FireResistance"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 20, + ["2929_WarcryCooldownSpeed"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Boots"] = { - ["max"] = 25, - ["min"] = 20, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "enchant", + ["id"] = "explicit.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["959_ColdResistance"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 20, + ["2929_WarcryCooldownSpeedRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - ["Boots"] = { - ["max"] = 25, - ["min"] = 20, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "enchant", + ["id"] = "explicit.stat_2056107438", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["960_LightningResistance"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 20, + ["3802_DamageIfConsumedCorpse"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Boots"] = { - ["max"] = 25, - ["min"] = 20, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "enchant", + ["id"] = "explicit.stat_2118708619", + ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["961_ChaosResistance"] = { - ["Chest"] = { - ["max"] = 19, - ["min"] = 13, + ["3802_DamageIfConsumedCorpseRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Ring"] = { - ["max"] = 19, - ["min"] = 13, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - ["type"] = "enchant", + ["id"] = "explicit.stat_1892122971", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["9646_ThornsDamageIncrease"] = { - ["Chest"] = { - ["max"] = 50, - ["min"] = 40, + ["3849_CrossbowDamage"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, }, - ["Shield"] = { - ["max"] = 50, - ["min"] = 40, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1315743832", - ["text"] = "#% increased Thorns damage", - ["type"] = "enchant", + ["id"] = "explicit.stat_427684353", + ["text"] = "#% increased Damage with Crossbows", + ["type"] = "explicit", }, }, - ["967_EnergyShieldDelay"] = { - ["Focus"] = { - ["max"] = 30, - ["min"] = 20, + ["3849_CrossbowDamageRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", - ["type"] = "enchant", + ["id"] = "explicit.stat_517664839", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", + ["type"] = "explicit", }, }, - ["969_LifeRegenerationRate"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["3853_CrossbowSpeed"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["Ring"] = { - ["max"] = 25, - ["min"] = 15, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", - ["type"] = "enchant", + ["id"] = "explicit.stat_1135928777", + ["text"] = "#% increased Attack Speed with Crossbows", + ["type"] = "explicit", }, }, - ["970_DamageTakenGainedAsLife"] = { - ["Chest"] = { - ["max"] = 20, - ["min"] = 10, + ["3853_CrossbowSpeedRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "enchant", + ["id"] = "explicit.stat_715957346", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", + ["type"] = "explicit", }, }, - ["971_LifeLeechPermyriad"] = { - ["Amulet"] = { - ["max"] = 3, - ["min"] = 3, + ["4136_AilmentChance"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2557965901", - ["text"] = "Leech #% of Physical Attack Damage as Life", - ["type"] = "enchant", + ["id"] = "explicit.stat_1772247089", + ["text"] = "#% increased chance to inflict Ailments", + ["type"] = "explicit", }, }, - ["975_LifeGainedFromEnemyDeath"] = { - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Quiver"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Staff"] = { - ["max"] = 25, - ["min"] = 20, + ["4136_AilmentChanceRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - ["Wand"] = { - ["max"] = 25, - ["min"] = 20, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", - ["type"] = "enchant", + ["id"] = "explicit.stat_412709880", + ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", + ["type"] = "explicit", }, }, - ["9764_YouCannotBeHindered"] = { + ["4140_AilmentEffect"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_721014846", - ["text"] = "You cannot be Hindered", - ["type"] = "enchant", + ["id"] = "explicit.stat_1303248024", + ["text"] = "#% increased Magnitude of Ailments you inflict", + ["type"] = "explicit", }, }, - ["976_ManaRegeneration"] = { - ["Helmet"] = { - ["max"] = 30, - ["min"] = 20, + ["4140_AilmentEffectRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "enchant", + ["id"] = "explicit.stat_1321104829", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", + ["type"] = "explicit", }, }, - ["977_PercentDamageGoesToMana"] = { - ["Chest"] = { - ["max"] = 20, - ["min"] = 10, + ["4146_AilmentThresholdfromEnergyShield"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", - ["type"] = "enchant", + ["id"] = "explicit.stat_3398301358", + ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", }, }, - ["979_ManaLeechPermyriad"] = { - ["Amulet"] = { + ["4146_AilmentThresholdfromEnergyShieldRadius"] = { + ["AnyJewel"] = { ["max"] = 2, - ["min"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_707457662", - ["text"] = "Leech #% of Physical Attack Damage as Mana", - ["type"] = "enchant", + ["id"] = "explicit.stat_693237939", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", }, }, - ["980_ManaGainedFromEnemyDeath"] = { - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Quiver"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 15, + ["4147_IncreasedAilmentThreshold"] = { + ["AnyJewel"] = { + ["max"] = 20, ["min"] = 10, }, - ["Wand"] = { - ["max"] = 15, + ["BaseJewel"] = { + ["max"] = 20, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", - ["type"] = "enchant", + ["id"] = "explicit.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "explicit", }, }, - ["985_LocalStunDamageIncrease"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["4147_IncreasedAilmentThresholdRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["2HMace"] = { - ["max"] = 30, - ["min"] = 20, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["specialCaseData"] = { }, - ["Flail"] = { - ["max"] = 30, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_3409275777", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", + ["type"] = "explicit", }, - ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 20, + }, + ["4283_ArmourBreak"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Spear"] = { - ["max"] = 30, - ["min"] = 20, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", - ["type"] = "enchant", - }, - }, - ["988_IgniteChanceIncrease"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Staff"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 20, + ["id"] = "explicit.stat_1776411443", + ["text"] = "Break #% increased Armour", + ["type"] = "explicit", }, - ["specialCaseData"] = { + }, + ["4283_ArmourBreakRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", - ["type"] = "enchant", + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - }, - ["9897_WeaponSwapSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3233599707", - ["text"] = "#% increased Weapon Swap Speed", - ["type"] = "enchant", + ["id"] = "explicit.stat_4089835882", + ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", + ["type"] = "explicit", }, }, - ["990_FreezeDamageIncrease"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Staff"] = { - ["max"] = 30, - ["min"] = 20, + ["4285_ArmourBreakDuration"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 20, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_473429811", - ["text"] = "#% increased Freeze Buildup", - ["type"] = "enchant", + ["id"] = "explicit.stat_2637470878", + ["text"] = "#% increased Armour Break Duration", + ["type"] = "explicit", }, }, - ["992_ShockChanceIncrease"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Staff"] = { - ["max"] = 30, - ["min"] = 20, + ["4285_ArmourBreakDurationRadius"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 20, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_293638271", - ["text"] = "#% increased chance to Shock", - ["type"] = "enchant", + ["id"] = "explicit.stat_504915064", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", + ["type"] = "explicit", }, }, - ["998_PresenceRadius"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["4453_AttacksBlindOnHitChance"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", - ["type"] = "enchant", + ["id"] = "explicit.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["type"] = "explicit", }, }, - }, - ["Enchant"] = { - }, - ["Explicit"] = { - ["1000_ReducedPoisonDuration"] = { - ["Chest"] = { - ["max"] = -36, - ["min"] = -60, + ["4453_AttacksBlindOnHitChanceRadius"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3301100256", - ["text"] = "#% increased Poison Duration on you", + ["id"] = "explicit.stat_2610562860", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", ["type"] = "explicit", }, }, - ["1001_ChanceToPierce"] = { + ["4495_BannerArea"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 5, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["Quiver"] = { - ["max"] = 26, - ["min"] = 12, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_429143663", + ["text"] = "Banner Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["4495_BannerAreaRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2321178454", - ["text"] = "#% chance to Pierce an Enemy", + ["id"] = "explicit.stat_4142814612", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", ["type"] = "explicit", }, }, - ["1002_PresenceRadius"] = { - ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 36, - }, + ["4497_BannerDuration"] = { ["AnyJewel"] = { ["max"] = 25, - ["min"] = 8, + ["min"] = 15, }, ["BaseJewel"] = { ["max"] = 25, ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["Sceptre"] = { - ["max"] = 80, - ["min"] = 36, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", + ["id"] = "explicit.stat_2720982137", + ["text"] = "Banner Skills have #% increased Duration", ["type"] = "explicit", }, }, - ["1003_LightRadiusAndAccuracy"] = { - ["Helmet"] = { - ["max"] = 15, - ["min"] = 5, + ["4497_BannerDurationRadius"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1263695895", - ["text"] = "#% increased Light Radius", + ["id"] = "explicit.stat_2690740379", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", ["type"] = "explicit", }, }, - ["1003_LightRadiusAndManaRegeneration"] = { - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Staff"] = { - ["max"] = 15, + ["4522_BleedDuration"] = { + ["AnyJewel"] = { + ["max"] = 10, ["min"] = 5, }, - ["Wand"] = { - ["max"] = 15, + ["BaseJewel"] = { + ["max"] = 10, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1263695895", - ["text"] = "#% increased Light Radius", + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", ["type"] = "explicit", }, }, - ["1003_LocalLightRadiusAndAccuracy"] = { - ["1HMace"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 15, - ["min"] = 5, + ["4522_BleedDurationRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - ["Talisman"] = { - ["max"] = 15, - ["min"] = 5, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1263695895", - ["text"] = "#% increased Light Radius", + ["id"] = "explicit.stat_1505023559", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", ["type"] = "explicit", }, }, - ["1004_FlaskChanceRechargeOnKill"] = { - ["specialCaseData"] = { + ["4532_BaseChanceToBleed"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_828533480", - ["text"] = "#% Chance to gain a Charge when you kill an enemy", - ["type"] = "explicit", + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - }, - ["1005_FlaskIncreasedChargesAdded"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3196823591", - ["text"] = "#% increased Charges gained", + ["id"] = "explicit.stat_2174054121", + ["text"] = "#% chance to inflict Bleeding on Hit", ["type"] = "explicit", }, }, - ["1006_FlaskChargesUsed"] = { - ["invertOnNegative"] = true, - ["specialCaseData"] = { + ["4532_BaseChanceToBleedRadius"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_388617051", - ["text"] = "#% increased Charges per use", - ["type"] = "explicit", + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["1008_FlaskIncreasedMaxCharges"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1366840608", - ["text"] = "#% increased Charges", + ["id"] = "explicit.stat_944643028", + ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", ["type"] = "explicit", }, }, - ["1009_IgniteEffect"] = { + ["4539_GlobalCooldownRecovery"] = { ["AnyJewel"] = { - ["max"] = 15, + ["max"] = 5, ["min"] = 3, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 7, + ["max"] = 5, ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3791899485", - ["text"] = "#% increased Ignite Magnitude", + ["id"] = "explicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", ["type"] = "explicit", }, }, - ["1064_IncreasedBlockChance"] = { + ["4539_GlobalCooldownRecoveryRadius"] = { ["AnyJewel"] = { - ["max"] = 7, + ["max"] = 3, ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["RadiusJewel"] = { ["max"] = 3, ["min"] = 1, @@ -10104,39 +9761,29 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4147897060", - ["text"] = "#% increased Block chance", - ["type"] = "explicit", - }, - }, - ["1080_PercentageStrength"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_734614379", - ["text"] = "#% increased Strength", + ["id"] = "explicit.stat_2149603090", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", ["type"] = "explicit", }, }, - ["1081_PercentageDexterity"] = { - ["specialCaseData"] = { + ["4605_LifeCost"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4139681126", - ["text"] = "#% increased Dexterity", - ["type"] = "explicit", + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, }, - }, - ["1082_PercentageIntelligence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_656461285", - ["text"] = "#% increased Intelligence", + ["id"] = "explicit.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", ["type"] = "explicit", }, }, - ["1089_TotemDamageForJewel"] = { + ["4605_LifeCostRadius"] = { ["AnyJewel"] = { ["max"] = 3, ["min"] = 2, @@ -10148,283 +9795,269 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2108821127", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", + ["id"] = "explicit.stat_3386297724", + ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", ["type"] = "explicit", }, }, - ["1093_AttackDamage"] = { + ["4608_SlowPotency"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 1, + ["max"] = -5, + ["min"] = -10, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = -5, + ["min"] = -10, }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", + ["id"] = "explicit.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "explicit", }, }, - ["1122_PhysicalDamagePercent"] = { + ["4608_SlowPotencyRadius"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = -2, + ["min"] = -5, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = -2, + ["min"] = -5, }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["id"] = "explicit.stat_2580617872", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", ["type"] = "explicit", }, }, - ["1124_MeleeDamage"] = { + ["4662_BleedDotMultiplier"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", + ["id"] = "explicit.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", ["type"] = "explicit", }, }, - ["1175_IncreasedStaffDamageForJewel"] = { + ["4662_BleedDotMultiplierRadius"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["max"] = 7, + ["min"] = 3, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4045894391", - ["text"] = "#% increased Damage with Quarterstaves", + ["id"] = "explicit.stat_391602279", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", ["type"] = "explicit", }, }, - ["1186_IncreasedMaceDamageForJewel"] = { + ["4781_BlindEffect"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 1, + ["max"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1181419800", - ["text"] = "#% increased Damage with Maces", + ["id"] = "explicit.stat_1585769763", + ["text"] = "#% increased Blind Effect", ["type"] = "explicit", }, }, - ["1190_IncreasedBowDamageForJewel"] = { + ["4781_BlindEffectRadius"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["max"] = 5, + ["min"] = 3, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4188894176", - ["text"] = "#% increased Damage with Bows", + ["id"] = "explicit.stat_2912416697", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", ["type"] = "explicit", }, }, - ["1204_SpearDamage"] = { + ["5139_ForkingProjectiles"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 15, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2809428780", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", + ["id"] = "explicit.stat_3003542304", + ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "explicit", }, }, - ["1225_ChaosDamage"] = { + ["5139_ForkingProjectilesRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_674553446", - ["text"] = "Adds # to # Chaos Damage to Attacks", + ["id"] = "explicit.stat_4258720395", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "explicit", }, }, - ["1227_LocalChaosDamage"] = { + ["5227_CharmChargesGained"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", + ["id"] = "explicit.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", ["type"] = "explicit", }, }, - ["1227_LocalChaosDamageTwoHand"] = { + ["5227_CharmChargesGainedRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", + ["id"] = "explicit.stat_2320654813", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", ["type"] = "explicit", }, }, - ["1256_StaffAttackSpeedForJewel"] = { + ["5339_CompanionDamage"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 1, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3283482523", - ["text"] = "#% increased Attack Speed with Quarterstaves", + ["id"] = "explicit.stat_234296660", + ["text"] = "Companions deal #% increased Damage", ["type"] = "explicit", }, }, - ["1260_BowAttackSpeedForJewel"] = { + ["5339_CompanionDamageRadius"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 4, + ["max"] = 3, ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3759735052", - ["text"] = "#% increased Attack Speed with Bows", + ["id"] = "explicit.stat_1494950893", + ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", ["type"] = "explicit", }, }, - ["1263_SpearAttackSpeed"] = { + ["5342_CompanionLife"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 20, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1266413530", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", + ["id"] = "explicit.stat_1805182458", + ["text"] = "Companions have #% increased maximum Life", ["type"] = "explicit", }, }, - ["1268_IncreasedAccuracyPercent"] = { + ["5342_CompanionLifeRadius"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Accuracy Rating", + ["id"] = "explicit.stat_2638756573", + ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", ["type"] = "explicit", }, }, - ["1277_BowIncreasedAccuracyRating"] = { + ["5424_CriticalAilmentEffect"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 1, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_169946467", - ["text"] = "#% increased Accuracy Rating with Bows", + ["id"] = "explicit.stat_440490623", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", ["type"] = "explicit", }, }, - ["1328_SpearCriticalDamage"] = { + ["5424_CriticalAilmentEffectRadius"] = { ["AnyJewel"] = { ["max"] = 10, ["min"] = 5, @@ -10436,204 +10069,186 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_138421180", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", + ["id"] = "explicit.stat_4092130601", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", ["type"] = "explicit", }, }, - ["1402_GlobalIncreasePhysicalSpellSkillGemLevel"] = { + ["5530_CurseDelay"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1600707273", - ["text"] = "# to Level of all Physical Spell Skills", + ["id"] = "explicit.stat_1104825894", + ["text"] = "#% faster Curse Activation", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1402_GlobalIncreasePhysicalSpellSkillGemLevelWeapon"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 7, - ["min"] = 1, + ["5553_DamagevsArmourBrokenEnemies"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 1, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1600707273", - ["text"] = "# to Level of all Physical Spell Skills", + ["id"] = "explicit.stat_2301718443", + ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1437_MaximumLifeOnKillPercent"] = { + ["5553_DamagevsArmourBrokenEnemiesRadius"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 4, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2023107756", - ["text"] = "Recover #% of maximum Life on Kill", + ["id"] = "explicit.stat_1834658952", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", ["type"] = "explicit", }, }, - ["1443_ManaGainedOnKillPercentage"] = { + ["5567_ShapeshiftDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1030153674", - ["text"] = "Recover #% of maximum Mana on Kill", + ["id"] = "explicit.stat_2440073079", + ["text"] = "#% increased Damage while Shapeshifted", ["type"] = "explicit", }, }, - ["1446_GainManaOnBlock"] = { + ["5567_ShapeshiftDamageForJewelRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2122183138", - ["text"] = "# Mana gained when you Block", + ["id"] = "explicit.stat_266564538", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", ["type"] = "explicit", }, }, - ["1459_IncreasedTotemLife"] = { + ["5627_CharmDamageWhileUsing"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 20, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_442393998", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", + ["id"] = "explicit.stat_627767961", + ["text"] = "#% increased Damage while you have an active Charm", ["type"] = "explicit", }, }, - ["1466_BaseCurseDuration"] = { + ["5627_CharmDamageWhileUsingRadius"] = { ["AnyJewel"] = { - ["max"] = 25, + ["max"] = 3, ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, ["RadiusJewel"] = { - ["max"] = 4, + ["max"] = 3, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3824372849", - ["text"] = "#% increased Curse Duration", + ["id"] = "explicit.stat_3752589831", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", ["type"] = "explicit", }, }, - ["1539_IncreasedChillDuration"] = { + ["5632_HeraldDamage"] = { ["AnyJewel"] = { ["max"] = 25, - ["min"] = 6, + ["min"] = 15, }, ["BaseJewel"] = { ["max"] = 25, ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3485067555", - ["text"] = "#% increased Chill Duration on Enemies", + ["id"] = "explicit.stat_21071013", + ["text"] = "Herald Skills deal #% increased Damage", ["type"] = "explicit", }, }, - ["1540_ShockDuration"] = { + ["5632_HeraldDamageRadius"] = { ["AnyJewel"] = { - ["max"] = 3, + ["max"] = 4, ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 3, + ["max"] = 4, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3513818125", - ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", + ["id"] = "explicit.stat_3065378291", + ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", ["type"] = "explicit", }, }, - ["1557_AreaOfEffect"] = { + ["5668_DamagingAilmentDuration"] = { ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 2, + ["max"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", + ["id"] = "explicit.stat_1829102168", + ["text"] = "#% increased Duration of Damaging Ailments on Enemies", ["type"] = "explicit", }, }, - ["1572_SkillEffectDuration"] = { + ["5668_DamagingAilmentDurationRadius"] = { ["AnyJewel"] = { - ["max"] = 10, + ["max"] = 5, ["min"] = 3, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["RadiusJewel"] = { ["max"] = 5, ["min"] = 3, @@ -10641,122 +10256,101 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "explicit", - }, - }, - ["1601_DamageasExtraPhysical"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4019237939", - ["text"] = "Gain #% of Damage as Extra Physical Damage", + ["id"] = "explicit.stat_2272980012", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", ["type"] = "explicit", }, }, - ["1646_MinionDamage"] = { + ["5671_FasterAilmentDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 1, + ["max"] = 7, + ["min"] = 3, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["id"] = "explicit.stat_538241406", + ["text"] = "Damaging Ailments deal damage #% faster", ["type"] = "explicit", }, }, - ["1651_ElementalDamagePercent"] = { + ["5671_FasterAilmentDamageForJewelRadius"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", + ["id"] = "explicit.stat_3173882956", + ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", ["type"] = "explicit", }, }, - ["1663_ProjectileDamage"] = { + ["5703_DebuffTimePassed"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 1, + ["max"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 15, + ["max"] = 10, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", + ["id"] = "explicit.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", ["type"] = "explicit", }, }, - ["1669_KnockbackDistance"] = { + ["5703_DebuffTimePassedRadius"] = { ["AnyJewel"] = { - ["max"] = 15, + ["max"] = 5, ["min"] = 3, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, ["RadiusJewel"] = { - ["max"] = 7, + ["max"] = 5, ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_565784293", - ["text"] = "#% increased Knockback Distance", + ["id"] = "explicit.stat_2256120736", + ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", ["type"] = "explicit", }, }, - ["1706_AttackAndCastSpeed"] = { + ["5912_ExertedAttackDamage"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", + ["id"] = "explicit.stat_1569101201", + ["text"] = "Empowered Attacks deal #% increased Damage", ["type"] = "explicit", }, }, - ["1719_GlobalFlaskLifeRecovery"] = { + ["5912_ExertedAttackDamageRadius"] = { ["AnyJewel"] = { - ["max"] = 15, + ["max"] = 3, ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, ["RadiusJewel"] = { ["max"] = 3, ["min"] = 2, @@ -10764,194 +10358,135 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", + ["id"] = "explicit.stat_3395186672", + ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", ["type"] = "explicit", }, }, - ["1720_FlaskManaRecovery"] = { + ["5987_EnergyGeneration"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 1, + ["max"] = 8, + ["min"] = 4, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 8, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2222186378", - ["text"] = "#% increased Mana Recovery from Flasks", + ["id"] = "explicit.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", ["type"] = "explicit", }, }, - ["1820_LifeLeechAmount"] = { + ["5987_EnergyGenerationRadius"] = { ["AnyJewel"] = { - ["max"] = 15, + ["max"] = 4, ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, ["RadiusJewel"] = { - ["max"] = 3, + ["max"] = 4, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2112395885", - ["text"] = "#% increased amount of Life Leeched", + ["id"] = "explicit.stat_2849546516", + ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", ["type"] = "explicit", }, }, - ["1821_IncreasedLifeLeechRate"] = { + ["6002_FocusEnergyShield"] = { + ["AnyJewel"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["BaseJewel"] = { + ["max"] = 50, + ["min"] = 30, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1570501432", - ["text"] = "Leech Life #% faster", + ["id"] = "explicit.stat_3174700878", + ["text"] = "#% increased Energy Shield from Equipped Focus", ["type"] = "explicit", }, }, - ["1822_ManaLeechAmount"] = { + ["6002_FocusEnergyShieldRadius"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 25, + ["min"] = 15, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2839066308", - ["text"] = "#% increased amount of Mana Leeched", + ["id"] = "explicit.stat_3419203492", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", ["type"] = "explicit", }, }, - ["1871_MarkCastSpeed"] = { + ["6216_IncreasedFlaskChargesGained"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 2, + ["max"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 15, + ["max"] = 10, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1714971114", - ["text"] = "Mark Skills have #% increased Use Speed", - ["type"] = "explicit", + ["id"] = "explicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "explicit", }, }, - ["1875_CurseAreaOfEffect"] = { + ["6216_IncreasedFlaskChargesGainedRadius"] = { ["AnyJewel"] = { - ["max"] = 12, + ["max"] = 5, ["min"] = 3, }, - ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, ["RadiusJewel"] = { - ["max"] = 6, + ["max"] = 5, ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_153777645", - ["text"] = "#% increased Area of Effect of Curses", + ["id"] = "explicit.stat_2066964205", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", ["type"] = "explicit", }, }, - ["1946_MinionPhysicalDamageReduction"] = { + ["6431_RageOnHit"] = { ["AnyJewel"] = { - ["max"] = 16, + ["max"] = 1, ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["RadiusJewel"] = { - ["max"] = 2, + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3119612865", - ["text"] = "Minions have #% additional Physical Damage Reduction", - ["type"] = "explicit", - }, - }, - ["2124_PhysicalDamageTakenAsChaos"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", - ["type"] = "explicit", - }, - }, - ["2250_SummonTotemCastSpeed"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", - ["type"] = "explicit", - }, - }, - ["2266_CurseEffectiveness"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", + ["id"] = "explicit.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", ["type"] = "explicit", }, }, - ["2266_CurseEffectivenessForJewel"] = { + ["6431_RageOnHitRadius"] = { ["AnyJewel"] = { - ["max"] = 4, + ["max"] = 1, ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, ["RadiusJewel"] = { ["max"] = 1, ["min"] = 1, @@ -10959,196 +10494,169 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", + ["id"] = "explicit.stat_2969557004", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", ["type"] = "explicit", }, }, - ["2268_MarkEffect"] = { + ["6433_GainRageWhenHit"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 2, + ["max"] = 3, + ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["RadiusJewel"] = { ["max"] = 3, - ["min"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_712554801", - ["text"] = "#% increased Effect of your Mark Skills", + ["id"] = "explicit.stat_3292710273", + ["text"] = "Gain # Rage when Hit by an Enemy", ["type"] = "explicit", }, }, - ["2362_DamageRemovedFromManaBeforeLife"] = { + ["6433_GainRageWhenHitRadius"] = { ["AnyJewel"] = { - ["max"] = 4, + ["max"] = 2, ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, ["RadiusJewel"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", + ["id"] = "explicit.stat_2131720304", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", ["type"] = "explicit", }, }, - ["2472_AuraEffectForJewel"] = { - ["specialCaseData"] = { + ["6474_BannerValourGained"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_315791320", - ["text"] = "Aura Skills have #% increased Magnitudes", - ["type"] = "explicit", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 15, }, - }, - ["2472_EssenceAuraEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_315791320", - ["text"] = "Aura Skills have #% increased Magnitudes", + ["id"] = "explicit.stat_1869147066", + ["text"] = "#% increased Glory generation for Banner Skills", ["type"] = "explicit", }, }, - ["2486_AllDefences"] = { + ["6474_BannerValourGainedRadius"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1389153006", - ["text"] = "#% increased Global Defences", + ["id"] = "explicit.stat_2907381231", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", ["type"] = "explicit", }, }, - ["2558_MinionElementalResistance"] = { + ["6536_HazardDamage"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 1, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1423639565", - ["text"] = "Minions have #% to all Elemental Resistances", + ["id"] = "explicit.stat_1697951953", + ["text"] = "#% increased Hazard Damage", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["2559_MinionChaosResistance"] = { + ["6536_HazardDamageRadius"] = { ["AnyJewel"] = { - ["max"] = 13, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 13, - ["min"] = 7, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3837707023", - ["text"] = "Minions have #% to Chaos Resistance", + ["id"] = "explicit.stat_255840549", + ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["2613_FireResistancePenetration"] = { + ["6750_PinBuildup"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 1, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", + ["id"] = "explicit.stat_3473929743", + ["text"] = "#% increased Pin Buildup", ["type"] = "explicit", }, }, - ["2614_ColdResistancePenetration"] = { + ["6750_PinBuildupRadius"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 1, - }, - ["BaseJewel"] = { ["max"] = 10, ["min"] = 5, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", + ["id"] = "explicit.stat_1944020877", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", ["type"] = "explicit", }, }, - ["2615_LightningResistancePenetration"] = { + ["6818_ElementalAilmentDuration"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 10, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", + ["id"] = "explicit.stat_1062710370", + ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", ["type"] = "explicit", }, }, - ["2649_MinionAreaOfEffect"] = { + ["6818_ElementalAilmentDurationRadius"] = { ["AnyJewel"] = { - ["max"] = 8, + ["max"] = 5, ["min"] = 3, }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 5, - }, ["RadiusJewel"] = { ["max"] = 5, ["min"] = 3, @@ -11156,50 +10664,50 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3811191316", - ["text"] = "Minions have #% increased Area of Effect", + ["id"] = "explicit.stat_1323216174", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", ["type"] = "explicit", }, }, - ["2786_PoisonDuration"] = { + ["6970_LifeFlaskChargePercentGeneration"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 3, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", + ["id"] = "explicit.stat_4009879772", + ["text"] = "#% increased Life Flask Charges gained", ["type"] = "explicit", }, }, - ["2786_PoisonDurationChaosDamage"] = { + ["6970_LifeFlaskChargePercentGenerationRadius"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", + ["id"] = "explicit.stat_942519401", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", ["type"] = "explicit", }, }, - ["2789_BaseChanceToPoison"] = { + ["7285_JewelRadiusLargerRadius"] = { ["AnyJewel"] = { - ["max"] = 10, + ["max"] = 1, ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["RadiusJewel"] = { ["max"] = 1, ["min"] = 1, @@ -11207,273 +10715,255 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", + ["id"] = "explicit.stat_3891355829|2", + ["text"] = "Upgrades Radius to Large", ["type"] = "explicit", }, }, - ["2821_DamageVsRareOrUnique"] = { + ["7304_JewelRadiusNotableEffect"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 25, + ["min"] = 15, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1852872083", - ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", + ["id"] = "explicit.stat_4234573345", + ["text"] = "#% increased Effect of Notable Passive Skills in Radius", ["type"] = "explicit", }, }, - ["2878_IncreasedStunThreshold"] = { + ["7308_JewelRadiusSmallNodeEffect"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["max"] = 25, + ["min"] = 15, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", + ["id"] = "explicit.stat_1060572482", + ["text"] = "#% increased Effect of Small Passive Skills in Radius", ["type"] = "explicit", }, }, - ["2879_FreezeThreshold"] = { + ["7459_MaceStun"] = { ["AnyJewel"] = { - ["max"] = 32, - ["min"] = 2, + ["max"] = 25, + ["min"] = 15, }, ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, - }, - ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3780644166", - ["text"] = "#% increased Freeze Threshold", + ["id"] = "explicit.stat_872504239", + ["text"] = "#% increased Stun Buildup with Maces", ["type"] = "explicit", }, }, - ["2884_WarcrySpeed"] = { + ["7459_MaceStunRadius"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 12, + ["min"] = 6, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 12, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1602294220", - ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", + ["id"] = "explicit.stat_2392824305", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", ["type"] = "explicit", }, }, - ["2929_WarcryCooldownSpeed"] = { + ["7491_ManaFlaskChargePercentGeneration"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 20, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2056107438", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", + ["id"] = "explicit.stat_3590792340", + ["text"] = "#% increased Mana Flask Charges gained", ["type"] = "explicit", }, }, - ["2967_CannotBePoisoned"] = { + ["7491_ManaFlaskChargePercentGenerationRadius"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3835551335", - ["text"] = "Cannot be Poisoned", + ["id"] = "explicit.stat_3171212276", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", ["type"] = "explicit", }, }, - ["3802_DamageIfConsumedCorpse"] = { + ["8276_MarkDuration"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 2, + ["max"] = 32, + ["min"] = 18, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 32, + ["min"] = 18, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2118708619", - ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", + ["id"] = "explicit.stat_2594634307", + ["text"] = "Mark Skills have #% increased Skill Effect Duration", ["type"] = "explicit", }, }, - ["3849_CrossbowDamage"] = { + ["8276_MarkDurationRadius"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["max"] = 4, + ["min"] = 3, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 4, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_427684353", - ["text"] = "#% increased Damage with Crossbows", + ["id"] = "explicit.stat_4162678661", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", ["type"] = "explicit", }, }, - ["3853_CrossbowSpeed"] = { + ["827_MovementVelocity"] = { ["AnyJewel"] = { - ["max"] = 4, + ["max"] = 2, ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["RadiusJewel"] = { ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1135928777", - ["text"] = "#% increased Attack Speed with Crossbows", + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", ["type"] = "explicit", }, }, - ["4136_AilmentChance"] = { + ["827_MovementVelocityRadius"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 1, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1772247089", - ["text"] = "#% increased chance to inflict Ailments", + ["id"] = "explicit.stat_844449513", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", ["type"] = "explicit", }, }, - ["4140_AilmentEffect"] = { + ["8364_MeleeDamageIfProjectileHitRecently"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 3, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1303248024", - ["text"] = "#% increased Magnitude of Ailments you inflict", + ["id"] = "explicit.stat_3028809864", + ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", ["type"] = "explicit", }, }, - ["4146_AilmentThresholdfromEnergyShield"] = { + ["8364_MeleeDamageIfProjectileHitRecentlyRadius"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3398301358", - ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["id"] = "explicit.stat_2421151933", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", ["type"] = "explicit", }, }, - ["4147_IncreasedAilmentThreshold"] = { + ["8446_MinionAccuracyRatingForJewel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["8446_MinionAccuracyRatingForJewelRadius"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_793875384", + ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["8453_MinionAttackSpeedAndCastSpeed"] = { ["AnyJewel"] = { - ["max"] = 20, + ["max"] = 4, ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 3, + ["max"] = 4, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3544800472", - ["text"] = "#% increased Elemental Ailment Threshold", + ["id"] = "explicit.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", ["type"] = "explicit", }, }, - ["4283_ArmourBreak"] = { + ["8453_MinionAttackSpeedAndCastSpeedRadius"] = { ["AnyJewel"] = { - ["max"] = 15, + ["max"] = 2, ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, ["RadiusJewel"] = { ["max"] = 2, ["min"] = 1, @@ -11481,373 +10971,280 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1776411443", - ["text"] = "Break #% increased Armour", + ["id"] = "explicit.stat_3106718406", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", ["type"] = "explicit", }, }, - ["4285_ArmourBreakDuration"] = { + ["8476_MinionCriticalStrikeChanceIncrease"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 5, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2637470878", - ["text"] = "#% increased Armour Break Duration", + ["id"] = "explicit.stat_491450213", + ["text"] = "Minions have #% increased Critical Hit Chance", ["type"] = "explicit", }, }, - ["4453_AttacksBlindOnHitChance"] = { + ["8476_MinionCriticalStrikeChanceIncreaseRadius"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 10, + ["min"] = 5, }, ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_318953428", - ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["id"] = "explicit.stat_3628935286", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", ["type"] = "explicit", }, }, - ["4495_BannerArea"] = { + ["8478_MinionCriticalStrikeMultiplier"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 2, + ["max"] = 25, + ["min"] = 15, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_429143663", - ["text"] = "Banner Skills have #% increased Area of Effect", + ["id"] = "explicit.stat_1854213750", + ["text"] = "Minions have #% increased Critical Damage Bonus", ["type"] = "explicit", }, }, - ["4497_BannerDuration"] = { + ["8478_MinionCriticalStrikeMultiplierRadius"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 12, + ["min"] = 6, }, ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 3, + ["max"] = 12, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2720982137", - ["text"] = "Banner Skills have #% increased Duration", + ["id"] = "explicit.stat_593241812", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", ["type"] = "explicit", }, }, - ["4522_BleedDuration"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["8529_MinionReviveSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", + ["id"] = "explicit.stat_2639966148", + ["text"] = "Minions Revive #% faster", ["type"] = "explicit", }, }, - ["4532_BaseChanceToBleed"] = { + ["853_WeaponSpellDamage"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 1, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2174054121", - ["text"] = "#% chance to inflict Bleeding on Hit", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", }, }, - ["4539_GlobalCooldownRecovery"] = { + ["853_WeaponSpellDamageRadius"] = { ["AnyJewel"] = { - ["max"] = 5, + ["max"] = 2, ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, ["RadiusJewel"] = { - ["max"] = 3, + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, - ["4582_ManaCostEfficiency"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4101445926", - ["text"] = "#% increased Mana Cost Efficiency", + ["id"] = "explicit.stat_1137305356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", ["type"] = "explicit", }, }, - ["4605_LifeCost"] = { + ["855_FireDamagePercentage"] = { ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 2, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2480498143", - ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", }, }, - ["4608_SlowPotency"] = { + ["855_FireDamagePercentageRadius"] = { ["AnyJewel"] = { - ["max"] = -2, - ["min"] = -5, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = -2, - ["min"] = -5, + ["max"] = 2, + ["min"] = 1, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2580617872", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", + ["id"] = "explicit.stat_139889694", + ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", ["type"] = "explicit", }, }, - ["4662_BleedDotMultiplier"] = { + ["856_ColdDamagePercentage"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 3, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3166958180", - ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", }, }, - ["4781_BlindEffect"] = { + ["856_ColdDamagePercentageRadius"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1585769763", - ["text"] = "#% increased Blind Effect", - ["type"] = "explicit", - }, - }, - ["5137_AdditionalArrowChanceCanExceed100%"] = { - ["2HWeapon"] = { - ["max"] = 200, - ["min"] = 25, - }, - ["Bow"] = { - ["max"] = 200, - ["min"] = 25, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2463230181", - ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["id"] = "explicit.stat_2442527254", + ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["5139_ForkingProjectiles"] = { + ["857_LightningDamagePercentage"] = { ["AnyJewel"] = { ["max"] = 15, ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 7, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3003542304", - ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", }, }, - ["5227_BeltIncreasedCharmChargesGained"] = { - ["Belt"] = { - ["max"] = 40, - ["min"] = 5, + ["857_LightningDamagePercentageRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", + ["id"] = "explicit.stat_2768899959", + ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", ["type"] = "explicit", }, }, - ["5227_CharmChargesGained"] = { + ["858_IncreasedChaosDamage"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 3, + ["max"] = 12, + ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 12, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", }, }, - ["5229_BeltReducedCharmChargesUsed"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 8, - }, - ["specialCaseData"] = { + ["858_IncreasedChaosDamageRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1570770415", - ["text"] = "#% reduced Charm Charges used", - ["type"] = "explicit", + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - }, - ["5307_EssenceColdRecoupLife"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3679418014", - ["text"] = "#% of Cold Damage taken Recouped as Life", + ["id"] = "explicit.stat_1309799717", + ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", ["type"] = "explicit", }, }, - ["5339_CompanionDamage"] = { + ["864_GlobalPhysicalDamageReductionRatingPercent"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 2, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_234296660", - ["text"] = "Companions deal #% increased Damage", + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", ["type"] = "explicit", }, }, - ["5342_CompanionLife"] = { + ["864_GlobalPhysicalDamageReductionRatingPercentRadius"] = { ["AnyJewel"] = { - ["max"] = 20, + ["max"] = 3, ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, ["RadiusJewel"] = { ["max"] = 3, ["min"] = 2, @@ -11855,96 +11252,101 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1805182458", - ["text"] = "Companions have #% increased maximum Life", + ["id"] = "explicit.stat_3858398337", + ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", ["type"] = "explicit", }, }, - ["5424_CriticalAilmentEffect"] = { + ["866_GlobalEvasionRatingPercent"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 5, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + }, + ["866_GlobalEvasionRatingPercentRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_440490623", - ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["id"] = "explicit.stat_1994296038", + ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", ["type"] = "explicit", }, }, - ["5530_CurseDelay"] = { + ["868_GlobalEnergyShieldPercent"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1104825894", - ["text"] = "#% faster Curse Activation", + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", ["type"] = "explicit", }, }, - ["5553_DamagevsArmourBrokenEnemies"] = { + ["868_GlobalEnergyShieldPercentRadius"] = { ["AnyJewel"] = { - ["max"] = 25, + ["max"] = 3, ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, ["RadiusJewel"] = { - ["max"] = 4, + ["max"] = 3, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2301718443", - ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", + ["id"] = "explicit.stat_3665922113", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", ["type"] = "explicit", }, }, - ["5567_ShapeshiftDamageForJewel"] = { + ["875_ProjectileSpeed"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 8, + ["min"] = 4, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_266564538", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", ["type"] = "explicit", }, }, - ["5627_CharmDamageWhileUsing"] = { + ["875_ProjectileSpeedRadius"] = { ["AnyJewel"] = { - ["max"] = 20, + ["max"] = 3, ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, ["RadiusJewel"] = { ["max"] = 3, ["min"] = 2, @@ -11952,262 +11354,237 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_627767961", - ["text"] = "#% increased Damage while you have an active Charm", + ["id"] = "explicit.stat_1777421941", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", ["type"] = "explicit", }, }, - ["5632_HeraldDamage"] = { + ["8776_OfferingDuration"] = { ["AnyJewel"] = { ["max"] = 25, - ["min"] = 2, + ["min"] = 15, }, ["BaseJewel"] = { ["max"] = 25, ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_21071013", - ["text"] = "Herald Skills deal #% increased Damage", + ["id"] = "explicit.stat_2957407601", + ["text"] = "Offering Skills have #% increased Duration", ["type"] = "explicit", }, }, - ["5668_DamagingAilmentDuration"] = { + ["8776_OfferingDurationRadius"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 12, + ["min"] = 6, }, ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 12, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1829102168", - ["text"] = "#% increased Duration of Damaging Ailments on Enemies", + ["id"] = "explicit.stat_2374711847", + ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", ["type"] = "explicit", }, }, - ["5671_FasterAilmentDamageForJewel"] = { + ["8777_OfferingLife"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 2, + ["max"] = 25, + ["min"] = 15, }, ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_538241406", - ["text"] = "Damaging Ailments deal damage #% faster", + ["id"] = "explicit.stat_3787460122", + ["text"] = "Offerings have #% increased Maximum Life", ["type"] = "explicit", }, }, - ["5703_DebuffTimePassed"] = { + ["8777_OfferingLifeRadius"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1238227257", - ["text"] = "Debuffs on you expire #% faster", + ["id"] = "explicit.stat_2107703111", + ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", ["type"] = "explicit", }, }, - ["5912_ExertedAttackDamage"] = { + ["878_CharmDuration"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 2, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1569101201", - ["text"] = "Empowered Attacks deal #% increased Damage", + ["id"] = "explicit.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", ["type"] = "explicit", }, }, - ["5987_EnergyGeneration"] = { + ["878_CharmDurationRadius"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", + ["id"] = "explicit.stat_3088348485", + ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", ["type"] = "explicit", }, }, - ["6002_FocusEnergyShield"] = { + ["8799_ParryDamage"] = { ["AnyJewel"] = { - ["max"] = 50, + ["max"] = 25, ["min"] = 15, }, ["BaseJewel"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["RadiusJewel"] = { ["max"] = 25, ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3174700878", - ["text"] = "#% increased Energy Shield from Equipped Focus", + ["id"] = "explicit.stat_1569159338", + ["text"] = "#% increased Parry Damage", ["type"] = "explicit", }, }, - ["6048_AbyssTargetMod"] = { - ["specialCaseData"] = { + ["8799_ParryDamageRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_335885735", - ["text"] = "Bears the Mark of the Abyssal Lord", - ["type"] = "explicit", + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - }, - ["610_FlaskGainChargePerMinute"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1873752457", - ["text"] = "Gains # Charges per Second", + ["id"] = "explicit.stat_1007380041", + ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", ["type"] = "explicit", }, }, - ["6150_EssenceFireRecoupLife"] = { + ["879_FlaskDuration"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1742651309", - ["text"] = "#% of Fire Damage taken Recouped as Life", + ["id"] = "explicit.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", ["type"] = "explicit", }, }, - ["6216_BeltIncreasedFlaskChargesGained"] = { - ["Belt"] = { - ["max"] = 40, - ["min"] = 5, + ["879_FlaskDurationRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1836676211", - ["text"] = "#% increased Flask Charges gained", + ["id"] = "explicit.stat_1773308808", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", ["type"] = "explicit", }, }, - ["6216_IncreasedFlaskChargesGained"] = { + ["8808_ParriedDebuffDuration"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 3, + ["max"] = 15, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1836676211", - ["text"] = "#% increased Flask Charges gained", + ["id"] = "explicit.stat_3401186585", + ["text"] = "#% increased Parried Debuff Duration", ["type"] = "explicit", }, }, - ["6431_RageOnHit"] = { + ["8808_ParriedDebuffDurationRadius"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 10, + ["min"] = 5, }, ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2969557004", - ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", + ["id"] = "explicit.stat_1514844108", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", ["type"] = "explicit", }, }, - ["6433_GainRageWhenHit"] = { + ["8809_StunThresholdDuringParry"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 25, + ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2131720304", - ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", + ["id"] = "explicit.stat_1911237468", + ["text"] = "#% increased Stun Threshold while Parrying", ["type"] = "explicit", }, }, - ["6474_BannerValourGained"] = { + ["8809_StunThresholdDuringParryRadius"] = { ["AnyJewel"] = { - ["max"] = 20, + ["max"] = 12, ["min"] = 8, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 15, - }, ["RadiusJewel"] = { ["max"] = 12, ["min"] = 8, @@ -12215,13780 +11592,1314 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1869147066", - ["text"] = "#% increased Glory generation for Banner Skills", + ["id"] = "explicit.stat_1495814176", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", ["type"] = "explicit", }, }, - ["6476_EssenceGoldDropped"] = { + ["8914_PlantDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["id"] = "explicit.stat_2518900926", + ["text"] = "#% increased Damage with Plant Skills", ["type"] = "explicit", }, }, - ["6536_HazardDamage"] = { + ["8914_PlantDamageForJewelRadius"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1697951953", - ["text"] = "#% increased Hazard Damage", + ["id"] = "explicit.stat_1590846356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", ["type"] = "explicit", }, }, - ["6750_PinBuildup"] = { + ["8925_PoisonEffect"] = { ["AnyJewel"] = { - ["max"] = 20, + ["max"] = 15, ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3473929743", - ["text"] = "#% increased Pin Buildup", + ["id"] = "explicit.stat_2487305362", + ["text"] = "#% increased Magnitude of Poison you inflict", ["type"] = "explicit", }, }, - ["6818_ElementalAilmentDuration"] = { + ["8925_PoisonEffectRadius"] = { ["AnyJewel"] = { - ["max"] = 10, + ["max"] = 7, ["min"] = 3, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["RadiusJewel"] = { - ["max"] = 5, + ["max"] = 7, ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1062710370", - ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", + ["id"] = "explicit.stat_462424929", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", ["type"] = "explicit", }, }, - ["6970_LifeFlaskChargePercentGeneration"] = { + ["8970_ChainFromTerrain"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 5, + ["max"] = 5, + ["min"] = 3, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4009879772", - ["text"] = "#% increased Life Flask Charges gained", + ["id"] = "explicit.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "explicit", }, }, - ["7081_EssenceLightningRecoupLife"] = { - ["specialCaseData"] = { + ["8970_ChainFromTerrainRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2970621759", - ["text"] = "#% of Lightning Damage taken Recouped as Life", - ["type"] = "explicit", + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - }, - ["7174_EssenceOnslaughtonKill"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1881230714", - ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", + ["id"] = "explicit.stat_2334956771", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "explicit", }, }, - ["7237_CorruptForTwoEnchantments"] = { + ["8973_ProjectileDamageIfMeleeHitRecently"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4215035940", - ["text"] = "On Corruption, Item gains two Enchantments", + ["id"] = "explicit.stat_3596695232", + ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", ["type"] = "explicit", }, }, - ["7285_JewelRadiusLargerRadius"] = { + ["8973_ProjectileDamageIfMeleeHitRecentlyRadius"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3891355829|2", - ["text"] = "Upgrades Radius to Large", + ["id"] = "explicit.stat_288364275", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", ["type"] = "explicit", }, }, - ["7304_JewelRadiusNotableEffect"] = { + ["9020_QuarterstaffFreezeBuildup"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 20, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4234573345", - ["text"] = "#% increased Effect of Notable Passive Skills in Radius", + ["id"] = "explicit.stat_1697447343", + ["text"] = "#% increased Freeze Buildup with Quarterstaves", ["type"] = "explicit", }, }, - ["7308_JewelRadiusSmallNodeEffect"] = { + ["9020_QuarterstaffFreezeBuildupRadius"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 10, + ["min"] = 5, }, ["RadiusJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1060572482", - ["text"] = "#% increased Effect of Small Passive Skills in Radius", + ["id"] = "explicit.stat_127081978", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", ["type"] = "explicit", }, }, - ["7351_LocalSocketItemsEffect"] = { + ["9028_QuiverModifierEffect"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2081918629", - ["text"] = "#% increased effect of Socketed Items", + ["id"] = "explicit.stat_1200678966", + ["text"] = "#% increased bonuses gained from Equipped Quiver", ["type"] = "explicit", }, }, - ["7459_MaceStun"] = { + ["9028_QuiverModifierEffectRadius"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_872504239", - ["text"] = "#% increased Stun Buildup with Maces", + ["id"] = "explicit.stat_4180952808", + ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", ["type"] = "explicit", }, }, - ["7491_ManaFlaskChargePercentGeneration"] = { + ["9032_MaximumRage"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 5, + ["max"] = 1, + ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3590792340", - ["text"] = "#% increased Mana Flask Charges gained", + ["id"] = "explicit.stat_1181501418", + ["text"] = "# to Maximum Rage", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["821_LocalIncreasedPhysicalDamagePercentAndAccuracyRating"] = { - ["1HMace"] = { - ["max"] = 79, - ["min"] = 15, - }, - ["1HWeapon"] = { - ["max"] = 79, - ["min"] = 15, - }, - ["2HMace"] = { - ["max"] = 79, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 79, - ["min"] = 15, - }, - ["Bow"] = { - ["max"] = 79, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 79, - ["min"] = 15, - }, - ["Flail"] = { - ["max"] = 79, - ["min"] = 15, - }, - ["Quarterstaff"] = { - ["max"] = 79, - ["min"] = 15, - }, - ["Spear"] = { - ["max"] = 79, - ["min"] = 15, + ["9032_MaximumRageRadius"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Talisman"] = { - ["max"] = 79, - ["min"] = 15, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_1846980580", + ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["821_LocalPhysicalDamagePercent"] = { - ["1HMace"] = { - ["max"] = 179, - ["min"] = 40, + ["9149_CrossbowReloadSpeed"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, }, - ["1HWeapon"] = { - ["max"] = 179, - ["min"] = 40, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, }, - ["2HMace"] = { - ["max"] = 179, - ["min"] = 40, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 179, - ["min"] = 40, + ["tradeMod"] = { + ["id"] = "explicit.stat_3192728503", + ["text"] = "#% increased Crossbow Reload Speed", + ["type"] = "explicit", }, - ["Bow"] = { - ["max"] = 179, - ["min"] = 40, + }, + ["9149_CrossbowReloadSpeedRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, }, - ["Crossbow"] = { - ["max"] = 179, - ["min"] = 40, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 5, }, - ["Flail"] = { - ["max"] = 179, - ["min"] = 40, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 179, - ["min"] = 40, + ["tradeMod"] = { + ["id"] = "explicit.stat_3856744003", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", + ["type"] = "explicit", }, - ["Spear"] = { - ["max"] = 179, - ["min"] = 40, + }, + ["9241_ShieldArmourIncrease"] = { + ["AnyJewel"] = { + ["max"] = 32, + ["min"] = 18, }, - ["Talisman"] = { - ["max"] = 179, - ["min"] = 40, + ["BaseJewel"] = { + ["max"] = 32, + ["min"] = 18, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_145497481", + ["text"] = "#% increased Defences from Equipped Shield", ["type"] = "explicit", }, }, - ["822_LocalPhysicalDamage"] = { - ["1HMace"] = { - ["max"] = 52.5, - ["min"] = 2.5, + ["9241_ShieldArmourIncreaseRadius"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 8, }, - ["1HWeapon"] = { - ["max"] = 52.5, - ["min"] = 2.5, + ["RadiusJewel"] = { + ["max"] = 15, + ["min"] = 8, }, - ["2HMace"] = { - ["max"] = 74.5, - ["min"] = 3.5, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 74.5, - ["min"] = 2.5, + ["tradeMod"] = { + ["id"] = "explicit.stat_713216632", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Defences from Equipped Shield", + ["type"] = "explicit", }, - ["Bow"] = { - ["max"] = 52.5, - ["min"] = 2.5, + }, + ["9248_ShockEffect"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, }, - ["Crossbow"] = { - ["max"] = 74.5, - ["min"] = 3.5, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, }, - ["Flail"] = { - ["max"] = 52.5, - ["min"] = 2.5, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 74.5, - ["min"] = 3.5, + ["tradeMod"] = { + ["id"] = "explicit.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "explicit", }, - ["Spear"] = { - ["max"] = 52.5, - ["min"] = 2.5, + }, + ["9248_ShockEffectRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, }, - ["Talisman"] = { - ["max"] = 74.5, - ["min"] = 3.5, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1940865751", - ["text"] = "Adds # to # Physical Damage", + ["id"] = "explicit.stat_1166140625", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", ["type"] = "explicit", }, }, - ["823_LocalFireDamage"] = { - ["1HMace"] = { - ["max"] = 127.5, + ["9317_ShapeshiftSkillSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 4, ["min"] = 2, }, - ["1HWeapon"] = { - ["max"] = 127.5, + ["BaseJewel"] = { + ["max"] = 4, ["min"] = 2, }, - ["2HMace"] = { - ["max"] = 196, - ["min"] = 3.5, + ["specialCaseData"] = { }, - ["2HWeapon"] = { - ["max"] = 196, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "explicit.stat_918325986", + ["text"] = "#% increased Skill Speed while Shapeshifted", + ["type"] = "explicit", }, - ["Bow"] = { - ["max"] = 127.5, - ["min"] = 2, + }, + ["9317_ShapeshiftSkillSpeedForJewelRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Crossbow"] = { - ["max"] = 196, - ["min"] = 3.5, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Flail"] = { - ["max"] = 127.5, - ["min"] = 2, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 196, - ["min"] = 3.5, + ["tradeMod"] = { + ["id"] = "explicit.stat_3579898587", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", + ["type"] = "explicit", }, - ["Spear"] = { - ["max"] = 127.5, - ["min"] = 2, + }, + ["933_CriticalStrikeChance"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Talisman"] = { - ["max"] = 196, - ["min"] = 3.5, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage", + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Critical Hit Chance", ["type"] = "explicit", }, }, - ["824_LocalColdDamage"] = { - ["1HMace"] = { - ["max"] = 102, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 102, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 156.5, - ["min"] = 3, - }, - ["2HWeapon"] = { - ["max"] = 156.5, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 102, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 156.5, - ["min"] = 3, - }, - ["Flail"] = { - ["max"] = 102, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 156.5, + ["933_CriticalStrikeChanceRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, ["min"] = 3, }, - ["Spear"] = { - ["max"] = 102, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 156.5, + ["RadiusJewel"] = { + ["max"] = 7, ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", + ["id"] = "explicit.stat_2077117738", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", ["type"] = "explicit", }, }, - ["825_LocalLightningDamage"] = { - ["1HMace"] = { - ["max"] = 123, - ["min"] = 2.5, - }, - ["1HWeapon"] = { - ["max"] = 123, - ["min"] = 2.5, - }, - ["2HMace"] = { - ["max"] = 188.5, - ["min"] = 4, - }, - ["2HWeapon"] = { - ["max"] = 188.5, - ["min"] = 2.5, - }, - ["Bow"] = { - ["max"] = 123, - ["min"] = 2.5, - }, - ["Crossbow"] = { - ["max"] = 188.5, - ["min"] = 4, - }, - ["Flail"] = { - ["max"] = 123, - ["min"] = 2.5, - }, - ["Quarterstaff"] = { - ["max"] = 188.5, - ["min"] = 4, - }, - ["Spear"] = { - ["max"] = 123, - ["min"] = 2.5, + ["934_AttackCriticalStrikeChance"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, }, - ["Talisman"] = { - ["max"] = 188.5, - ["min"] = 4, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", + ["id"] = "explicit.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", ["type"] = "explicit", }, }, - ["826_LocalAccuracyRating"] = { - ["1HMace"] = { - ["max"] = 550, - ["min"] = 11, - }, - ["1HWeapon"] = { - ["max"] = 550, - ["min"] = 11, - }, - ["2HMace"] = { - ["max"] = 550, - ["min"] = 11, - }, - ["2HWeapon"] = { - ["max"] = 650, - ["min"] = 11, - }, - ["Bow"] = { - ["max"] = 650, - ["min"] = 11, - }, - ["Crossbow"] = { - ["max"] = 650, - ["min"] = 11, - }, - ["Flail"] = { - ["max"] = 550, - ["min"] = 11, - }, - ["Quarterstaff"] = { - ["max"] = 550, - ["min"] = 11, - }, - ["Spear"] = { - ["max"] = 550, - ["min"] = 11, + ["934_AttackCriticalStrikeChanceRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - ["Talisman"] = { - ["max"] = 550, - ["min"] = 11, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_803737631", - ["text"] = "# to Accuracy Rating", + ["id"] = "explicit.stat_3865605585", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["826_LocalIncreasedPhysicalDamagePercentAndAccuracyRating"] = { - ["1HMace"] = { - ["max"] = 200, - ["min"] = 16, - }, - ["1HWeapon"] = { - ["max"] = 200, - ["min"] = 16, - }, - ["2HMace"] = { - ["max"] = 200, - ["min"] = 16, - }, - ["2HWeapon"] = { - ["max"] = 200, - ["min"] = 16, - }, - ["Bow"] = { - ["max"] = 200, - ["min"] = 16, - }, - ["Crossbow"] = { - ["max"] = 200, - ["min"] = 16, - }, - ["Flail"] = { - ["max"] = 200, - ["min"] = 16, - }, - ["Quarterstaff"] = { - ["max"] = 200, - ["min"] = 16, - }, - ["Spear"] = { - ["max"] = 200, - ["min"] = 16, + ["935_SpellCriticalStrikeChance"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Talisman"] = { - ["max"] = 200, - ["min"] = 16, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_803737631", - ["text"] = "# to Accuracy Rating", + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["826_LocalLightRadiusAndAccuracy"] = { - ["1HMace"] = { - ["max"] = 60, - ["min"] = 10, - }, - ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 10, - }, - ["2HMace"] = { - ["max"] = 60, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 10, - }, - ["Bow"] = { - ["max"] = 60, - ["min"] = 10, + ["935_SpellCriticalStrikeChanceRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - ["Crossbow"] = { - ["max"] = 60, - ["min"] = 10, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - ["Flail"] = { - ["max"] = 60, - ["min"] = 10, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 60, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "explicit.stat_2704905000", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", + ["type"] = "explicit", }, - ["Spear"] = { - ["max"] = 60, + }, + ["937_CriticalStrikeMultiplier"] = { + ["AnyJewel"] = { + ["max"] = 20, ["min"] = 10, }, - ["Talisman"] = { - ["max"] = 60, + ["BaseJewel"] = { + ["max"] = 20, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_803737631", - ["text"] = "# to Accuracy Rating", + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["8276_MarkDuration"] = { + ["937_CriticalStrikeMultiplierRadius"] = { ["AnyJewel"] = { - ["max"] = 32, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, + ["max"] = 10, + ["min"] = 5, }, ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 3, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2594634307", - ["text"] = "Mark Skills have #% increased Skill Effect Duration", + ["id"] = "explicit.stat_2359002191", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", ["type"] = "explicit", }, }, - ["827_MovementVelocity"] = { + ["938_AttackCriticalStrikeMultiplier"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 35, + ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "explicit.stat_3714003708", + ["text"] = "#% increased Critical Damage Bonus for Attack Damage", ["type"] = "explicit", }, }, - ["830_LocalIncreasedBlockPercentage"] = { - ["Shield"] = { - ["max"] = 30, - ["min"] = 15, + ["938_AttackCriticalStrikeMultiplierRadius"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4147897060", - ["text"] = "#% increased Block chance", + ["id"] = "explicit.stat_1352561456", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", ["type"] = "explicit", }, }, - ["831_LocalBaseArmourAndEnergyShield"] = { - ["Boots"] = { - ["max"] = 65, - ["min"] = 8, - }, - ["Chest"] = { - ["max"] = 138, - ["min"] = 8, - }, - ["Gloves"] = { - ["max"] = 65, - ["min"] = 8, - }, - ["Helmet"] = { - ["max"] = 78, - ["min"] = 8, + ["939_SpellCritMultiplierForJewel"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Shield"] = { - ["max"] = 117, - ["min"] = 8, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_809229260", - ["text"] = "# to Armour", + ["id"] = "explicit.stat_274716455", + ["text"] = "#% increased Critical Spell Damage Bonus", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["831_LocalBaseArmourAndEvasionRating"] = { - ["Boots"] = { - ["max"] = 65, - ["min"] = 8, - }, - ["Chest"] = { - ["max"] = 138, - ["min"] = 8, - }, - ["Gloves"] = { - ["max"] = 65, - ["min"] = 8, - }, - ["Helmet"] = { - ["max"] = 78, - ["min"] = 8, + ["939_SpellCritMultiplierForJewelRadius"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Shield"] = { - ["max"] = 117, - ["min"] = 8, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_809229260", - ["text"] = "# to Armour", + ["id"] = "explicit.stat_2466785537", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["831_LocalIncreasedArmourAndBase"] = { - ["Chest"] = { - ["max"] = 86, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_809229260", - ["text"] = "# to Armour", - ["type"] = "explicit", + ["941_IncreasedAttackSpeed"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["usePositiveSign"] = true, - }, - ["831_LocalIncreasedArmourAndEnergyShieldAndBase"] = { - ["Chest"] = { - ["max"] = 43, - ["min"] = 4, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_809229260", - ["text"] = "# to Armour", + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["831_LocalIncreasedArmourAndEvasionAndBase"] = { - ["Chest"] = { - ["max"] = 43, - ["min"] = 4, + ["941_IncreasedAttackSpeedRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_809229260", - ["text"] = "# to Armour", + ["id"] = "explicit.stat_2822644689", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["831_LocalPhysicalDamageReductionRating"] = { - ["Boots"] = { - ["max"] = 160, - ["min"] = 16, - }, - ["Chest"] = { - ["max"] = 276, - ["min"] = 16, - }, - ["Gloves"] = { - ["max"] = 160, - ["min"] = 16, - }, - ["Helmet"] = { - ["max"] = 202, - ["min"] = 16, + ["942_IncreasedCastSpeed"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["Shield"] = { - ["max"] = 256, - ["min"] = 16, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_809229260", - ["text"] = "# to Armour", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["832_LocalBaseArmourAndEvasionRating"] = { - ["Boots"] = { - ["max"] = 57, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 126, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 57, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 69, - ["min"] = 6, + ["942_IncreasedCastSpeedRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Shield"] = { - ["max"] = 107, - ["min"] = 6, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "# to Evasion Rating", + ["id"] = "explicit.stat_1022759479", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["832_LocalBaseEvasionRatingAndEnergyShield"] = { - ["Boots"] = { - ["max"] = 57, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 126, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 57, - ["min"] = 6, + ["9531_StunThresholdfromEnergyShield"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Helmet"] = { - ["max"] = 69, - ["min"] = 6, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "# to Evasion Rating", + ["id"] = "explicit.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["832_LocalEvasionRating"] = { - ["Boots"] = { - ["max"] = 142, - ["min"] = 11, - }, - ["Chest"] = { - ["max"] = 251, - ["min"] = 11, - }, - ["Gloves"] = { - ["max"] = 142, - ["min"] = 11, + ["9531_StunThresholdfromEnergyShieldRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["Helmet"] = { - ["max"] = 181, - ["min"] = 11, - }, - ["Shield"] = { - ["max"] = 232, - ["min"] = 11, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "# to Evasion Rating", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["832_LocalIncreasedArmourAndEvasionAndBase"] = { - ["Chest"] = { - ["max"] = 39, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "# to Evasion Rating", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["832_LocalIncreasedEvasionAndBase"] = { - ["Chest"] = { - ["max"] = 79, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "# to Evasion Rating", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["832_LocalIncreasedEvasionAndEnergyShieldAndBase"] = { - ["Chest"] = { - ["max"] = 39, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "# to Evasion Rating", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["833_LocalBaseArmourAndEnergyShield"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 48, - ["min"] = 5, - }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 29, - ["min"] = 5, - }, - ["Shield"] = { - ["max"] = 42, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["833_LocalBaseEvasionRatingAndEnergyShield"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 48, - ["min"] = 5, - }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 29, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["833_LocalEnergyShield"] = { - ["Boots"] = { - ["max"] = 60, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 96, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 90, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 60, - ["min"] = 10, - }, - ["Helmet"] = { - ["max"] = 73, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["833_LocalIncreasedArmourAndEnergyShieldAndBase"] = { - ["Chest"] = { - ["max"] = 15, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["833_LocalIncreasedEnergyShieldAndBase"] = { - ["Chest"] = { - ["max"] = 30, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["833_LocalIncreasedEvasionAndEnergyShieldAndBase"] = { - ["Chest"] = { - ["max"] = 15, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["834_LocalArmourAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "explicit", - }, - }, - ["834_LocalIncreasedArmourAndBase"] = { - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "explicit", - }, - }, - ["834_LocalIncreasedArmourAndLife"] = { - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "explicit", - }, - }, - ["834_LocalIncreasedArmourAndMana"] = { - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "explicit", - }, - }, - ["834_LocalPhysicalDamageReductionRatingPercent"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "explicit", - }, - }, - ["835_LocalEvasionAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "explicit", - }, - }, - ["835_LocalEvasionRatingIncreasePercent"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "explicit", - }, - }, - ["835_LocalIncreasedEvasionAndBase"] = { - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "explicit", - }, - }, - ["835_LocalIncreasedEvasionAndLife"] = { - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "explicit", - }, - }, - ["835_LocalIncreasedEvasionAndMana"] = { - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "explicit", - }, - }, - ["8364_MeleeDamageIfProjectileHitRecently"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3028809864", - ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", - ["type"] = "explicit", - }, - }, - ["836_LocalEnergyShieldAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4015621042", - ["text"] = "#% increased Energy Shield", - ["type"] = "explicit", - }, - }, - ["836_LocalEnergyShieldPercent"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["Focus"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 101, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4015621042", - ["text"] = "#% increased Energy Shield", - ["type"] = "explicit", - }, - }, - ["836_LocalIncreasedEnergyShieldAndBase"] = { - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4015621042", - ["text"] = "#% increased Energy Shield", - ["type"] = "explicit", - }, - }, - ["836_LocalIncreasedEnergyShieldAndLife"] = { - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4015621042", - ["text"] = "#% increased Energy Shield", - ["type"] = "explicit", - }, - }, - ["836_LocalIncreasedEnergyShieldAndMana"] = { - ["Focus"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4015621042", - ["text"] = "#% increased Energy Shield", - ["type"] = "explicit", - }, - }, - ["837_LocalArmourAndEvasion"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", - ["type"] = "explicit", - }, - }, - ["837_LocalArmourAndEvasionAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", - ["type"] = "explicit", - }, - }, - ["837_LocalIncreasedArmourAndEvasionAndBase"] = { - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", - ["type"] = "explicit", - }, - }, - ["837_LocalIncreasedArmourAndEvasionAndLife"] = { - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", - ["type"] = "explicit", - }, - }, - ["837_LocalIncreasedArmourAndEvasionAndMana"] = { - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", - ["type"] = "explicit", - }, - }, - ["838_LocalArmourAndEnergyShield"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", - ["type"] = "explicit", - }, - }, - ["838_LocalArmourAndEnergyShieldAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", - ["type"] = "explicit", - }, - }, - ["838_LocalIncreasedArmourAndEnergyShieldAndBase"] = { - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", - ["type"] = "explicit", - }, - }, - ["838_LocalIncreasedArmourAndEnergyShieldAndLife"] = { - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", - ["type"] = "explicit", - }, - }, - ["838_LocalIncreasedArmourAndEnergyShieldAndMana"] = { - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", - ["type"] = "explicit", - }, - }, - ["839_LocalEvasionAndEnergyShield"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 101, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", - ["type"] = "explicit", - }, - }, - ["839_LocalEvasionAndEnergyShieldAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", - ["type"] = "explicit", - }, - }, - ["839_LocalIncreasedEvasionAndEnergyShieldAndBase"] = { - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", - ["type"] = "explicit", - }, - }, - ["839_LocalIncreasedEvasionAndEnergyShieldAndLife"] = { - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", - ["type"] = "explicit", - }, - }, - ["839_LocalIncreasedEvasionAndEnergyShieldAndMana"] = { - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", - ["type"] = "explicit", - }, - }, - ["840_LocalArmourAndEvasionAndEnergyShield"] = { - ["Boots"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3523867985", - ["text"] = "#% increased Armour, Evasion and Energy Shield", - ["type"] = "explicit", - }, - }, - ["842_LocalIncreasedSpiritAndMana"] = { - ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["Sceptre"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3984865854", - ["text"] = "#% increased Spirit", - ["type"] = "explicit", - }, - }, - ["842_LocalIncreasedSpiritPercent"] = { - ["1HWeapon"] = { - ["max"] = 65, - ["min"] = 27, - }, - ["Sceptre"] = { - ["max"] = 65, - ["min"] = 27, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3984865854", - ["text"] = "#% increased Spirit", - ["type"] = "explicit", - }, - }, - ["843_PhysicalDamage"] = { - ["Gloves"] = { - ["max"] = 25.5, - ["min"] = 2, - }, - ["Quiver"] = { - ["max"] = 25.5, - ["min"] = 2, - }, - ["Ring"] = { - ["max"] = 25.5, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", - ["type"] = "explicit", - }, - }, - ["8446_MinionAccuracyRatingForJewel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1718147982", - ["text"] = "#% increased Minion Accuracy Rating", - ["type"] = "explicit", - }, - }, - ["844_FireDamage"] = { - ["Gloves"] = { - ["max"] = 37, - ["min"] = 2, - }, - ["Quiver"] = { - ["max"] = 37, - ["min"] = 2, - }, - ["Ring"] = { - ["max"] = 37, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1573130764", - ["text"] = "Adds # to # Fire damage to Attacks", - ["type"] = "explicit", - }, - }, - ["8453_MinionAttackSpeedAndCastSpeed"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3091578504", - ["text"] = "Minions have #% increased Attack and Cast Speed", - ["type"] = "explicit", - }, - }, - ["845_ColdDamage"] = { - ["Gloves"] = { - ["max"] = 30.5, - ["min"] = 1.5, - }, - ["Quiver"] = { - ["max"] = 30.5, - ["min"] = 1.5, - }, - ["Ring"] = { - ["max"] = 30.5, - ["min"] = 1.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4067062424", - ["text"] = "Adds # to # Cold damage to Attacks", - ["type"] = "explicit", - }, - }, - ["846_LightningDamage"] = { - ["Gloves"] = { - ["max"] = 37.5, - ["min"] = 2.5, - }, - ["Quiver"] = { - ["max"] = 37.5, - ["min"] = 2.5, - }, - ["Ring"] = { - ["max"] = 37.5, - ["min"] = 2.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1754445556", - ["text"] = "Adds # to # Lightning damage to Attacks", - ["type"] = "explicit", - }, - }, - ["8476_MinionCriticalStrikeChanceIncrease"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_491450213", - ["text"] = "Minions have #% increased Critical Hit Chance", - ["type"] = "explicit", - }, - }, - ["8478_MinionCriticalStrikeMultiplier"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1854213750", - ["text"] = "Minions have #% increased Critical Damage Bonus", - ["type"] = "explicit", - }, - }, - ["847_DamageGainedAsFire"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 26, - }, - ["Staff"] = { - ["max"] = 60, - ["min"] = 26, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3015669065", - ["text"] = "Gain #% of Damage as Extra Fire Damage", - ["type"] = "explicit", - }, - }, - ["847_DamageasExtraFire"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3015669065", - ["text"] = "Gain #% of Damage as Extra Fire Damage", - ["type"] = "explicit", - }, - }, - ["849_DamageGainedAsCold"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 26, - }, - ["Staff"] = { - ["max"] = 60, - ["min"] = 26, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2505884597", - ["text"] = "Gain #% of Damage as Extra Cold Damage", - ["type"] = "explicit", - }, - }, - ["849_DamageasExtraCold"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2505884597", - ["text"] = "Gain #% of Damage as Extra Cold Damage", - ["type"] = "explicit", - }, - }, - ["851_DamageGainedAsLightning"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 26, - }, - ["Staff"] = { - ["max"] = 60, - ["min"] = 26, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3278136794", - ["text"] = "Gain #% of Damage as Extra Lightning Damage", - ["type"] = "explicit", - }, - }, - ["851_DamageasExtraLightning"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3278136794", - ["text"] = "Gain #% of Damage as Extra Lightning Damage", - ["type"] = "explicit", - }, - }, - ["8529_MinionReviveSpeed"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2639966148", - ["text"] = "Minions Revive #% faster", - ["type"] = "explicit", - }, - }, - ["853_SpellDamage"] = { - ["Amulet"] = { - ["max"] = 30, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["853_WeaponSpellDamage"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["853_WeaponSpellDamageAndMana"] = { - ["1HWeapon"] = { - ["max"] = 49, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 98, - ["min"] = 30, - }, - ["Staff"] = { - ["max"] = 98, - ["min"] = 30, - }, - ["Wand"] = { - ["max"] = 49, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["855_FireDamagePercentage"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, - ["855_FireDamageWeaponPrefix"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", - }, - }, - ["856_ColdDamagePercentage"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, - ["856_ColdDamageWeaponPrefix"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, - ["857_LightningDamagePercentage"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, - ["857_LightningDamageWeaponPrefix"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, - ["858_ChaosDamageWeaponPrefix"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, - ["858_IncreasedChaosDamage"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, - ["858_PoisonDurationChaosDamage"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", - ["type"] = "explicit", - }, - }, - ["859_IncreasedWeaponElementalDamagePercent"] = { - ["1HMace"] = { - ["max"] = 100, - ["min"] = 19, - }, - ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 19, - }, - ["2HMace"] = { - ["max"] = 139, - ["min"] = 34, - }, - ["2HWeapon"] = { - ["max"] = 139, - ["min"] = 19, - }, - ["Bow"] = { - ["max"] = 100, - ["min"] = 19, - }, - ["Crossbow"] = { - ["max"] = 139, - ["min"] = 34, - }, - ["Flail"] = { - ["max"] = 100, - ["min"] = 19, - }, - ["Quarterstaff"] = { - ["max"] = 139, - ["min"] = 34, - }, - ["Spear"] = { - ["max"] = 100, - ["min"] = 19, - }, - ["Talisman"] = { - ["max"] = 139, - ["min"] = 34, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attacks", - ["type"] = "explicit", - }, - }, - ["860_PhysicalSpellDamageWeaponPrefix"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2768835289", - ["text"] = "#% increased Spell Physical Damage", - ["type"] = "explicit", - }, - }, - ["861_DamageWithBowSkills"] = { - ["Quiver"] = { - ["max"] = 59, - ["min"] = 11, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1241625305", - ["text"] = "#% increased Damage with Bow Skills", - ["type"] = "explicit", - }, - }, - ["862_IncreasedAccuracy"] = { - ["Amulet"] = { - ["max"] = 450, - ["min"] = 11, - }, - ["Gloves"] = { - ["max"] = 550, - ["min"] = 11, - }, - ["Helmet"] = { - ["max"] = 550, - ["min"] = 11, - }, - ["Quiver"] = { - ["max"] = 550, - ["min"] = 11, - }, - ["Ring"] = { - ["max"] = 450, - ["min"] = 11, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_803737631", - ["text"] = "# to Accuracy Rating", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["862_LightRadiusAndAccuracy"] = { - ["Helmet"] = { - ["max"] = 60, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_803737631", - ["text"] = "# to Accuracy Rating", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["863_PhysicalDamageReductionRating"] = { - ["Belt"] = { - ["max"] = 255, - ["min"] = 12, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_809229260", - ["text"] = "# to Armour", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["864_GlobalPhysicalDamageReductionRatingPercent"] = { - ["Amulet"] = { - ["max"] = 50, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "explicit", - }, - }, - ["865_EvasionRating"] = { - ["Ring"] = { - ["max"] = 203, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "# to Evasion Rating", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["866_GlobalEvasionRatingPercent"] = { - ["Amulet"] = { - ["max"] = 50, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", - ["type"] = "explicit", - }, - }, - ["867_EnergyShield"] = { - ["Amulet"] = { - ["max"] = 89, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["868_GlobalEnergyShieldPercent"] = { - ["Amulet"] = { - ["max"] = 50, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["869_IncreasedLife"] = { - ["Amulet"] = { - ["max"] = 149, - ["min"] = 10, - }, - ["Belt"] = { - ["max"] = 174, - ["min"] = 10, - }, - ["Boots"] = { - ["max"] = 149, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 214, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 149, - ["min"] = 10, - }, - ["Helmet"] = { - ["max"] = 174, - ["min"] = 10, - }, - ["Ring"] = { - ["max"] = 119, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 189, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["869_LocalIncreasedArmourAndEnergyShieldAndLife"] = { - ["Chest"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["Gloves"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["Helmet"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["869_LocalIncreasedArmourAndEvasionAndLife"] = { - ["Chest"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["Gloves"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["Helmet"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["869_LocalIncreasedArmourAndLife"] = { - ["Chest"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["Gloves"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["Helmet"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["869_LocalIncreasedEnergyShieldAndLife"] = { - ["Chest"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["Gloves"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["Helmet"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["869_LocalIncreasedEvasionAndEnergyShieldAndLife"] = { - ["Chest"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["Gloves"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["Helmet"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["869_LocalIncreasedEvasionAndLife"] = { - ["Chest"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["Gloves"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["Helmet"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["870_MaximumLifeIncreasePercent"] = { - ["Amulet"] = { - ["max"] = 8, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "explicit", - }, - }, - ["871_IncreasedMana"] = { - ["1HWeapon"] = { - ["max"] = 164, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 328, - ["min"] = 20, - }, - ["Amulet"] = { - ["max"] = 189, - ["min"] = 10, - }, - ["Belt"] = { - ["max"] = 124, - ["min"] = 10, - }, - ["Boots"] = { - ["max"] = 124, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 164, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 124, - ["min"] = 10, - }, - ["Helmet"] = { - ["max"] = 149, - ["min"] = 10, - }, - ["Ring"] = { - ["max"] = 179, - ["min"] = 10, - }, - ["Sceptre"] = { - ["max"] = 164, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 328, - ["min"] = 20, - }, - ["Wand"] = { - ["max"] = 164, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["871_LocalIncreasedArmourAndEnergyShieldAndMana"] = { - ["Helmet"] = { - ["max"] = 39, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["871_LocalIncreasedArmourAndEvasionAndMana"] = { - ["Helmet"] = { - ["max"] = 39, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["871_LocalIncreasedArmourAndMana"] = { - ["Helmet"] = { - ["max"] = 39, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["871_LocalIncreasedEnergyShieldAndMana"] = { - ["Focus"] = { - ["max"] = 39, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 39, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["871_LocalIncreasedEvasionAndEnergyShieldAndMana"] = { - ["Helmet"] = { - ["max"] = 39, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["871_LocalIncreasedEvasionAndMana"] = { - ["Helmet"] = { - ["max"] = 39, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["871_LocalIncreasedSpiritAndMana"] = { - ["1HWeapon"] = { - ["max"] = 45, - ["min"] = 17, - }, - ["Sceptre"] = { - ["max"] = 45, - ["min"] = 17, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["871_WeaponSpellDamageAndMana"] = { - ["1HWeapon"] = { - ["max"] = 45, - ["min"] = 17, - }, - ["2HWeapon"] = { - ["max"] = 90, - ["min"] = 34, - }, - ["Staff"] = { - ["max"] = 90, - ["min"] = 34, - }, - ["Wand"] = { - ["max"] = 45, - ["min"] = 17, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["871_WeaponTrapDamageAndMana"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["872_MaximumManaIncreasePercent"] = { - ["Amulet"] = { - ["max"] = 8, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "explicit", - }, - }, - ["874_BaseSpirit"] = { - ["Amulet"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["Chest"] = { - ["max"] = 61, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["875_ProjectileSpeed"] = { - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["Quiver"] = { - ["max"] = 46, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - ["type"] = "explicit", - }, - }, - ["876_BeltFlaskLifeRecoveryRate"] = { - ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_51994685", - ["text"] = "#% increased Flask Life Recovery rate", - ["type"] = "explicit", - }, - }, - ["8776_OfferingDuration"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2957407601", - ["text"] = "Offering Skills have #% increased Duration", - ["type"] = "explicit", - }, - }, - ["8777_OfferingLife"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3787460122", - ["text"] = "Offerings have #% increased Maximum Life", - ["type"] = "explicit", - }, - }, - ["877_BeltFlaskManaRecoveryRate"] = { - ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1412217137", - ["text"] = "#% increased Flask Mana Recovery rate", - ["type"] = "explicit", - }, - }, - ["878_BeltIncreasedCharmDuration"] = { - ["Belt"] = { - ["max"] = 33, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1389754388", - ["text"] = "#% increased Charm Effect Duration", - ["type"] = "explicit", - }, - }, - ["878_CharmDuration"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1389754388", - ["text"] = "#% increased Charm Effect Duration", - ["type"] = "explicit", - }, - }, - ["8799_ParryDamage"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1569159338", - ["text"] = "#% increased Parry Damage", - ["type"] = "explicit", - }, - }, - ["879_FlaskDuration"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3741323227", - ["text"] = "#% increased Flask Effect Duration", - ["type"] = "explicit", - }, - }, - ["8808_ParriedDebuffDuration"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3401186585", - ["text"] = "#% increased Parried Debuff Duration", - ["type"] = "explicit", - }, - }, - ["8809_StunThresholdDuringParry"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1495814176", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", - ["type"] = "explicit", - }, - }, - ["881_AlliesInPresenceAllDamage"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["Sceptre"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", - ["type"] = "explicit", - }, - }, - ["882_AlliesInPresenceAddedPhysicalDamage"] = { - ["1HWeapon"] = { - ["max"] = 25.5, - ["min"] = 2, - }, - ["Sceptre"] = { - ["max"] = 25.5, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1574590649", - ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", - ["type"] = "explicit", - }, - }, - ["883_AlliesInPresenceAddedFireDamage"] = { - ["1HWeapon"] = { - ["max"] = 37, - ["min"] = 2, - }, - ["Sceptre"] = { - ["max"] = 37, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_849987426", - ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", - ["type"] = "explicit", - }, - }, - ["884_AlliesInPresenceAddedColdDamage"] = { - ["1HWeapon"] = { - ["max"] = 30.5, - ["min"] = 2, - }, - ["Sceptre"] = { - ["max"] = 30.5, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2347036682", - ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", - ["type"] = "explicit", - }, - }, - ["885_AlliesInPresenceAddedLightningDamage"] = { - ["1HWeapon"] = { - ["max"] = 37.5, - ["min"] = 3, - }, - ["Sceptre"] = { - ["max"] = 37.5, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2854751904", - ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", - ["type"] = "explicit", - }, - }, - ["890_AlliesInPresenceIncreasedAccuracy"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3169585282", - ["text"] = "Allies in your Presence have # to Accuracy Rating", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["8914_PlantDamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2518900926", - ["text"] = "#% increased Damage with Plant Skills", - ["type"] = "explicit", - }, - }, - ["891_AlliesInPresenceCriticalStrikeChance"] = { - ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["Sceptre"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1250712710", - ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", - ["type"] = "explicit", - }, - }, - ["8925_PoisonEffect"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2487305362", - ["text"] = "#% increased Magnitude of Poison you inflict", - ["type"] = "explicit", - }, - }, - ["892_AlliesInPresenceCriticalStrikeMultiplier"] = { - ["1HWeapon"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["Sceptre"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3057012405", - ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", - ["type"] = "explicit", - }, - }, - ["893_AlliesInPresenceIncreasedAttackSpeed"] = { - ["1HWeapon"] = { - ["max"] = 16, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 16, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1998951374", - ["text"] = "Allies in your Presence have #% increased Attack Speed", - ["type"] = "explicit", - }, - }, - ["894_AlliesInPresenceIncreasedCastSpeed"] = { - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 20, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_289128254", - ["text"] = "Allies in your Presence have #% increased Cast Speed", - ["type"] = "explicit", - }, - }, - ["895_AlliesInPresenceAllResistances"] = { - ["1HWeapon"] = { - ["max"] = 18, - ["min"] = 3, - }, - ["Sceptre"] = { - ["max"] = 18, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3850614073", - ["text"] = "Allies in your Presence have #% to all Elemental Resistances", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["896_AlliesInPresenceLifeRegeneration"] = { - ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 1, - }, - ["Sceptre"] = { - ["max"] = 33, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4010677958", - ["text"] = "Allies in your Presence Regenerate # Life per second", - ["type"] = "explicit", - }, - }, - ["8970_ChainFromTerrain"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4081947835", - ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", - ["type"] = "explicit", - }, - }, - ["8973_ProjectileDamageIfMeleeHitRecently"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3596695232", - ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", - ["type"] = "explicit", - }, - }, - ["900_CharmGuardWhileActive"] = { - ["Charm"] = { - ["max"] = 500, - ["min"] = 44, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2676834156", - ["text"] = "Also grants # Guard", - ["type"] = "explicit", - }, - }, - ["901_CharmGainLifeOnUse"] = { - ["Charm"] = { - ["max"] = 350, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2365392475", - ["text"] = "Recover # Life when Used", - ["type"] = "explicit", - }, - }, - ["9020_QuarterstaffFreezeBuildup"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1697447343", - ["text"] = "#% increased Freeze Buildup with Quarterstaves", - ["type"] = "explicit", - }, - }, - ["9028_QuiverModifierEffect"] = { - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1200678966", - ["text"] = "#% increased bonuses gained from Equipped Quiver", - ["type"] = "explicit", - }, - }, - ["902_CharmGainManaOnUse"] = { - ["Charm"] = { - ["max"] = 300, - ["min"] = 16, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1120862500", - ["text"] = "Recover # Mana when Used", - ["type"] = "explicit", - }, - }, - ["9032_MaximumRage"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1181501418", - ["text"] = "# to Maximum Rage", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["904_FlaskIncreasedRecoveryOnLowMana"] = { - ["ManaFlask"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3276224428", - ["text"] = "#% more Recovery if used while on Low Mana", - ["type"] = "explicit", - }, - }, - ["905_FlaskFullInstantRecovery"] = { - ["LifeFlask"] = { - ["max"] = -50, - ["min"] = -50, - }, - ["ManaFlask"] = { - ["max"] = -50, - ["min"] = -50, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", - }, - }, - ["905_FlaskIncreasedRecoveryAmount"] = { - ["LifeFlask"] = { - ["max"] = 80, - ["min"] = 41, - }, - ["ManaFlask"] = { - ["max"] = 80, - ["min"] = 41, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", - }, - }, - ["906_FlaskIncreasedRecoveryOnLowLife"] = { - ["LifeFlask"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_886931978", - ["text"] = "#% more Recovery if used while on Low Life", - ["type"] = "explicit", - }, - }, - ["908_FlaskExtraLifeCostsMana"] = { - ["LifeFlask"] = { - ["max"] = 100, - ["min"] = 61, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1261982764", - ["text"] = "#% increased Life Recovered", - ["type"] = "explicit", - }, - }, - ["909_FlaskExtraManaCostsLife"] = { - ["ManaFlask"] = { - ["max"] = 100, - ["min"] = 61, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1811130680", - ["text"] = "#% increased Mana Recovered", - ["type"] = "explicit", - }, - }, - ["910_FlaskHealsMinions"] = { - ["LifeFlask"] = { - ["max"] = 80, - ["min"] = 51, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2416869319", - ["text"] = "Grants #% of Life Recovery to Minions", - ["type"] = "explicit", - }, - }, - ["911_FlaskFullInstantRecovery"] = { - ["LifeFlask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["ManaFlask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1526933524", - ["text"] = "Instant Recovery", - ["type"] = "explicit", - }, - }, - ["912_FlaskPartialInstantRecovery"] = { - ["LifeFlask"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["ManaFlask"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2503377690", - ["text"] = "#% of Recovery applied Instantly", - ["type"] = "explicit", - }, - }, - ["913_FlaskIncreasedRecoverySpeed"] = { - ["LifeFlask"] = { - ["max"] = 70, - ["min"] = 41, - }, - ["ManaFlask"] = { - ["max"] = 70, - ["min"] = 41, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_173226756", - ["text"] = "#% increased Recovery rate", - ["type"] = "explicit", - }, - }, - ["9149_CrossbowReloadSpeed"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3192728503", - ["text"] = "#% increased Crossbow Reload Speed", - ["type"] = "explicit", - }, - }, - ["914_FlaskExtraLifeCostsMana"] = { - ["LifeFlask"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_648019518", - ["text"] = "Removes #% of Life Recovered from Mana when used", - ["type"] = "explicit", - }, - }, - ["915_FlaskExtraManaCostsLife"] = { - ["ManaFlask"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_959641748", - ["text"] = "Removes #% of Mana Recovered from Life when used", - ["type"] = "explicit", - }, - }, - ["916_ItemFoundRarityIncrease"] = { - ["Amulet"] = { - ["max"] = 18, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 18, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 18, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 18, - ["min"] = 6, - }, - ["Ring"] = { - ["max"] = 18, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "explicit", - }, - }, - ["916_ItemFoundRarityIncreasePrefix"] = { - ["Amulet"] = { - ["max"] = 19, - ["min"] = 8, - }, - ["Helmet"] = { - ["max"] = 19, - ["min"] = 8, - }, - ["Ring"] = { - ["max"] = 19, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "explicit", - }, - }, - ["917_LocalBaseCriticalStrikeChance"] = { - ["1HMace"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["2HMace"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["Bow"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["Crossbow"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["Flail"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["Talisman"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_518292764", - ["text"] = "#% to Critical Hit Chance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["918_LocalCriticalStrikeMultiplier"] = { - ["1HMace"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["2HMace"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Bow"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Crossbow"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Flail"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Quarterstaff"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Spear"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Talisman"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["919_LocalIncreasedAttackSpeed"] = { - ["1HMace"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 19, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 19, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "explicit", - }, - }, - ["9209_ReducedBleedDuration"] = { - ["Chest"] = { - ["max"] = -36, - ["min"] = -60, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1692879867", - ["text"] = "#% increased Duration of Bleeding on You", - ["type"] = "explicit", - }, - }, - ["921_LocalAttributeRequirements"] = { - ["1HMace"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["1HWeapon"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["2HMace"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["2HWeapon"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Boots"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Bow"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Chest"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Crossbow"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Flail"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Focus"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Gloves"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Helmet"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Quarterstaff"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Sceptre"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Shield"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Spear"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Staff"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Talisman"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Wand"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3639275092", - ["text"] = "#% increased Attribute Requirements", - ["type"] = "explicit", - }, - }, - ["922_EssenceSpellSkillLevel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_124131830", - ["text"] = "# to Level of all Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["922_GlobalIncreaseSpellSkillGemLevel"] = { - ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["Focus"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_124131830", - ["text"] = "# to Level of all Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["922_GlobalIncreaseSpellSkillGemLevelWeapon"] = { - ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 6, - ["min"] = 2, - }, - ["Staff"] = { - ["max"] = 6, - ["min"] = 2, - }, - ["Wand"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_124131830", - ["text"] = "# to Level of all Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["9241_ShieldArmourIncrease"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 8, - }, - ["RadiusJewel"] = { - ["max"] = 15, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_713216632", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Defences from Equipped Shield", - ["type"] = "explicit", - }, - }, - ["9248_ShockEffect"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1166140625", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", - ["type"] = "explicit", - }, - }, - ["924_GlobalIncreaseFireSpellSkillGemLevel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_591105508", - ["text"] = "# to Level of all Fire Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["924_GlobalIncreaseFireSpellSkillGemLevelWeapon"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_591105508", - ["text"] = "# to Level of all Fire Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["925_GlobalIncreaseColdSpellSkillGemLevel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2254480358", - ["text"] = "# to Level of all Cold Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["925_GlobalIncreaseColdSpellSkillGemLevelWeapon"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2254480358", - ["text"] = "# to Level of all Cold Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["926_GlobalIncreaseLightningSpellSkillGemLevel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1545858329", - ["text"] = "# to Level of all Lightning Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["926_GlobalIncreaseLightningSpellSkillGemLevelWeapon"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1545858329", - ["text"] = "# to Level of all Lightning Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["927_GlobalIncreaseChaosSpellSkillGemLevel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4226189338", - ["text"] = "# to Level of all Chaos Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["927_GlobalIncreaseChaosSpellSkillGemLevelWeapon"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4226189338", - ["text"] = "# to Level of all Chaos Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["928_GlobalIncreaseMeleeSkillGemLevel"] = { - ["1HMace"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["Flail"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["Gloves"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_9187492", - ["text"] = "# to Level of all Melee Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["928_GlobalIncreaseMeleeSkillGemLevelWeapon"] = { - ["2HMace"] = { - ["max"] = 7, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 7, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 7, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_9187492", - ["text"] = "# to Level of all Melee Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["929_EssenceAttackSkillLevel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3035140377", - ["text"] = "# to Level of all Attack Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["930_GlobalIncreaseProjectileSkillGemLevel"] = { - ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["Quiver"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1202301673", - ["text"] = "# to Level of all Projectile Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["930_GlobalIncreaseProjectileSkillGemLevelWeapon"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["Crossbow"] = { - ["max"] = 7, - ["min"] = 2, - }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1202301673", - ["text"] = "# to Level of all Projectile Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["9317_ShapeshiftSkillSpeedForJewel"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3579898587", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", - ["type"] = "explicit", - }, - }, - ["931_GlobalIncreaseMinionSpellSkillGemLevel"] = { - ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["Helmet"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2162097452", - ["text"] = "# to Level of all Minion Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["931_GlobalIncreaseMinionSpellSkillGemLevelWeapon"] = { - ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["Sceptre"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2162097452", - ["text"] = "# to Level of all Minion Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["933_CriticalStrikeChance"] = { - ["Amulet"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 34, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Critical Hit Chance", - ["type"] = "explicit", - }, - }, - ["934_AttackCriticalStrikeChance"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["Quiver"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2194114101", - ["text"] = "#% increased Critical Hit Chance for Attacks", - ["type"] = "explicit", - }, - }, - ["935_SpellCriticalStrikeChance"] = { - ["1HWeapon"] = { - ["max"] = 73, - ["min"] = 27, - }, - ["2HWeapon"] = { - ["max"] = 109, - ["min"] = 40, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 59, - ["min"] = 27, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["Staff"] = { - ["max"] = 109, - ["min"] = 40, - }, - ["Wand"] = { - ["max"] = 73, - ["min"] = 27, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", - ["type"] = "explicit", - }, - }, - ["937_CriticalStrikeMultiplier"] = { - ["Amulet"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 34, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3556824919", - ["text"] = "#% increased Critical Damage Bonus", - ["type"] = "explicit", - }, - }, - ["938_AttackCriticalStrikeMultiplier"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Quiver"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3714003708", - ["text"] = "#% increased Critical Damage Bonus for Attack Damage", - ["type"] = "explicit", - }, - }, - ["939_SpellCritMultiplierForJewel"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2466785537", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", - ["type"] = "explicit", - }, - }, - ["939_SpellCriticalStrikeMultiplier"] = { - ["1HWeapon"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 59, - ["min"] = 15, - }, - ["Focus"] = { - ["max"] = 34, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 59, - ["min"] = 15, - }, - ["Wand"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_274716455", - ["text"] = "#% increased Critical Spell Damage Bonus", - ["type"] = "explicit", - }, - }, - ["941_IncreasedAttackSpeed"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["Gloves"] = { - ["max"] = 16, - ["min"] = 5, - }, - ["Quiver"] = { - ["max"] = 16, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "explicit", - }, - }, - ["942_IncreasedCastSpeed"] = { - ["1HWeapon"] = { - ["max"] = 35, - ["min"] = 9, - }, - ["2HWeapon"] = { - ["max"] = 52, - ["min"] = 14, - }, - ["Amulet"] = { - ["max"] = 28, - ["min"] = 9, - }, - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["Focus"] = { - ["max"] = 32, - ["min"] = 9, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Ring"] = { - ["max"] = 24, - ["min"] = 9, - }, - ["Staff"] = { - ["max"] = 52, - ["min"] = 14, - }, - ["Wand"] = { - ["max"] = 35, - ["min"] = 9, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "explicit", - }, - }, - ["943_AdditionalAmmo"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1967051901", - ["text"] = "Loads an additional bolt", - ["type"] = "explicit", - }, - }, - ["944_AdditionalCharm"] = { - ["specialCaseData"] = { - ["overrideModLinePlural"] = "+# Charm Slots", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2582079000", - ["text"] = "# Charm Slot", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["945_AdditionalArrows"] = { - ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", - ["type"] = "explicit", - }, - }, - ["946_AllAttributes"] = { - ["Amulet"] = { - ["max"] = 24, - ["min"] = 2, - }, - ["Ring"] = { - ["max"] = 13, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1379411836", - ["text"] = "# to all Attributes", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["947_Strength"] = { - ["1HMace"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Amulet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Belt"] = { - ["max"] = 36, - ["min"] = 5, - }, - ["Boots"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Gloves"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Ring"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Shield"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["948_Dexterity"] = { - ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Amulet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Boots"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Gloves"] = { - ["max"] = 36, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Quiver"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Ring"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Shield"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["949_Intelligence"] = { - ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Amulet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Boots"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Gloves"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 36, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Ring"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Shield"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Staff"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Wand"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["950_EssenceReducedCriticalDamageAgainstYou"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", - ["type"] = "explicit", - }, - }, - ["950_ReducedExtraDamageFromCrits"] = { - ["Shield"] = { - ["max"] = 54, - ["min"] = 21, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", - ["type"] = "explicit", - }, - }, - ["951_ReducedPhysicalDamageTaken"] = { - ["Shield"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", - ["type"] = "explicit", - }, - }, - ["952_MaximumElementalResistance"] = { - ["Shield"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["9531_StunThresholdfromEnergyShield"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1653682082", - ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["9533_IncreasedStunThresholdIfNoRecentStun"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_654207792", - ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", - ["type"] = "explicit", - }, - }, - ["953_MaximumFireResist"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["954_MaximumColdResist"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3676141501", - ["text"] = "#% to Maximum Cold Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["955_MaximumLightningResistance"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["956_MaximumChaosResistance"] = { - ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1301765461", - ["text"] = "#% to Maximum Chaos Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["957_AllResistances"] = { - ["Amulet"] = { - ["max"] = 18, - ["min"] = 3, - }, - ["Ring"] = { - ["max"] = 16, - ["min"] = 3, - }, - ["Shield"] = { - ["max"] = 18, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["958_FireResistance"] = { - ["Amulet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Belt"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Ring"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["959_ColdResistance"] = { - ["Amulet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Belt"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Ring"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["960_LightningResistance"] = { - ["Amulet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Belt"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Ring"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["961_ChaosResistance"] = { - ["Amulet"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Belt"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Boots"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Chest"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Focus"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Gloves"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Helmet"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Ring"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Shield"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["962_MinionLife"] = { - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 21, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Sceptre"] = { - ["max"] = 50, - ["min"] = 21, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "explicit", - }, - }, - ["963_ArmourAppliesToElementalDamage"] = { - ["Boots"] = { - ["max"] = 43, - ["min"] = 14, - }, - ["Chest"] = { - ["max"] = 50, - ["min"] = 14, - }, - ["Gloves"] = { - ["max"] = 43, - ["min"] = 14, - }, - ["Helmet"] = { - ["max"] = 43, - ["min"] = 14, - }, - ["Shield"] = { - ["max"] = 50, - ["min"] = 14, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3362812763", - ["text"] = "#% of Armour also applies to Elemental Damage", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["9646_ThornsDamageIncrease"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1320662475", - ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", - ["type"] = "explicit", - }, - }, - ["964_EvasionAppliesToDeflection"] = { - ["Boots"] = { - ["max"] = 23, - ["min"] = 8, - }, - ["Chest"] = { - ["max"] = 26, - ["min"] = 8, - }, - ["Gloves"] = { - ["max"] = 23, - ["min"] = 8, - }, - ["Helmet"] = { - ["max"] = 23, - ["min"] = 8, - }, - ["Shield"] = { - ["max"] = 26, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3033371881", - ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", - ["type"] = "explicit", - }, - }, - ["9653_ThornsPhysicalDamage"] = { - ["Belt"] = { - ["max"] = 185.5, - ["min"] = 2, - }, - ["Chest"] = { - ["max"] = 185.5, - ["min"] = 2, - }, - ["Shield"] = { - ["max"] = 185.5, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2881298780", - ["text"] = "# to # Physical Thorns damage", - ["type"] = "explicit", - }, - }, - ["966_EnergyShieldRegeneration"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Boots"] = { - ["max"] = 45, - ["min"] = 26, - }, - ["Focus"] = { - ["max"] = 55, - ["min"] = 26, - }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 26, - }, - ["Helmet"] = { - ["max"] = 45, - ["min"] = 26, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["Shield"] = { - ["max"] = 55, - ["min"] = 26, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", - ["type"] = "explicit", - }, - }, - ["967_EnergyShieldDelay"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 55, - ["min"] = 26, - }, - ["Focus"] = { - ["max"] = 55, - ["min"] = 26, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", - ["type"] = "explicit", - }, - }, - ["968_LifeRegeneration"] = { - ["Amulet"] = { - ["max"] = 33, - ["min"] = 1, - }, - ["Belt"] = { - ["max"] = 29, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 23, - ["min"] = 1, - }, - ["Chest"] = { - ["max"] = 36, - ["min"] = 1, - }, - ["Helmet"] = { - ["max"] = 23, - ["min"] = 1, - }, - ["Ring"] = { - ["max"] = 18, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3325883026", - ["text"] = "# Life Regeneration per second", - ["type"] = "explicit", - }, - }, - ["969_LifeRegenerationRate"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", - ["type"] = "explicit", - }, - }, - ["970_DamageTakenGainedAsLife"] = { - ["Amulet"] = { - ["max"] = 24, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "explicit", - }, - }, - ["970_LifeRecoupForJewel"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "explicit", - }, - }, - ["9712_DamageWithTriggeredSpells"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_473917671", - ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["971_LifeLeechPermyriad"] = { - ["Gloves"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["Ring"] = { - ["max"] = 7.9, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2557965901", - ["text"] = "Leech #% of Physical Attack Damage as Life", - ["type"] = "explicit", - }, - }, - ["972_LifeLeechLocalPermyriad"] = { - ["1HMace"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_55876295", - ["text"] = "Leeches #% of Physical Damage as Life", - ["type"] = "explicit", - }, - }, - ["973_LifeGainPerTarget"] = { - ["Gloves"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", - ["type"] = "explicit", - }, - }, - ["974_LifeGainPerTargetLocal"] = { - ["1HMace"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Flail"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_821021828", - ["text"] = "Grants # Life per Enemy Hit", - ["type"] = "explicit", - }, - }, - ["975_LifeGainedFromEnemyDeath"] = { - ["1HMace"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["1HWeapon"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["2HMace"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["2HWeapon"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Bow"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Crossbow"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Flail"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Gloves"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Quarterstaff"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Quiver"] = { - ["max"] = 53, - ["min"] = 4, - }, - ["Ring"] = { - ["max"] = 53, - ["min"] = 4, - }, - ["Spear"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Staff"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Talisman"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Wand"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", - ["type"] = "explicit", - }, - }, - ["976_LightRadiusAndManaRegeneration"] = { - ["1HWeapon"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["2HWeapon"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["Ring"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["Sceptre"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["Staff"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["Wand"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "explicit", - }, - }, - ["976_ManaRegeneration"] = { - ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 104, - ["min"] = 15, - }, - ["Amulet"] = { - ["max"] = 69, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 69, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Ring"] = { - ["max"] = 69, - ["min"] = 10, - }, - ["Sceptre"] = { - ["max"] = 69, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 104, - ["min"] = 15, - }, - ["Wand"] = { - ["max"] = 69, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "explicit", - }, - }, - ["977_PercentDamageGoesToMana"] = { - ["Amulet"] = { - ["max"] = 24, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", - ["type"] = "explicit", - }, - }, - ["978_ManaLeechLocalPermyriad"] = { - ["1HMace"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["1HWeapon"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["2HMace"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["2HWeapon"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["Bow"] = { - ["max"] = 7.9, - ["min"] = 4, - }, - ["Crossbow"] = { - ["max"] = 7.9, - ["min"] = 4, - }, - ["Flail"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["Quarterstaff"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["Spear"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["Talisman"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_669069897", - ["text"] = "Leeches #% of Physical Damage as Mana", - ["type"] = "explicit", - }, - }, - ["979_ManaLeechPermyriad"] = { - ["Gloves"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["Ring"] = { - ["max"] = 6.9, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_707457662", - ["text"] = "Leech #% of Physical Attack Damage as Mana", - ["type"] = "explicit", - }, - }, - ["980_ManaGainedFromEnemyDeath"] = { - ["1HMace"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Flail"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Quiver"] = { - ["max"] = 27, - ["min"] = 2, - }, - ["Ring"] = { - ["max"] = 27, - ["min"] = 2, - }, - ["Spear"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Staff"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Wand"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", - ["type"] = "explicit", - }, - }, - ["982_BeltReducedFlaskChargesUsed"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", - ["type"] = "explicit", - }, - }, - ["984_StunDamageIncrease"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4173554949", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", - ["type"] = "explicit", - }, - }, - ["985_LocalStunDamageIncrease"] = { - ["1HMace"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["2HMace"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["Flail"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["Quarterstaff"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["Spear"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["Talisman"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", - ["type"] = "explicit", - }, - }, - ["9860_VolatilityOnKillChance"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4225700219", - ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", - ["type"] = "explicit", - }, - }, - ["987_LocalStunDuration"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["2HMace"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["Flail"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["Spear"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["Talisman"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_748522257", - ["text"] = "#% increased Stun Duration", - ["type"] = "explicit", - }, - }, - ["9883_WarcryEffect"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2675129731", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", - ["type"] = "explicit", - }, - }, - ["9886_WarcryDamage"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1160637284", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", - ["type"] = "explicit", - }, - }, - ["988_IgniteChanceIncrease"] = { - ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["Staff"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["Wand"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", - ["type"] = "explicit", - }, - }, - ["9897_WeaponSwapSpeed"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1129429646", - ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", - ["type"] = "explicit", - }, - }, - ["990_FreezeDamageIncrease"] = { - ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 31, - }, - ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 31, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["Staff"] = { - ["max"] = 80, - ["min"] = 31, - }, - ["Wand"] = { - ["max"] = 80, - ["min"] = 31, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_473429811", - ["text"] = "#% increased Freeze Buildup", - ["type"] = "explicit", - }, - }, - ["9915_WitheredEffect"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3936121440", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", - ["type"] = "explicit", - }, - }, - ["992_ShockChanceIncrease"] = { - ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["Staff"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["Wand"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_293638271", - ["text"] = "#% increased chance to Shock", - ["type"] = "explicit", - }, - }, - ["994_LocalArmourAndEnergyShieldAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 136, - ["min"] = 8, - }, - ["Shield"] = { - ["max"] = 136, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_915769802", - ["text"] = "# to Stun Threshold", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["994_LocalArmourAndEvasionAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 136, - ["min"] = 8, - }, - ["Shield"] = { - ["max"] = 136, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_915769802", - ["text"] = "# to Stun Threshold", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["994_LocalArmourAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 136, - ["min"] = 8, - }, - ["Shield"] = { - ["max"] = 136, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_915769802", - ["text"] = "# to Stun Threshold", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["994_LocalEnergyShieldAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 136, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_915769802", - ["text"] = "# to Stun Threshold", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["994_LocalEvasionAndEnergyShieldAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 136, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_915769802", - ["text"] = "# to Stun Threshold", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["994_LocalEvasionAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 136, - ["min"] = 8, - }, - ["Shield"] = { - ["max"] = 136, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_915769802", - ["text"] = "# to Stun Threshold", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["994_StunThreshold"] = { - ["Belt"] = { - ["max"] = 304, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 352, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 304, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 304, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_915769802", - ["text"] = "# to Stun Threshold", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["996_ReducedBurnDuration"] = { - ["Chest"] = { - ["max"] = 60, - ["min"] = 36, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", - ["type"] = "explicit", - }, - }, - ["997_ReducedChillDuration"] = { - ["Boots"] = { - ["max"] = 60, - ["min"] = 36, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1874553720", - ["text"] = "#% reduced Chill Duration on you", - ["type"] = "explicit", - }, - }, - ["998_ReducedFreezeDuration"] = { - ["Boots"] = { - ["max"] = 60, - ["min"] = 36, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", - ["type"] = "explicit", - }, - }, - ["999_ReducedShockDuration"] = { - ["Boots"] = { - ["max"] = 60, - ["min"] = 36, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_99927264", - ["text"] = "#% reduced Shock duration on you", - ["type"] = "explicit", - }, - }, - }, - ["Implicit"] = { - ["implicit.stat_1028592286"] = { - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Bow"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1028592286", - ["text"] = "#% chance to Chain an additional time", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1050105434"] = { - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_1137147997"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Flail"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1137147997", - ["text"] = "Unblockable", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1181501418"] = { - ["2HWeapon"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["Talisman"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1181501418", - ["text"] = "# to Maximum Rage", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_1207554355"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1207554355", - ["text"] = "#% increased Arrow Speed", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1379411836"] = { - ["Amulet"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 24, - ["min"] = 16, - }, - ["Ring"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1379411836", - ["text"] = "# to all Attributes", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_1389754388"] = { - ["Belt"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1389754388", - ["text"] = "#% increased Charm Effect Duration", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1412682799"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1412682799", - ["text"] = "Used when you become Poisoned", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1416292992"] = { - ["Belt"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["specialCaseData"] = { - ["overrideModLinePlural"] = "+# Charm Slots", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1416292992", - ["text"] = "Has # Charm Slot", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1434716233"] = { - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1434716233", - ["text"] = "Warcries Empower an additional Attack", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1444556985"] = { - ["Chest"] = { - ["max"] = 14, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1451444093"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Flail"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1451444093", - ["text"] = "Bifurcates Critical Hits", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1503146834"] = { - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1503146834", - ["text"] = "Crushes Enemies on Hit", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1541903247"] = { - ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1541903247", - ["text"] = "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1570770415"] = { - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1570770415", - ["text"] = "#% reduced Charm Charges used", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1573130764"] = { - ["Quiver"] = { - ["max"] = 4, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1573130764", - ["text"] = "Adds # to # Fire damage to Attacks", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1589917703"] = { - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["Talisman"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1671376347"] = { - ["Chest"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_1691862754"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1691862754", - ["text"] = "Used when you become Frozen", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1702195217"] = { - ["2HWeapon"] = { - ["max"] = 18, - ["min"] = 10, - }, - ["Quarterstaff"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["Talisman"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1702195217", - ["text"] = "#% to Block chance", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_1745952865"] = { - ["Chest"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1745952865", - ["text"] = "#% reduced Elemental Ailment Duration on you", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1782086450"] = { - ["Chest"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1803308202"] = { - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Crossbow"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1803308202", - ["text"] = "#% increased Bolt Speed", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1810482573"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1810482573", - ["text"] = "Used when you become Stunned", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1836676211"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1836676211", - ["text"] = "#% increased Flask Charges gained", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1967051901"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1967051901", - ["text"] = "Loads an additional bolt", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1978899297"] = { - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_1980802737"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1980802737", - ["text"] = "Grenade Skills Fire an additional Projectile", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2016937536"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2016937536", - ["text"] = "Used when you take Lightning damage from a Hit", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2055966527"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2055966527", - ["text"] = "Attacks have #% chance to cause Bleeding", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2194114101"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2194114101", - ["text"] = "#% increased Critical Hit Chance for Attacks", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2222186378"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2222186378", - ["text"] = "#% increased Mana Recovery from Flasks", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2250533757"] = { - ["Chest"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2251279027"] = { - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2251279027", - ["text"] = "# to Level of all Corrupted Skill Gems", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_2321178454"] = { - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Crossbow"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Quiver"] = { - ["max"] = 100, - ["min"] = 100, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2321178454", - ["text"] = "#% chance to Pierce an Enemy", - ["type"] = "implicit", - }, - }, - ["implicit.stat_239367161"] = { - ["Quiver"] = { - ["max"] = 40, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_239367161", - ["text"] = "#% increased Stun Buildup", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2463230181"] = { - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Bow"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2463230181", - ["text"] = "#% Surpassing chance to fire an additional Arrow", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_2527686725"] = { - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Talisman"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2527686725", - ["text"] = "#% increased Magnitude of Shock you inflict", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2646093132"] = { - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2646093132", - ["text"] = "Inflict Abyssal Wasting on Hit", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2694482655"] = { - ["1HMace"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_275498888"] = { - ["Ring"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_275498888", - ["text"] = "Maximum Quality is #%", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2763429652"] = { - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Spear"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2763429652", - ["text"] = "#% chance to Maim on Hit", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2778646494"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2778646494", - ["text"] = "Used when you are affected by a Slow", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2797971005"] = { - ["Quiver"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2891184298"] = { - ["Ring"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2901986750"] = { - ["Amulet"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["Boots"] = { - ["max"] = 16, - ["min"] = 8, - }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 16, - ["min"] = 8, - }, - ["Ring"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_2923486259"] = { - ["Chest"] = { - ["max"] = 13, - ["min"] = 7, - }, - ["Ring"] = { - ["max"] = 13, - ["min"] = 7, - }, - ["Shield"] = { - ["max"] = 19, - ["min"] = 11, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_2968503605"] = { - ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 50, - }, - ["Talisman"] = { - ["max"] = 80, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2994271459"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2994271459", - ["text"] = "Used when you take Cold damage from a Hit", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3032590688"] = { - ["Quiver"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Ring"] = { - ["max"] = 2.5, - ["min"] = 2.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3182714256"] = { - ["Amulet"] = { - ["max"] = 1, - ["min"] = -1, - }, - ["Ring"] = { - ["max"] = 1, - ["min"] = -1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3182714256", - ["text"] = "# Prefix Modifier allowed", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_3261801346"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_328541901"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_3299347043"] = { - ["Amulet"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["Chest"] = { - ["max"] = 80, - ["min"] = 60, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_3310778564"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3310778564", - ["text"] = "Used when you take Chaos damage from a Hit", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3325883026"] = { - ["Amulet"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3325883026", - ["text"] = "# Life Regeneration per second", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3362812763"] = { - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3362812763", - ["text"] = "#% of Armour also applies to Elemental Damage", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_3372524247"] = { - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_3398402065"] = { - ["2HWeapon"] = { - ["max"] = -50, - ["min"] = -50, - }, - ["Bow"] = { - ["max"] = -50, - ["min"] = -50, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3398402065", - ["text"] = "#% increased Projectile Range", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3489782002"] = { - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_3544800472"] = { - ["Chest"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3544800472", - ["text"] = "#% increased Elemental Ailment Threshold", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3552135623"] = { - ["1HWeapon"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["Spear"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3552135623", - ["text"] = "Prevent #% of Damage from Deflected Hits", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_3585532255"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3675300253"] = { - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3675300253", - ["text"] = "Strikes deal Splash Damage", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3676540188"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3676540188", - ["text"] = "Used when you start Bleeding", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3699444296"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3699444296", - ["text"] = "Used when you become Shocked", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3828375170"] = { - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3828375170", - ["text"] = "Bleeding you inflict deals Damage #% faster", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3854901951"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3854901951", - ["text"] = "Used when you take Fire damage from a Hit", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3855016469"] = { - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3917489142"] = { - ["Amulet"] = { - ["max"] = 20, - ["min"] = 12, - }, - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3954735777"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3954735777", - ["text"] = "#% chance to Poison on Hit with Attacks", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3981240776"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_4010341289"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4010341289", - ["text"] = "Used when you kill a Rare or Unique enemy", - ["type"] = "implicit", - }, - }, - ["implicit.stat_4080418644"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_4126210832"] = { - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4126210832", - ["text"] = "Always Hits", - ["type"] = "implicit", - }, - }, - ["implicit.stat_4220027924"] = { - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_458438597"] = { - ["Chest"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", - ["type"] = "implicit", - }, - }, - ["implicit.stat_462041840"] = { - ["Belt"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_462041840", - ["text"] = "#% of Flask Recovery applied Instantly", - ["type"] = "implicit", - }, - }, - ["implicit.stat_535217483"] = { - ["1HWeapon"] = { - ["max"] = 35, - ["min"] = 25, - }, - ["Spear"] = { - ["max"] = 35, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_535217483", - ["text"] = "#% increased Projectile Speed with this Weapon", - ["type"] = "implicit", - }, - }, - ["implicit.stat_548198834"] = { - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 16, - ["min"] = 16, - }, - ["Quarterstaff"] = { - ["max"] = 16, - ["min"] = 16, - }, - ["Spear"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_548198834", - ["text"] = "#% increased Melee Strike Range with this weapon", - ["type"] = "implicit", - }, - }, - ["implicit.stat_585126960"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_585126960", - ["text"] = "Used when you become Ignited", - ["type"] = "implicit", - }, - }, - ["implicit.stat_624954515"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_624954515", - ["text"] = "#% increased Accuracy Rating", - ["type"] = "implicit", - }, - }, - ["implicit.stat_644456512"] = { - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", - ["type"] = "implicit", - }, - }, - ["implicit.stat_680068163"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Chest"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", - ["type"] = "implicit", - }, - }, - ["implicit.stat_681332047"] = { - ["Quiver"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "implicit", - }, - }, - ["implicit.stat_718638445"] = { - ["Amulet"] = { - ["max"] = 1, - ["min"] = -1, - }, - ["Ring"] = { - ["max"] = 1, - ["min"] = -1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_718638445", - ["text"] = "# Suffix Modifier allowed", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_731781020"] = { - ["Belt"] = { - ["max"] = 0.17, - ["min"] = 0.17, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_731781020", - ["text"] = "Flasks gain # charges per Second", - ["type"] = "implicit", - }, - }, - ["implicit.stat_789117908"] = { - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Chest"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "implicit", - }, - }, - ["implicit.stat_791928121"] = { - ["2HMace"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", - ["type"] = "implicit", - }, - }, - ["implicit.stat_803737631"] = { - ["Ring"] = { - ["max"] = 160, - ["min"] = 120, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_803737631", - ["text"] = "# to Accuracy Rating", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_809229260"] = { - ["Belt"] = { - ["max"] = 140, - ["min"] = 100, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_809229260", - ["text"] = "# to Armour", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_821241191"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", - ["type"] = "implicit", - }, - }, - ["implicit.stat_836936635"] = { - ["Chest"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_836936635", - ["text"] = "Regenerate #% of maximum Life per second", - ["type"] = "implicit", - }, - }, - ["implicit.stat_924253255"] = { - ["Chest"] = { - ["max"] = -20, - ["min"] = -30, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", - ["type"] = "implicit", - }, - }, - ["implicit.stat_958696139"] = { - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_958696139", - ["text"] = "Grants 1 additional Skill Slot", - ["type"] = "implicit", - }, - }, - }, - ["Rune"] = { - ["1002"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", - ["type"] = "augment", - }, - }, - ["1009"] = { - ["1HMace"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["2HMace"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Bow"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Claw"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Crossbow"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Flail"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Quarterstaff"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Spear"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Staff"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Talisman"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Wand"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1857162058", - ["text"] = "Bonded: #% increased Ignite Magnitude", - ["type"] = "augment", - }, - }, - ["1227"] = { - ["1HMace"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["1HWeapon"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["2HMace"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["2HWeapon"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["Bow"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["Claw"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["Crossbow"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["Flail"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["Quarterstaff"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["Spear"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["Talisman"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", - ["type"] = "augment", - }, - }, - ["1268"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_624954515", - ["text"] = "#% increased Accuracy Rating", - ["type"] = "augment", - }, - }, - ["1397"] = { - ["Helmet"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3666934677", - ["text"] = "#% increased Experience gain", - ["type"] = "augment", - }, - }, - ["1437"] = { - ["1HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Claw"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Flail"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Spear"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2023107756", - ["text"] = "Recover #% of maximum Life on Kill", - ["type"] = "augment", - }, - }, - ["1439"] = { - ["1HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Claw"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Flail"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Spear"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1030153674", - ["text"] = "Recover #% of maximum Mana on Kill", - ["type"] = "augment", - }, - }, - ["1466"] = { - ["Boots"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3824372849", - ["text"] = "#% increased Curse Duration", - ["type"] = "augment", - }, - }, - ["1481"] = { - ["Boots"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_649025131", - ["text"] = "#% increased Movement Speed when on Low Life", - ["type"] = "augment", - }, - }, - ["1544"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2546200564", - ["text"] = "Bonded: #% increased Duration of Elemental Ailments on Enemies", - ["type"] = "augment", - }, - }, - ["1557"] = { - ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "augment", - }, - }, - ["1572"] = { - ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "augment", - }, - }, - ["1601"] = { - ["1HMace"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["2HMace"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["2HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Bow"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Claw"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Crossbow"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Flail"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Quarterstaff"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Spear"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Staff"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Talisman"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Wand"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_635535560", - ["text"] = "Bonded: Gain #% of Damage as Extra Physical Damage", - ["type"] = "augment", - }, - }, - ["1602"] = { - ["1HMace"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["1HWeapon"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["2HMace"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["2HWeapon"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Bow"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Claw"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Crossbow"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Flail"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Quarterstaff"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Spear"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Staff"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Talisman"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Wand"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3398787959", - ["text"] = "Gain #% of Damage as Extra Chaos Damage", - ["type"] = "augment", - }, - }, - ["1614"] = { - ["1HMace"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["1HWeapon"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["2HMace"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["2HWeapon"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Bow"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Claw"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Crossbow"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Flail"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Quarterstaff"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Spear"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Talisman"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1922668512", - ["text"] = "Bonded: Gain #% of Elemental Damage as Extra Chaos Damage", - ["type"] = "augment", - }, - }, - ["1617"] = { - ["1HMace"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, - ["1HWeapon"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, - ["2HMace"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, - ["2HWeapon"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, - ["Boots"] = { - ["max"] = 0.35, - ["min"] = 0.25, - }, - ["Bow"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, - ["Chest"] = { - ["max"] = 1.5, - ["min"] = 0.25, - }, - ["Claw"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, - ["Crossbow"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, - ["Flail"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, - ["Focus"] = { - ["max"] = 0.35, - ["min"] = 0.25, - }, - ["Gloves"] = { - ["max"] = 0.35, - ["min"] = 0.25, - }, - ["Helmet"] = { - ["max"] = 0.35, - ["min"] = 0.25, - }, - ["Quarterstaff"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, - ["Shield"] = { - ["max"] = 0.35, - ["min"] = 0.25, - }, - ["Spear"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, - ["Talisman"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_836936635", - ["text"] = "Regenerate #% of maximum Life per second", - ["type"] = "augment", - }, - }, - ["1646"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Crossbow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Talisman"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1728593484", - ["text"] = "Bonded: Minions deal #% increased Damage", - ["type"] = "augment", - }, - }, - ["1835"] = { - ["Chest"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3407849389", - ["text"] = "#% reduced effect of Curses on you", - ["type"] = "augment", - }, - }, - ["1875"] = { - ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3854332662", - ["text"] = "Bonded: #% increased Area of Effect of Curses", - ["type"] = "augment", - }, - }, - ["2153"] = { - ["1HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["2HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Bow"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Claw"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Flail"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Spear"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Talisman"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "augment", - }, - }, - ["2266"] = { - ["Chest"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_217649179", - ["text"] = "Bonded: #% increased Curse Magnitudes", - ["type"] = "augment", - }, - }, - ["2362"] = { - ["Chest"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", - ["type"] = "augment", - }, - }, - ["2558"] = { - ["Boots"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Helmet"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_901007505", - ["text"] = "Bonded: Minions have #% to all Elemental Resistances", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["2649"] = { - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3449499156", - ["text"] = "Bonded: Minions have #% increased Area of Effect", - ["type"] = "augment", - }, - }, - ["2786"] = { - ["1HMace"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["1HWeapon"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["2HMace"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["2HWeapon"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["Boots"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Bow"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["Claw"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["Crossbow"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["Flail"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["Quarterstaff"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["Spear"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["Talisman"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2011656677", - ["text"] = "#% increased Poison Duration", - ["type"] = "augment", - }, - }, - ["2891"] = { - ["Gloves"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2103650854", - ["text"] = "#% increased effect of Arcane Surge on you", - ["type"] = "augment", - }, - }, - ["2929"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_542243093", - ["text"] = "Bonded: #% increased Warcry Cooldown Recovery Rate", - ["type"] = "augment", - }, - }, - ["3327"] = { - ["Helmet"] = { - ["max"] = 6, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1984310483", - ["text"] = "Enemies you Curse take #% increased Damage", - ["type"] = "augment", - }, - }, - ["3330"] = { - ["1HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["2HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Bow"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Claw"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Flail"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Spear"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Talisman"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_4064396395", - ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", - ["type"] = "augment", - }, - }, - ["3617"] = { - ["Helmet"] = { - ["max"] = -5, - ["min"] = -5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1772929282", - ["text"] = "Enemies you Curse have #% to Chaos Resistance", - ["type"] = "augment", - }, - }, - ["4022"] = { - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_687156079", - ["text"] = "# to Accuracy Rating per 1 Item Evasion Rating on Equipped Helmet", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["4115"] = { - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3570773271", - ["text"] = "Increases and Reductions to Life Regeneration Rate also apply to Mana Regeneration Rate", - ["type"] = "augment", - }, - }, - ["4147"] = { - ["Boots"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Focus"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Shield"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_4128954176", - ["text"] = "Bonded: #% increased Elemental Ailment Threshold", - ["type"] = "augment", - }, - }, - ["4167"] = { - ["Chest"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3655769732", - ["text"] = "#% to Quality of all Skills", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["4221"] = { - ["Staff"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_975988108", - ["text"] = "Bonded: Archon recovery period expires #% faster", - ["type"] = "augment", - }, - }, - ["4223"] = { - ["Focus"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1236190486", - ["text"] = "Bonded: #% increased effect of Archon Buffs on you", - ["type"] = "augment", - }, - }, - ["4261"] = { - ["Chest"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2191621386", - ["text"] = "#% of Armour also applies to Chaos Damage while on full Energy Shield", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["4275"] = { - ["Chest"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1197632982", - ["text"] = "# to Armour per 1 Spirit", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["4287"] = { - ["Staff"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["Wand"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3990135792", - ["text"] = "Bonded: Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", - ["type"] = "augment", - }, - }, - ["4335"] = { - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Flail"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Quarterstaff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Spear"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Talisman"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_859085781", - ["text"] = "Bonded: Attacks have #% to Critical Hit Chance", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["4382"] = { - ["1HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["2HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Bow"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Claw"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Crossbow"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Flail"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Spear"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Talisman"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2077615515", - ["text"] = "#% increased Attack Damage against Rare or Unique Enemies", - ["type"] = "augment", - }, - }, - ["4387"] = { - ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_674141348", - ["text"] = "Bonded: #% increased Attack Damage while Shapeshifted", - ["type"] = "augment", - }, - }, - ["4512"] = { - ["Helmet"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1947060170", - ["text"] = "#% of Armour also applies to Cold Damage", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["4513"] = { - ["Gloves"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3897831687", - ["text"] = "#% of Armour also applies to Fire Damage", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["4514"] = { - ["Boots"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2200571612", - ["text"] = "#% of Armour also applies to Lightning Damage", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["4523"] = { - ["Gloves"] = { - ["max"] = -15, - ["min"] = -15, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3144895835", - ["text"] = "Bonded: #% increased Magnitude of Bleeding on You", - ["type"] = "augment", - }, - }, - ["4539"] = { - ["Boots"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_232299587", - ["text"] = "Bonded: #% increased Cooldown Recovery Rate", - ["type"] = "augment", - }, - }, - ["4541"] = { - ["Boots"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1597408611", - ["text"] = "Bonded: Prevent #% of Damage from Deflected Hits", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["4572"] = { - ["Gloves"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_310945763", - ["text"] = "#% increased Life Cost Efficiency", - ["type"] = "augment", - }, - }, - ["4582"] = { - ["Staff"] = { - ["max"] = 16, - ["min"] = 16, - }, - ["Wand"] = { - ["max"] = 16, - ["min"] = 16, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2336012075", - ["text"] = "Bonded: #% increased Mana Cost Efficiency", - ["type"] = "augment", - }, - }, - ["4586"] = { - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_532897212", - ["text"] = "Bonded: #% increased Mana Cost Efficiency while on Low Mana", - ["type"] = "augment", - }, - }, - ["4604"] = { - ["Helmet"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_263495202", - ["text"] = "#% increased Cost Efficiency", - ["type"] = "augment", - }, - }, - ["4605"] = { - ["1HMace"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["1HWeapon"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["2HMace"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["2HWeapon"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["Bow"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["Claw"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["Crossbow"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["Flail"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["Quarterstaff"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["Spear"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["Talisman"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2561960218", - ["text"] = "Bonded: #% of Skill Mana Costs Converted to Life Costs", - ["type"] = "augment", - }, - }, - ["4608"] = { - ["Gloves"] = { - ["max"] = -15, - ["min"] = -15, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_165746512", - ["text"] = "Bonded: #% increased Slowing Potency of Debuffs on You", - ["type"] = "augment", - }, - }, - ["4662"] = { - ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3166958180", - ["text"] = "#% increased Magnitude of Bleeding you inflict", - ["type"] = "augment", - }, - }, - ["4868"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Crossbow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Talisman"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1039491398", - ["text"] = "Bonded: #% increased effect of Fully Broken Armour", - ["type"] = "augment", - }, - }, - ["5143"] = { - ["1HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["2HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Bow"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Claw"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Crossbow"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Flail"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Spear"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Staff"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Talisman"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1228682002", - ["text"] = "#% chance when you gain an Endurance Charge to gain an additional Endurance Charge", - ["type"] = "augment", - }, - }, - ["5144"] = { - ["1HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["2HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Bow"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Claw"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Crossbow"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Flail"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Spear"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Staff"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Talisman"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2916861134", - ["text"] = "#% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", - ["type"] = "augment", - }, - }, - ["5145"] = { - ["1HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["2HMace"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Bow"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Claw"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Crossbow"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Flail"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Spear"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Staff"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Talisman"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3537994888", - ["text"] = "#% chance when you gain a Power Charge to gain an additional Power Charge", - ["type"] = "augment", - }, - }, - ["5146"] = { - ["1HMace"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["2HMace"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["2HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Bow"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Claw"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Crossbow"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Flail"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Quarterstaff"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Spear"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Talisman"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1712188793", - ["text"] = "Bonded: #% chance to gain an additional random Charge when you gain a Charge", - ["type"] = "augment", - }, - }, - ["5227"] = { - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_763465498", - ["text"] = "Bonded: #% increased Charm Charges gained", - ["type"] = "augment", - }, - }, - ["5415"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_935518591", - ["text"] = "Critical Hit chance is Lucky against Parried enemies", - ["type"] = "augment", - }, - }, - ["5440"] = { - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3311629379", - ["text"] = "Bonded: #% increased Critical Hit Chance while Shapeshifted", - ["type"] = "augment", - }, - }, - ["5564"] = { - ["1HMace"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["2HMace"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["Bow"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["Claw"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["Crossbow"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["Flail"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["Quarterstaff"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["Spear"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["Talisman"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3823333703", - ["text"] = "Bonded: #% increased Damage against Immobilised Enemies", - ["type"] = "augment", - }, - }, - ["5567"] = { - ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3412619569", - ["text"] = "Bonded: #% increased Damage while Shapeshifted", - ["type"] = "augment", - }, - }, - ["5668"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2986637363", - ["text"] = "Bonded: #% increased Duration of Damaging Ailments on Enemies", - ["type"] = "augment", - }, - }, - ["5670"] = { - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1381474422", - ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", - ["type"] = "augment", - }, - }, - ["5703"] = { - ["Boots"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Chest"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Focus"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Gloves"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Shield"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1238227257", - ["text"] = "Debuffs on you expire #% faster", - ["type"] = "augment", - }, - }, - ["5722"] = { - ["Boots"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1382805233", - ["text"] = "#% increased Deflection Rating while moving", - ["type"] = "augment", - }, - }, - ["5981"] = { - ["Chest"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2134854700", - ["text"] = "Bonded: #% chance for Damage of Enemies Hitting you to be Unlucky", - ["type"] = "augment", - }, - }, - ["5987"] = { - ["1HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Bow"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Claw"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Crossbow"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Flail"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Spear"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Talisman"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", - ["type"] = "augment", - }, - }, - ["6106"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Crossbow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Talisman"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3378643287", - ["text"] = "Bonded: #% increased Exposure Effect", - ["type"] = "augment", - }, - }, - ["6192"] = { - ["Gloves"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1482283017", - ["text"] = "Bonded: Fissure Skills have +# to Limit", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["6220"] = { - ["Boots"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["Chest"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["Focus"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["Gloves"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["Helmet"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["Shield"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2310741722", - ["text"] = "#% increased Life and Mana Recovery from Flasks", - ["type"] = "augment", - }, - }, - ["6295"] = { - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_280497929", - ["text"] = "# to maximum Mana per 2 Item Energy Shield on Equipped Helmet", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["6337"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3903510399", - ["text"] = "Gain Armour equal to #% of Life Lost from Hits in the past 8 seconds", - ["type"] = "augment", - }, - }, - ["6431"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2709367754", - ["text"] = "Gain # Rage on Melee Hit", - ["type"] = "augment", - }, - }, - ["6473"] = { - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_155735928", - ["text"] = "Bonded: #% increased Glory generation", - ["type"] = "augment", - }, - }, - ["6476"] = { - ["Chest"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3898665772", - ["text"] = "Bonded: #% increased Quantity of Gold Dropped by Slain Enemies", - ["type"] = "augment", - }, - }, - ["6748"] = { - ["Staff"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1112792773", - ["text"] = "Bonded: #% increased Immobilisation buildup", - ["type"] = "augment", - }, - }, - ["6924"] = { - ["1HMace"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["2HMace"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Bow"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Claw"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Crossbow"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Flail"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Quarterstaff"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Spear"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Talisman"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_4058552370", - ["text"] = "Bonded: Invocated Spells have #% chance to consume half as much Energy", - ["type"] = "augment", - }, - }, - ["6999"] = { - ["Boots"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3473409233", - ["text"] = "Lose #% of maximum Life per second while Sprinting", - ["type"] = "augment", - }, - }, - ["7037"] = { - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2410766865", - ["text"] = "Bonded: #% increased Life Regeneration rate while Shapeshifted", - ["type"] = "augment", - }, - }, - ["7269"] = { - ["1HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Bow"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Claw"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Crossbow"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Flail"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Spear"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Talisman"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3678845069", - ["text"] = "Attacks with this Weapon have #% chance to inflict Exposure", - ["type"] = "augment", - }, - }, - ["7334"] = { - ["1HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["2HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Bow"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Claw"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Flail"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Spear"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Talisman"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3885634897", - ["text"] = "#% chance to Poison on Hit with this weapon", - ["type"] = "augment", - }, - }, - ["7336"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Boots"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Chest"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Crossbow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Focus"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Shield"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Talisman"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1496740334", - ["text"] = "Convert #% of Requirements to Dexterity", - ["type"] = "augment", - }, - }, - ["7337"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Boots"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Chest"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Crossbow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Focus"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Shield"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Talisman"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2913012734", - ["text"] = "Convert #% of Requirements to Intelligence", - ["type"] = "augment", - }, - }, - ["7338"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Boots"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Chest"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Crossbow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Focus"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Shield"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Talisman"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1556124492", - ["text"] = "Convert #% of Requirements to Strength", - ["type"] = "augment", - }, - }, - ["7483"] = { - ["Boots"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2876843277", - ["text"] = "#% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently", - ["type"] = "augment", - }, - }, - ["821"] = { - ["1HMace"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["1HWeapon"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["2HMace"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["2HWeapon"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["Bow"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["Claw"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["Crossbow"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["Flail"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["Quarterstaff"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["Spear"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["Talisman"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "augment", - }, - }, - ["823"] = { - ["1HMace"] = { - ["max"] = 28.5, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 28.5, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 28.5, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 28.5, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 28.5, - ["min"] = 5, - }, - ["Claw"] = { - ["max"] = 28.5, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 28.5, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 28.5, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 28.5, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 28.5, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 28.5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_709508406", - ["text"] = "Adds # to # Fire Damage", - ["type"] = "augment", - }, - }, - ["824"] = { - ["1HMace"] = { - ["max"] = 23.5, - ["min"] = 4, - }, - ["1HWeapon"] = { - ["max"] = 23.5, - ["min"] = 4, - }, - ["2HMace"] = { - ["max"] = 23.5, - ["min"] = 4, - }, - ["2HWeapon"] = { - ["max"] = 23.5, - ["min"] = 4, - }, - ["Bow"] = { - ["max"] = 23.5, - ["min"] = 4, - }, - ["Claw"] = { - ["max"] = 23.5, - ["min"] = 4, - }, - ["Crossbow"] = { - ["max"] = 23.5, - ["min"] = 4, - }, - ["Flail"] = { - ["max"] = 23.5, - ["min"] = 4, - }, - ["Quarterstaff"] = { - ["max"] = 23.5, - ["min"] = 4, - }, - ["Spear"] = { - ["max"] = 23.5, - ["min"] = 4, - }, - ["Talisman"] = { - ["max"] = 23.5, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", - ["type"] = "augment", - }, - }, - ["825"] = { - ["1HMace"] = { - ["max"] = 30.5, - ["min"] = 5.5, - }, - ["1HWeapon"] = { - ["max"] = 30.5, - ["min"] = 5.5, - }, - ["2HMace"] = { - ["max"] = 30.5, - ["min"] = 5.5, - }, - ["2HWeapon"] = { - ["max"] = 30.5, - ["min"] = 5.5, - }, - ["Bow"] = { - ["max"] = 30.5, - ["min"] = 5.5, - }, - ["Claw"] = { - ["max"] = 30.5, - ["min"] = 5.5, - }, - ["Crossbow"] = { - ["max"] = 30.5, - ["min"] = 5.5, - }, - ["Flail"] = { - ["max"] = 30.5, - ["min"] = 5.5, - }, - ["Quarterstaff"] = { - ["max"] = 30.5, - ["min"] = 5.5, - }, - ["Spear"] = { - ["max"] = 30.5, - ["min"] = 5.5, - }, - ["Talisman"] = { - ["max"] = 30.5, - ["min"] = 5.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", - ["type"] = "augment", - }, - }, - ["827"] = { - ["Boots"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "augment", - }, - }, - ["8275"] = { - ["Helmet"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2231410646", - ["text"] = "A random Skill that requires Glory generates #% of its maximum Glory when your Mark Activates", - ["type"] = "augment", - }, - }, - ["828"] = { - ["1HMace"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["2HMace"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["2HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Bow"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Claw"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Crossbow"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Flail"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Quarterstaff"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Spear"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Talisman"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_970213192", - ["text"] = "#% increased Skill Speed", - ["type"] = "augment", - }, - }, - ["8332"] = { - ["Chest"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2100249038", - ["text"] = "Bonded: #% of Maximum Life Converted to Energy Shield", - ["type"] = "augment", - }, - }, - ["840"] = { - ["Boots"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["Chest"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["Focus"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["Gloves"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["Helmet"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["Shield"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3523867985", - ["text"] = "#% increased Armour, Evasion and Energy Shield", - ["type"] = "augment", - }, - }, - ["842"] = { - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3984865854", - ["text"] = "#% increased Spirit", - ["type"] = "augment", - }, - }, - ["843"] = { - ["Gloves"] = { - ["max"] = 8.5, - ["min"] = 8.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", - ["type"] = "augment", - }, - }, - ["847"] = { - ["Staff"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Wand"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3015669065", - ["text"] = "Gain #% of Damage as Extra Fire Damage", - ["type"] = "augment", - }, - }, - ["8471"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1611856026", - ["text"] = "Bonded: Minions have #% increased Cooldown Recovery Rate for Command Skills", - ["type"] = "augment", - }, - }, - ["8473"] = { - ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["Staff"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["Wand"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3742865955", - ["text"] = "Minions deal #% increased Damage with Command Skills", - ["type"] = "augment", - }, - }, - ["849"] = { - ["Staff"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Wand"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2505884597", - ["text"] = "Gain #% of Damage as Extra Cold Damage", - ["type"] = "augment", - }, - }, - ["851"] = { - ["Staff"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Wand"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3278136794", - ["text"] = "Gain #% of Damage as Extra Lightning Damage", - ["type"] = "augment", - }, - }, - ["8518"] = { - ["1HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Bow"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Claw"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Crossbow"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Flail"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Spear"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Talisman"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1433756169", - ["text"] = "Minions gain #% of their Physical Damage as Extra Lightning Damage", - ["type"] = "augment", - }, - }, - ["8519"] = { - ["Boots"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Helmet"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_889552744", - ["text"] = "Minions take #% of Physical Damage as Lightning Damage", - ["type"] = "augment", - }, - }, - ["8524"] = { - ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1805633363", - ["text"] = "#% increased Reservation Efficiency of Minion Skills", - ["type"] = "augment", - }, - }, - ["8529"] = { - ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_839375491", - ["text"] = "Bonded: Minions Revive #% faster", - ["type"] = "augment", - }, - }, - ["853"] = { - ["Staff"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2974417149", - ["text"] = "#% increased Spell Damage", - ["type"] = "augment", - }, - }, - ["859"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["2HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Bow"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Claw"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Crossbow"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Flail"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Spear"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Talisman"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attacks", - ["type"] = "augment", - }, - }, - ["8659"] = { - ["Helmet"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3891661462", - ["text"] = "Bonded: #% increased Magnitude of Non-Damaging Ailments you inflict", - ["type"] = "augment", - }, - }, - ["867"] = { - ["Staff"] = { - ["max"] = 35, - ["min"] = 25, - }, - ["Wand"] = { - ["max"] = 35, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3489782002", - ["text"] = "# to maximum Energy Shield", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["869"] = { - ["Boots"] = { - ["max"] = 40, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 40, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 40, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 40, - ["min"] = 10, - }, - ["Helmet"] = { - ["max"] = 40, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 40, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["8691"] = { - ["1HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Claw"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Staff"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_731403740", - ["text"] = "Gain #% of Damage as Extra Damage of all Elements", - ["type"] = "augment", - }, - }, - ["870"] = { - ["1HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Claw"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Staff"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2246411426", - ["text"] = "Bonded: #% increased maximum Life", - ["type"] = "augment", - }, - }, - ["871"] = { - ["Boots"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Helmet"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2926029365", - ["text"] = "Bonded: # to maximum Mana", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["872"] = { - ["1HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Claw"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Staff"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1586906534", - ["text"] = "Bonded: #% increased maximum Mana", - ["type"] = "augment", - }, - }, - ["874"] = { - ["1HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["2HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Bow"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Claw"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Flail"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Spear"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Talisman"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["8749"] = { - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Flail"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Quarterstaff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Spear"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Talisman"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1755296234", - ["text"] = "Targets can be affected by # of your Poisons at the same time", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["875"] = { - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - ["type"] = "augment", - }, - }, - ["881"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", - ["type"] = "augment", - }, - }, - ["882"] = { - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1574590649", - ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", - ["type"] = "augment", - }, - }, - ["885"] = { - ["1HWeapon"] = { - ["max"] = 20.5, - ["min"] = 20.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2854751904", - ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", - ["type"] = "augment", - }, - }, - ["8867"] = { - ["Chest"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1374654984", - ["text"] = "#% of Physical Damage prevented Recouped as Life", - ["type"] = "augment", - }, - }, - ["891"] = { - ["1HWeapon"] = { - ["max"] = 14, - ["min"] = 14, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1250712710", - ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", - ["type"] = "augment", - }, - }, - ["892"] = { - ["1HWeapon"] = { - ["max"] = 14, - ["min"] = 14, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3057012405", - ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", - ["type"] = "augment", - }, - }, - ["893"] = { - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1998951374", - ["text"] = "Allies in your Presence have #% increased Attack Speed", - ["type"] = "augment", - }, - }, - ["894"] = { - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_289128254", - ["text"] = "Allies in your Presence have #% increased Cast Speed", - ["type"] = "augment", - }, - }, - ["895"] = { - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3850614073", - ["text"] = "Allies in your Presence have #% to all Elemental Resistances", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["896"] = { - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_4010677958", - ["text"] = "Allies in your Presence Regenerate # Life per second", - ["type"] = "augment", - }, - }, - ["9032"] = { - ["Helmet"] = { - ["max"] = 4, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1181501418", - ["text"] = "# to Maximum Rage", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["9084"] = { - ["Boots"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2363593824", - ["text"] = "#% increased speed of Recoup Effects", - ["type"] = "augment", - }, - }, - ["9105"] = { - ["Chest"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1937310173", - ["text"] = "You Recoup #% of Damage taken by your Offerings as Life", - ["type"] = "augment", - }, - }, - ["9139"] = { - ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_426207520", - ["text"] = "Each Runic Inscription from your Curse Skills causes you to Regenerate Mana per second equal to #% of that Skill's Mana Cost", - ["type"] = "augment", - }, - }, - ["9151"] = { - ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3227486464", - ["text"] = "Bonded: Remnants have #% increased effect", - ["type"] = "augment", - }, - }, - ["9153"] = { - ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3373098634", - ["text"] = "Bonded: Remnants can be collected from #% further away", - ["type"] = "augment", - }, - }, - ["916"] = { - ["Chest"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "augment", - }, - }, - ["9162"] = { - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_594547430", - ["text"] = "Remove a Damaging Ailment when you use a Command Skill", - ["type"] = "augment", - }, - }, - ["9178"] = { - ["Helmet"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2729035954", - ["text"] = "Bonded: #% increased Reservation Efficiency of Companion Skills", - ["type"] = "augment", - }, - }, - ["9179"] = { - ["1HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["2HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Bow"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Claw"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Flail"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Spear"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Talisman"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1299166504", - ["text"] = "Bonded: #% increased Reservation Efficiency of Herald Skills", - ["type"] = "augment", - }, - }, - ["918"] = { - ["1HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Claw"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["9180"] = { - ["Helmet"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_4254029169", - ["text"] = "Bonded: Meta Skills have #% increased Reservation Efficiency", - ["type"] = "augment", - }, - }, - ["9188"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1480688478", - ["text"] = "One of your Persistent Minions revives when an Offering expires", - ["type"] = "augment", - }, - }, - ["919"] = { - ["1HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Claw"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "augment", - }, - }, - ["9195"] = { - ["Boots"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1585886916", - ["text"] = "Sacrifice #% of maximum Life to gain that much Guard when you Dodge Roll", - ["type"] = "augment", - }, - }, - ["922"] = { - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_124131830", - ["text"] = "# to Level of all Spell Skills", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["9248"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["2HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Bow"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Claw"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Crossbow"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Flail"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Spear"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Staff"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Talisman"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2430860292", - ["text"] = "Bonded: #% increased Magnitude of Shock you inflict", - ["type"] = "augment", - }, - }, - ["9261"] = { - ["Boots"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Helmet"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3801067695", - ["text"] = "#% reduced effect of Shock on you", - ["type"] = "augment", - }, - }, - ["929"] = { - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Flail"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Quarterstaff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Spear"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Talisman"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_243313994", - ["text"] = "Bonded: # to Level of all Attack Skills", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["9317"] = { - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_144568384", - ["text"] = "Bonded: #% increased Skill Speed while Shapeshifted", - ["type"] = "augment", - }, - }, - ["935"] = { - ["Staff"] = { - ["max"] = 24, - ["min"] = 16, - }, - ["Wand"] = { - ["max"] = 24, - ["min"] = 16, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", - ["type"] = "augment", - }, - }, - ["937"] = { - ["Staff"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Wand"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_4221147896", - ["text"] = "Bonded: #% increased Critical Damage Bonus", - ["type"] = "augment", - }, - }, - ["9405"] = { - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_807013157", - ["text"] = "Bonded: Every Rage also grants #% increased Spell Damage", - ["type"] = "augment", - }, - }, - ["941"] = { - ["Gloves"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "augment", - }, - }, - ["942"] = { - ["Gloves"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "augment", - }, - }, - ["9431"] = { - ["Staff"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Wand"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2910761524", - ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", - ["type"] = "augment", - }, - }, - ["945"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", - ["type"] = "augment", - }, - }, - ["946"] = { - ["Chest"] = { - ["max"] = 4, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_534024", - ["text"] = "Bonded: # to all Attributes", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["9465"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3107707789", - ["text"] = "#% increased Movement Speed while Sprinting", - ["type"] = "augment", - }, - }, - ["947"] = { - ["1HMace"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["2HMace"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Bow"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Claw"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Crossbow"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Flail"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Spear"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Staff"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Talisman"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Wand"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["948"] = { - ["1HMace"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["2HMace"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Bow"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Claw"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Crossbow"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Flail"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Spear"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Staff"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Talisman"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Wand"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["949"] = { - ["1HMace"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["2HMace"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Bow"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Claw"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Crossbow"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Flail"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Spear"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Staff"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Talisman"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Wand"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["950"] = { - ["Chest"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", - ["type"] = "augment", - }, - }, - ["9505"] = { - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3286003349", - ["text"] = "Bonded: Storm Skills have +# to Limit", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["953"] = { - ["1HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Claw"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Flail"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Quarterstaff"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Spear"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["9531"] = { - ["Staff"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Wand"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_416040624", - ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", - ["type"] = "augment", - }, - }, - ["954"] = { - ["1HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Claw"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Flail"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Spear"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_4042480703", - ["text"] = "Bonded: #% to Maximum Cold Resistance", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["955"] = { - ["1HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Claw"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Flail"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Spear"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Talisman"] = { + ["RadiusJewel"] = { ["max"] = 2, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["957"] = { - ["Helmet"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_953010920", - ["text"] = "Bonded: #% to all Elemental Resistances", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["958"] = { - ["Boots"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Helmet"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["959"] = { - ["Boots"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Helmet"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["960"] = { - ["Boots"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Helmet"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["961"] = { - ["Gloves"] = { - ["max"] = 7, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3351086592", - ["text"] = "Bonded: #% to Chaos Resistance", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["962"] = { - ["Helmet"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "augment", - }, - }, - ["9642"] = { - ["Helmet"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_915264788", - ["text"] = "#% increased Thorns Critical Hit Chance", - ["type"] = "augment", - }, - }, - ["9645"] = { - ["Helmet"] = { - ["max"] = 40, - ["min"] = 40, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3925507006", - ["text"] = "Bonded: Thorns Damage has #% chance to ignore Enemy Armour", - ["type"] = "augment", + ["id"] = "explicit.stat_1653682082", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", }, }, - ["9646"] = { - ["Boots"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Focus"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 15, + ["9533_IncreasedStunThresholdIfNoRecentStun"] = { + ["AnyJewel"] = { + ["max"] = 25, ["min"] = 15, }, - ["Shield"] = { - ["max"] = 15, + ["BaseJewel"] = { + ["max"] = 25, ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3266426611", - ["text"] = "Bonded: #% increased Thorns damage", - ["type"] = "augment", + ["id"] = "explicit.stat_1405298142", + ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", + ["type"] = "explicit", }, }, - ["9652"] = { - ["Boots"] = { - ["max"] = 50.5, - ["min"] = 50.5, + ["9533_IncreasedStunThresholdIfNoRecentStunRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Chest"] = { - ["max"] = 50.5, - ["min"] = 50.5, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Focus"] = { - ["max"] = 50.5, - ["min"] = 50.5, + ["specialCaseData"] = { }, - ["Gloves"] = { - ["max"] = 50.5, - ["min"] = 50.5, + ["tradeMod"] = { + ["id"] = "explicit.stat_654207792", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", + ["type"] = "explicit", }, - ["Helmet"] = { - ["max"] = 50.5, - ["min"] = 50.5, + }, + ["953_MaximumFireResist"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Shield"] = { - ["max"] = 50.5, - ["min"] = 50.5, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_757050353", - ["text"] = "# to # Lightning Thorns damage", - ["type"] = "augment", + ["id"] = "explicit.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["966"] = { - ["Chest"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Staff"] = { - ["max"] = 18, - ["min"] = 12, + ["954_MaximumColdResist"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Wand"] = { - ["max"] = 18, - ["min"] = 12, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", - ["type"] = "augment", + ["id"] = "explicit.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["967"] = { - ["Chest"] = { - ["max"] = 30, - ["min"] = 20, + ["955_MaximumLightningResistance"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Focus"] = { - ["max"] = 30, - ["min"] = 30, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", - ["type"] = "augment", + ["id"] = "explicit.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["970"] = { - ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Staff"] = { - ["max"] = 8, - ["min"] = 8, + ["962_MinionLife"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Wand"] = { - ["max"] = 8, - ["min"] = 8, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "augment", + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "explicit", }, }, - ["972"] = { - ["1HMace"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 3, - ["min"] = 2, + ["962_MinionLifeRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["2HMace"] = { - ["max"] = 3, - ["min"] = 2, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["2HWeapon"] = { - ["max"] = 3, - ["min"] = 2, + ["specialCaseData"] = { }, - ["Bow"] = { - ["max"] = 3, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "explicit.stat_378796798", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", + ["type"] = "explicit", }, - ["Claw"] = { - ["max"] = 3, - ["min"] = 2, + }, + ["9646_ThornsDamageIncrease"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Crossbow"] = { - ["max"] = 3, - ["min"] = 2, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Flail"] = { - ["max"] = 3, - ["min"] = 2, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 3, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "explicit.stat_1315743832", + ["text"] = "#% increased Thorns damage", + ["type"] = "explicit", }, - ["Spear"] = { + }, + ["9646_ThornsDamageIncreaseRadius"] = { + ["AnyJewel"] = { ["max"] = 3, ["min"] = 2, }, - ["Talisman"] = { + ["RadiusJewel"] = { ["max"] = 3, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_55876295", - ["text"] = "Leeches #% of Physical Damage as Life", - ["type"] = "augment", + ["id"] = "explicit.stat_1320662475", + ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", + ["type"] = "explicit", }, }, - ["975"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 10, - }, - ["1HWeapon"] = { - ["max"] = 30, + ["966_EnergyShieldRegeneration"] = { + ["AnyJewel"] = { + ["max"] = 20, ["min"] = 10, }, - ["2HMace"] = { - ["max"] = 30, + ["BaseJewel"] = { + ["max"] = 20, ["min"] = 10, }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 10, + ["specialCaseData"] = { }, - ["Bow"] = { - ["max"] = 30, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "explicit", }, - ["Claw"] = { - ["max"] = 30, - ["min"] = 10, + }, + ["966_EnergyShieldRegenerationRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Crossbow"] = { - ["max"] = 30, - ["min"] = 10, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Flail"] = { - ["max"] = 30, - ["min"] = 10, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "explicit.stat_1552666713", + ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", + ["type"] = "explicit", }, - ["Spear"] = { - ["max"] = 30, + }, + ["967_EnergyShieldDelay"] = { + ["AnyJewel"] = { + ["max"] = 15, ["min"] = 10, }, - ["Talisman"] = { - ["max"] = 30, + ["BaseJewel"] = { + ["max"] = 15, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", - ["type"] = "augment", + ["id"] = "explicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "explicit", }, }, - ["976"] = { - ["Boots"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["Chest"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["Focus"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["Gloves"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["Helmet"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["Shield"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["Staff"] = { - ["max"] = 24, - ["min"] = 16, + ["967_EnergyShieldDelayRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, }, - ["Wand"] = { - ["max"] = 24, - ["min"] = 16, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "augment", + ["id"] = "explicit.stat_3394832998", + ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", + ["type"] = "explicit", }, }, - ["978"] = { - ["1HMace"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, - ["1HWeapon"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, - ["2HMace"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, - ["2HWeapon"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, - ["Bow"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, - ["Claw"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, - ["Crossbow"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, - ["Flail"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, - ["Quarterstaff"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, - ["Spear"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["969_LifeRegenerationRate"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Talisman"] = { - ["max"] = 2.5, - ["min"] = 1.5, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_669069897", - ["text"] = "Leeches #% of Physical Damage as Mana", - ["type"] = "augment", + ["id"] = "explicit.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "explicit", }, }, - ["980"] = { - ["1HMace"] = { - ["max"] = 24, - ["min"] = 8, - }, - ["1HWeapon"] = { - ["max"] = 24, - ["min"] = 8, + ["969_LifeRegenerationRateRadius"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["2HMace"] = { - ["max"] = 24, - ["min"] = 8, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["2HWeapon"] = { - ["max"] = 24, - ["min"] = 8, + ["specialCaseData"] = { }, - ["Bow"] = { - ["max"] = 24, - ["min"] = 8, + ["tradeMod"] = { + ["id"] = "explicit.stat_1185341308", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", + ["type"] = "explicit", }, - ["Claw"] = { - ["max"] = 24, - ["min"] = 8, + }, + ["970_LifeRecoupForJewel"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Crossbow"] = { - ["max"] = 24, - ["min"] = 8, + ["BaseJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Flail"] = { - ["max"] = 24, - ["min"] = 8, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 24, - ["min"] = 8, + ["tradeMod"] = { + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "explicit", }, - ["Spear"] = { - ["max"] = 24, - ["min"] = 8, + }, + ["970_LifeRecoupForJewelRadius"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Talisman"] = { - ["max"] = 24, - ["min"] = 8, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", - ["type"] = "augment", + ["id"] = "explicit.stat_3669820740", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", + ["type"] = "explicit", }, }, - ["985"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["9712_DamageWithTriggeredSpells"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 10, }, - ["2HMace"] = { - ["max"] = 30, - ["min"] = 20, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 10, }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["specialCaseData"] = { }, - ["Bow"] = { - ["max"] = 30, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_3067892458", + ["text"] = "Triggered Spells deal #% increased Spell Damage", + ["type"] = "explicit", }, - ["Claw"] = { - ["max"] = 30, - ["min"] = 20, + }, + ["9712_DamageWithTriggeredSpellsRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Crossbow"] = { - ["max"] = 30, - ["min"] = 20, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Flail"] = { - ["max"] = 30, - ["min"] = 20, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "explicit.stat_473917671", + ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", + ["type"] = "explicit", }, - ["Spear"] = { - ["max"] = 30, - ["min"] = 20, + }, + ["976_ManaRegeneration"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Talisman"] = { - ["max"] = 30, - ["min"] = 20, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", - ["type"] = "augment", + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "explicit", }, }, - ["988"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, + ["976_ManaRegenerationRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["2HMace"] = { - ["max"] = 30, - ["min"] = 30, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 30, + ["specialCaseData"] = { }, - ["Bow"] = { - ["max"] = 30, - ["min"] = 30, + ["tradeMod"] = { + ["id"] = "explicit.stat_3256879910", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", + ["type"] = "explicit", }, - ["Claw"] = { - ["max"] = 30, - ["min"] = 30, + }, + ["984_StunDamageIncrease"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Crossbow"] = { - ["max"] = 30, - ["min"] = 30, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Flail"] = { - ["max"] = 30, - ["min"] = 30, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 30, + ["tradeMod"] = { + ["id"] = "explicit.stat_239367161", + ["text"] = "#% increased Stun Buildup", + ["type"] = "explicit", }, - ["Spear"] = { - ["max"] = 30, - ["min"] = 30, + }, + ["984_StunDamageIncreaseRadius"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Talisman"] = { - ["max"] = 30, - ["min"] = 30, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", - ["type"] = "augment", + ["id"] = "explicit.stat_4173554949", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", + ["type"] = "explicit", }, }, - ["9889"] = { - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, + ["9860_VolatilityOnKillChance"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2663359259", - ["text"] = "#% increased total Power counted by Warcries", - ["type"] = "augment", + ["id"] = "explicit.stat_3749502527", + ["text"] = "#% chance to gain Volatility on Kill", + ["type"] = "explicit", }, }, - ["990"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, + ["9860_VolatilityOnKillChanceRadius"] = { + ["specialCaseData"] = { }, - ["2HMace"] = { - ["max"] = 30, - ["min"] = 30, + ["tradeMod"] = { + ["id"] = "explicit.stat_4225700219", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", + ["type"] = "explicit", }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 30, + }, + ["9883_WarcryEffect"] = { + ["specialCaseData"] = { }, - ["Bow"] = { - ["max"] = 30, - ["min"] = 30, + ["tradeMod"] = { + ["id"] = "explicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + ["type"] = "explicit", }, - ["Claw"] = { - ["max"] = 30, - ["min"] = 30, + }, + ["9883_WarcryEffectRadius"] = { + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 30, - ["min"] = 30, + ["tradeMod"] = { + ["id"] = "explicit.stat_2675129731", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", + ["type"] = "explicit", }, - ["Flail"] = { - ["max"] = 30, - ["min"] = 30, + }, + ["9886_WarcryDamage"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 30, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Spear"] = { - ["max"] = 30, - ["min"] = 30, + ["specialCaseData"] = { }, - ["Staff"] = { - ["max"] = 30, - ["min"] = 30, + ["tradeMod"] = { + ["id"] = "explicit.stat_1594812856", + ["text"] = "#% increased Damage with Warcries", + ["type"] = "explicit", }, - ["Talisman"] = { - ["max"] = 30, - ["min"] = 30, + }, + ["9886_WarcryDamageRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 30, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1817052494", - ["text"] = "Bonded: #% increased Freeze Buildup", - ["type"] = "augment", + ["id"] = "explicit.stat_1160637284", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", + ["type"] = "explicit", }, }, - ["9915"] = { - ["Gloves"] = { + ["988_IgniteChanceIncrease"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { ["max"] = 20, - ["min"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3973629633", - ["text"] = "#% increased Withered Magnitude", - ["type"] = "augment", + ["id"] = "explicit.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "explicit", }, }, - ["992"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, + ["988_IgniteChanceIncreaseRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["2HMace"] = { - ["max"] = 30, - ["min"] = 30, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 30, + ["specialCaseData"] = { }, - ["Bow"] = { - ["max"] = 30, - ["min"] = 30, + ["tradeMod"] = { + ["id"] = "explicit.stat_394473632", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", + ["type"] = "explicit", }, - ["Claw"] = { - ["max"] = 30, - ["min"] = 30, + }, + ["9897_WeaponSwapSpeed"] = { + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 30, - ["min"] = 30, + ["tradeMod"] = { + ["id"] = "explicit.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", + ["type"] = "explicit", }, - ["Flail"] = { - ["max"] = 30, - ["min"] = 30, + }, + ["9897_WeaponSwapSpeedRadius"] = { + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 30, + ["tradeMod"] = { + ["id"] = "explicit.stat_1129429646", + ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", + ["type"] = "explicit", }, - ["Spear"] = { - ["max"] = 30, - ["min"] = 30, + }, + ["990_FreezeDamageIncrease"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Talisman"] = { - ["max"] = 30, - ["min"] = 30, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_293638271", - ["text"] = "#% increased chance to Shock", - ["type"] = "augment", + ["id"] = "explicit.stat_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "explicit", }, }, - ["9922"] = { - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, + ["990_FreezeDamageIncreaseRadius"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_826685275", - ["text"] = "Bonded: #% of Armour also applies to Elemental Damage while Shapeshifted", - ["type"] = "augment", + ["id"] = "explicit.stat_1087531620", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["994"] = { - ["Boots"] = { - ["max"] = 80, - ["min"] = 40, + ["9915_WitheredEffect"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Chest"] = { - ["max"] = 80, - ["min"] = 40, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Focus"] = { - ["max"] = 80, - ["min"] = 40, + ["specialCaseData"] = { }, - ["Gloves"] = { - ["max"] = 80, - ["min"] = 40, + ["tradeMod"] = { + ["id"] = "explicit.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", + ["type"] = "explicit", }, - ["Helmet"] = { - ["max"] = 80, - ["min"] = 40, + }, + ["9915_WitheredEffectRadius"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, }, - ["Shield"] = { - ["max"] = 80, - ["min"] = 40, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_915769802", - ["text"] = "# to Stun Threshold", - ["type"] = "augment", + ["id"] = "explicit.stat_3936121440", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", + ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["999"] = { - ["Boots"] = { - ["max"] = 10, + ["992_ShockChanceIncrease"] = { + ["AnyJewel"] = { + ["max"] = 20, ["min"] = 10, }, - ["Chest"] = { - ["max"] = 10, + ["BaseJewel"] = { + ["max"] = 20, ["min"] = 10, }, - ["Focus"] = { - ["max"] = 10, - ["min"] = 10, + ["specialCaseData"] = { }, - ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "explicit.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "explicit", }, - ["Helmet"] = { - ["max"] = 10, - ["min"] = 10, + }, + ["992_ShockChanceIncreaseRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["Shield"] = { - ["max"] = 10, - ["min"] = 10, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1441491952", - ["text"] = "Bonded: #% reduced Shock duration on you", - ["type"] = "augment", + ["id"] = "explicit.stat_1039268420", + ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", + ["type"] = "explicit", }, }, }, + ["Implicit"] = { + }, + ["Rune"] = { + }, } \ No newline at end of file From 8d5d7aa7650e0eb3be95d92a8eb27e1c07df221e Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Sun, 19 Apr 2026 14:13:15 +0300 Subject: [PATCH 04/42] Regenerate QueryMods.lua --- src/Data/QueryMods.lua | 20895 +++++++++++++++++++++++++++++++++------ 1 file changed, 18072 insertions(+), 2823 deletions(-) diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index aebc665985..0e85ad9182 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -7394,1856 +7394,2061 @@ return { }, }, ["Corrupted"] = { - }, - ["Enchant"] = { - }, - ["Explicit"] = { ["1001_ChanceToPierce"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2321178454", + ["id"] = "enchant.stat_2321178454", ["text"] = "#% chance to Pierce an Enemy", - ["type"] = "explicit", + ["type"] = "enchant", }, }, - ["1001_ChanceToPierceRadius"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["1087_AllDamage"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1800303440", - ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", - ["type"] = "explicit", + ["id"] = "enchant.stat_2154246560", + ["text"] = "#% increased Damage", + ["type"] = "enchant", }, }, - ["1002_PresenceRadius"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["1227_LocalChaosDamage"] = { + ["1HMace"] = { + ["max"] = 14.5, + ["min"] = 9.5, }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["1HWeapon"] = { + ["max"] = 14.5, + ["min"] = 9.5, + }, + ["2HMace"] = { + ["max"] = 20.5, + ["min"] = 13.5, + }, + ["2HWeapon"] = { + ["max"] = 20.5, + ["min"] = 9.5, + }, + ["Bow"] = { + ["max"] = 14.5, + ["min"] = 9.5, + }, + ["Crossbow"] = { + ["max"] = 20.5, + ["min"] = 13.5, + }, + ["Flail"] = { + ["max"] = 14.5, + ["min"] = 9.5, + }, + ["Quarterstaff"] = { + ["max"] = 20.5, + ["min"] = 13.5, + }, + ["Spear"] = { + ["max"] = 14.5, + ["min"] = 9.5, + }, + ["Talisman"] = { + ["max"] = 20.5, + ["min"] = 13.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", - ["type"] = "explicit", + ["id"] = "enchant.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "enchant", }, }, - ["1002_PresenceRadiusRadius"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["1402_GlobalIncreasePhysicalSpellSkillGemLevel"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4032352472", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", - ["type"] = "explicit", + ["id"] = "enchant.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skills", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["1009_IgniteEffect"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["1445_GainLifeOnBlock"] = { + ["Shield"] = { + ["max"] = 25, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3791899485", - ["text"] = "#% increased Ignite Magnitude", - ["type"] = "explicit", + ["id"] = "enchant.stat_762600725", + ["text"] = "# Life gained when you Block", + ["type"] = "enchant", }, }, - ["1009_IgniteEffectRadius"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["1446_GainManaOnBlock"] = { + ["Shield"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_253641217", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", - ["type"] = "explicit", + ["id"] = "enchant.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "enchant", }, }, - ["1064_IncreasedBlockChance"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["1486_MaximumEnduranceCharges"] = { + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4147897060", - ["text"] = "#% increased Block chance", - ["type"] = "explicit", + ["id"] = "enchant.stat_1515657623", + ["text"] = "# to Maximum Endurance Charges", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["1064_IncreasedBlockChanceRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, + ["1491_MaximumFrenzyCharges"] = { + ["Gloves"] = { + ["max"] = 1, ["min"] = 1, }, - ["RadiusJewel"] = { - ["max"] = 3, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_4078695", + ["text"] = "# to Maximum Frenzy Charges", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["1496_MaximumPowerCharges"] = { + ["Helmet"] = { + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3821543413", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", - ["type"] = "explicit", + ["id"] = "enchant.stat_227523295", + ["text"] = "# to Maximum Power Charges", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["1089_TotemDamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 10, + ["1554_AreaOfEffect"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3851254963", - ["text"] = "#% increased Totem Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "enchant", }, }, - ["1089_TotemDamageForJewelRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["1569_SkillEffectDuration"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2108821127", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "enchant", }, }, - ["1093_AttackDamage"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, + ["1599_DamageGainedAsChaos"] = { + ["Helmet"] = { + ["max"] = 8, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["type"] = "enchant", }, }, - ["1093_AttackDamageRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["1617_LifeRegenerationRatePercentage"] = { + ["specialCaseData"] = { }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "enchant.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", + ["type"] = "enchant", + }, + }, + ["1659_MaximumBlockChance"] = { + ["Shield"] = { + ["max"] = 3, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1426522529", - ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_480796730", + ["text"] = "#% to maximum Block chance", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["1122_PhysicalDamagePercent"] = { - ["AnyJewel"] = { - ["max"] = 15, + ["1937_BlindingHit"] = { + ["2HWeapon"] = { + ["max"] = 10, ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 15, + ["Bow"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 10, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2301191210", + ["text"] = "#% chance to Blind Enemies on hit", + ["type"] = "enchant", }, }, - ["1122_PhysicalDamagePercentRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["2153_LocalChanceToBleed"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Flail"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1417267954", - ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "enchant", }, }, - ["1124_MeleeDamage"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, + ["2258_CurseEffectiveness"] = { + ["Helmet"] = { + ["max"] = 10, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "enchant", }, }, - ["1124_MeleeDamageRadius"] = { + ["2599_ImmunityToBlind"] = { ["AnyJewel"] = { - ["max"] = 2, + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 2, + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1337740333", - ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_1436284579", + ["text"] = "Cannot be Blinded", + ["type"] = "enchant", }, }, - ["1175_IncreasedStaffDamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["2613_FireResistancePenetration"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4045894391", - ["text"] = "#% increased Damage with Quarterstaves", - ["type"] = "explicit", + ["id"] = "enchant.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "enchant", }, }, - ["1175_IncreasedStaffDamageForJewelRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["2614_ColdResistancePenetration"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_821948283", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", - ["type"] = "explicit", + ["id"] = "enchant.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "enchant", }, }, - ["1186_IncreasedMaceDamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["2615_LightningResistancePenetration"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1181419800", - ["text"] = "#% increased Damage with Maces", - ["type"] = "explicit", + ["id"] = "enchant.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", + ["type"] = "enchant", }, }, - ["1186_IncreasedMaceDamageForJewelRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["2875_WarcrySpeed"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1852184471", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", - ["type"] = "explicit", + ["id"] = "enchant.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "enchant", }, }, - ["1190_IncreasedBowDamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["2878_IncreasedStunThreshold"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4188894176", - ["text"] = "#% increased Damage with Bows", - ["type"] = "explicit", + ["id"] = "enchant.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "enchant", }, }, - ["1190_IncreasedBowDamageForJewelRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["2879_FreezeThreshold"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_945774314", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", - ["type"] = "explicit", + ["id"] = "enchant.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", + ["type"] = "enchant", }, }, - ["1204_SpearDamage"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["4166_GlobalSkillGemLevel"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2696027455", - ["text"] = "#% increased Damage with Spears", - ["type"] = "explicit", + ["id"] = "enchant.stat_4283407333", + ["text"] = "# to Level of all Skills", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["1204_SpearDamageRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["4283_ArmourBreak"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2809428780", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", - ["type"] = "explicit", + ["id"] = "enchant.stat_1776411443", + ["text"] = "Break #% increased Armour", + ["type"] = "enchant", }, }, - ["1256_StaffAttackSpeedForJewel"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["4509_GlobalCooldownRecovery"] = { + ["Helmet"] = { + ["max"] = 12, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3283482523", - ["text"] = "#% increased Attack Speed with Quarterstaves", - ["type"] = "explicit", + ["id"] = "enchant.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "enchant", }, }, - ["1256_StaffAttackSpeedForJewelRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["4552_SlowEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_111835965", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", - ["type"] = "explicit", + ["id"] = "enchant.stat_3650992555", + ["text"] = "Debuffs you inflict have #% increased Slow Magnitude", + ["type"] = "enchant", }, }, - ["1260_BowAttackSpeedForJewel"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["4608_SlowPotency"] = { + ["Boots"] = { + ["max"] = -20, + ["min"] = -30, }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3759735052", - ["text"] = "#% increased Attack Speed with Bows", - ["type"] = "explicit", + ["id"] = "enchant.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "enchant", }, }, - ["1260_BowAttackSpeedForJewelRadius"] = { + ["4866_CorruptedBloodImmunity"] = { ["AnyJewel"] = { - ["max"] = 2, + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 2, + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3641543553", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", - ["type"] = "explicit", + ["id"] = "enchant.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", + ["type"] = "enchant", }, }, - ["1263_SpearAttackSpeed"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["5918_EnergyGeneration"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1165163804", - ["text"] = "#% increased Attack Speed with Spears", - ["type"] = "explicit", + ["id"] = "enchant.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", + ["type"] = "enchant", }, }, - ["1263_SpearAttackSpeedRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["6448_CharmChargeGeneration"] = { + ["Amulet"] = { + ["max"] = 0.17, + ["min"] = 0.08, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1266413530", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", - ["type"] = "explicit", + ["id"] = "enchant.stat_185580205", + ["text"] = "Charms gain # charges per Second", + ["type"] = "enchant", }, }, - ["1268_IncreasedAccuracyPercent"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["6451_LifeFlaskChargeGeneration"] = { + ["Amulet"] = { + ["max"] = 0.17, + ["min"] = 0.08, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Accuracy Rating", - ["type"] = "explicit", + ["id"] = "enchant.stat_1102738251", + ["text"] = "Life Flasks gain # charges per Second", + ["type"] = "enchant", }, }, - ["1268_IncreasedAccuracyPercentRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["6452_ManaFlaskChargeGeneration"] = { + ["Amulet"] = { + ["max"] = 0.17, + ["min"] = 0.08, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_533892981", - ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", - ["type"] = "explicit", + ["id"] = "enchant.stat_2200293569", + ["text"] = "Mana Flasks gain # charges per Second", + ["type"] = "enchant", }, }, - ["1277_BowIncreasedAccuracyRating"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, + ["6476_GoldFoundIncrease"] = { + ["Gloves"] = { + ["max"] = 10, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_169946467", - ["text"] = "#% increased Accuracy Rating with Bows", - ["type"] = "explicit", + ["id"] = "enchant.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "enchant", }, }, - ["1277_BowIncreasedAccuracyRatingRadius"] = { + ["6752_ImmuneToMaim"] = { ["AnyJewel"] = { - ["max"] = 2, + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 2, + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1285594161", - ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", - ["type"] = "explicit", + ["id"] = "enchant.stat_3429557654", + ["text"] = "Immune to Maim", + ["type"] = "enchant", }, }, - ["1328_SpearCriticalDamage"] = { - ["AnyJewel"] = { + ["7131_LocalWeaponRangeIncrease"] = { + ["1HMace"] = { ["max"] = 20, ["min"] = 10, }, - ["BaseJewel"] = { + ["1HWeapon"] = { ["max"] = 20, ["min"] = 10, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2456523742", - ["text"] = "#% increased Critical Damage Bonus with Spears", - ["type"] = "explicit", - }, - }, - ["1328_SpearCriticalDamageRadius"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_138421180", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", - ["type"] = "explicit", + ["Flail"] = { + ["max"] = 20, + ["min"] = 10, }, - }, - ["1437_MaximumLifeOnKillPercent"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Quarterstaff"] = { + ["max"] = 20, + ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Spear"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2023107756", - ["text"] = "Recover #% of maximum Life on Kill", - ["type"] = "explicit", + ["id"] = "enchant.stat_548198834", + ["text"] = "#% increased Melee Strike Range with this weapon", + ["type"] = "enchant", }, }, - ["1437_MaximumLifeOnKillPercentRadius"] = { - ["AnyJewel"] = { + ["7239_LocalRageOnHit"] = { + ["1HMace"] = { ["max"] = 1, ["min"] = 1, }, - ["RadiusJewel"] = { + ["1HWeapon"] = { ["max"] = 1, ["min"] = 1, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2726713579", - ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", - ["type"] = "explicit", - }, - }, - ["1443_ManaGainedOnKillPercentage"] = { - ["AnyJewel"] = { - ["max"] = 2, + ["2HMace"] = { + ["max"] = 1, ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 2, + ["2HWeapon"] = { + ["max"] = 1, ["min"] = 1, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1030153674", - ["text"] = "Recover #% of maximum Mana on Kill", - ["type"] = "explicit", + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["1443_ManaGainedOnKillPercentageRadius"] = { - ["AnyJewel"] = { + ["Quarterstaff"] = { ["max"] = 1, ["min"] = 1, }, - ["RadiusJewel"] = { + ["Spear"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_525523040", - ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", - ["type"] = "explicit", + ["id"] = "enchant.stat_1725749947", + ["text"] = "Grants # Rage on Hit", + ["type"] = "enchant", }, }, - ["1459_IncreasedTotemLife"] = { - ["AnyJewel"] = { - ["max"] = 20, + ["7320_LocalChanceToMaim"] = { + ["2HWeapon"] = { + ["max"] = 15, ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 20, + ["Bow"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Crossbow"] = { + ["max"] = 15, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_686254215", - ["text"] = "#% increased Totem Life", - ["type"] = "explicit", + ["id"] = "enchant.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", + ["type"] = "enchant", }, }, - ["1459_IncreasedTotemLifeRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["7334_LocalChanceToPoisonOnHit"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_442393998", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", - ["type"] = "explicit", + ["id"] = "enchant.stat_3885634897", + ["text"] = "#% chance to Poison on Hit with this weapon", + ["type"] = "enchant", }, }, - ["1466_BaseCurseDuration"] = { - ["AnyJewel"] = { + ["821_LocalPhysicalDamagePercent"] = { + ["1HMace"] = { ["max"] = 25, ["min"] = 15, }, - ["BaseJewel"] = { + ["1HWeapon"] = { ["max"] = 25, ["min"] = 15, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3824372849", - ["text"] = "#% increased Curse Duration", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["1466_BaseCurseDurationRadius"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["Bow"] = { + ["max"] = 25, + ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["Crossbow"] = { + ["max"] = 25, + ["min"] = 15, }, - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1087108135", - ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", - ["type"] = "explicit", + ["Quarterstaff"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["1539_IncreasedChillDuration"] = { - ["AnyJewel"] = { + ["Spear"] = { ["max"] = 25, ["min"] = 15, }, - ["BaseJewel"] = { + ["Talisman"] = { ["max"] = 25, ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3485067555", - ["text"] = "#% increased Chill Duration on Enemies", - ["type"] = "explicit", + ["id"] = "enchant.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "enchant", }, }, - ["1539_IncreasedChillDurationRadius"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["823_LocalFireDamage"] = { + ["1HMace"] = { + ["max"] = 18, + ["min"] = 12, }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["1HWeapon"] = { + ["max"] = 18, + ["min"] = 12, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 25.5, + ["min"] = 17, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_61644361", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 25.5, + ["min"] = 12, }, - }, - ["1540_ShockDuration"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["Bow"] = { + ["max"] = 18, + ["min"] = 12, }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["Crossbow"] = { + ["max"] = 25.5, + ["min"] = 17, }, - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 18, + ["min"] = 12, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3668351662", - ["text"] = "#% increased Shock Duration", - ["type"] = "explicit", + ["Quarterstaff"] = { + ["max"] = 25.5, + ["min"] = 17, }, - }, - ["1540_ShockDurationRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Spear"] = { + ["max"] = 18, + ["min"] = 12, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Talisman"] = { + ["max"] = 25.5, + ["min"] = 17, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3513818125", - ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", - ["type"] = "explicit", + ["id"] = "enchant.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "enchant", }, }, - ["1557_AreaOfEffect"] = { - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["824_LocalColdDamage"] = { + ["1HMace"] = { + ["max"] = 15.5, + ["min"] = 10.5, }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["1HWeapon"] = { + ["max"] = 15.5, + ["min"] = 10.5, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 21.5, + ["min"] = 14.5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 21.5, + ["min"] = 10.5, }, - }, - ["1557_AreaOfEffectRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Bow"] = { + ["max"] = 15.5, + ["min"] = 10.5, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Crossbow"] = { + ["max"] = 21.5, + ["min"] = 14.5, + }, + ["Flail"] = { + ["max"] = 15.5, + ["min"] = 10.5, + }, + ["Quarterstaff"] = { + ["max"] = 21.5, + ["min"] = 14.5, + }, + ["Spear"] = { + ["max"] = 15.5, + ["min"] = 10.5, + }, + ["Talisman"] = { + ["max"] = 21.5, + ["min"] = 14.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3391917254", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", - ["type"] = "explicit", + ["id"] = "enchant.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "enchant", }, }, - ["1572_SkillEffectDuration"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["825_LocalLightningDamage"] = { + ["1HMace"] = { + ["max"] = 22.5, + ["min"] = 15, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["1HWeapon"] = { + ["max"] = 22.5, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 32, + ["min"] = 21, + }, + ["2HWeapon"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 22.5, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 32, + ["min"] = 21, + }, + ["Flail"] = { + ["max"] = 22.5, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 32, + ["min"] = 21, + }, + ["Spear"] = { + ["max"] = 22.5, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 32, + ["min"] = 21, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "explicit", + ["id"] = "enchant.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "enchant", }, }, - ["1572_SkillEffectDurationRadius"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["RadiusJewel"] = { + ["827_MovementVelocity"] = { + ["Boots"] = { ["max"] = 5, ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3113764475", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", - ["type"] = "explicit", + ["id"] = "enchant.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "enchant", }, }, - ["1646_MinionDamage"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["828_IncreasedSkillSpeed"] = { + ["Quiver"] = { + ["max"] = 6, + ["min"] = 4, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_970213192", + ["text"] = "#% increased Skill Speed", + ["type"] = "enchant", }, }, - ["1646_MinionDamageRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["834_LocalPhysicalDamageReductionRatingPercent"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2954360902", - ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "enchant", }, }, - ["1651_ElementalDamagePercent"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["835_LocalEvasionRatingIncreasePercent"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "enchant", }, }, - ["1651_ElementalDamagePercentRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["836_LocalEnergyShieldPercent"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Focus"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3222402650", - ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "enchant", }, }, - ["1663_ProjectileDamage"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["837_LocalArmourAndEvasion"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "enchant", }, }, - ["1663_ProjectileDamageRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["838_LocalArmourAndEnergyShield"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_455816363", - ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", - ["type"] = "explicit", + ["id"] = "enchant.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "enchant", }, }, - ["1669_KnockbackDistance"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["839_LocalEvasionAndEnergyShield"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_565784293", - ["text"] = "#% increased Knockback Distance", - ["type"] = "explicit", + ["id"] = "enchant.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "enchant", }, }, - ["1669_KnockbackDistanceRadius"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["842_LocalIncreasedSpiritPercent"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["Sceptre"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2976476845", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", - ["type"] = "explicit", + ["id"] = "enchant.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "enchant", }, }, - ["1719_GlobalFlaskLifeRecovery"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["853_WeaponSpellDamage"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["Focus"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", - ["type"] = "explicit", + ["id"] = "enchant.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "enchant", }, }, - ["1719_GlobalFlaskLifeRecoveryRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["859_IncreasedWeaponElementalDamagePercent"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 20, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 50, + ["min"] = 40, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_980177976", - ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 20, }, - }, - ["1720_FlaskManaRecovery"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Bow"] = { + ["max"] = 30, + ["min"] = 20, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Crossbow"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["Flail"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Quarterstaff"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["Spear"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Talisman"] = { + ["max"] = 50, + ["min"] = 40, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2222186378", - ["text"] = "#% increased Mana Recovery from Flasks", - ["type"] = "explicit", + ["id"] = "enchant.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "enchant", }, }, - ["1720_FlaskManaRecoveryRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["862_IncreasedAccuracy"] = { + ["Helmet"] = { + ["max"] = 100, + ["min"] = 50, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Quiver"] = { + ["max"] = 100, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3774951878", - ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", - ["type"] = "explicit", + ["id"] = "enchant.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["1820_LifeLeechAmount"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["864_GlobalPhysicalDamageReductionRatingPercent"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2112395885", - ["text"] = "#% increased amount of Life Leeched", - ["type"] = "explicit", + ["id"] = "enchant.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "enchant", }, }, - ["1820_LifeLeechAmountRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["866_GlobalEvasionRatingPercent"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3666476747", - ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", - ["type"] = "explicit", + ["id"] = "enchant.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "enchant", }, }, - ["1822_ManaLeechAmount"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["868_GlobalEnergyShieldPercent"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2839066308", - ["text"] = "#% increased amount of Mana Leeched", - ["type"] = "explicit", + ["id"] = "enchant.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "enchant", }, }, - ["1822_ManaLeechAmountRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["869_IncreasedLife"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 30, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Chest"] = { + ["max"] = 40, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3700202631", - ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", - ["type"] = "explicit", + ["id"] = "enchant.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["1871_MarkCastSpeed"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["871_IncreasedMana"] = { + ["Focus"] = { + ["max"] = 25, + ["min"] = 20, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Quiver"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 25, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1714971114", - ["text"] = "Mark Skills have #% increased Use Speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["1871_MarkCastSpeedRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["874_BaseSpirit"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2202308025", - ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["1875_CurseAreaOfEffect"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["881_AlliesInPresenceAllDamage"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["Sceptre"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_153777645", - ["text"] = "#% increased Area of Effect of Curses", - ["type"] = "explicit", + ["id"] = "enchant.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "enchant", }, }, - ["1875_CurseAreaOfEffectRadius"] = { - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 3, + ["892_AlliesInPresenceCriticalStrikeMultiplier"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 6, - ["min"] = 3, + ["Sceptre"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3859848445", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", - ["type"] = "explicit", + ["id"] = "enchant.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "enchant", }, }, - ["1946_MinionPhysicalDamageReduction"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["893_AlliesInPresenceIncreasedAttackSpeed"] = { + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["Sceptre"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3119612865", - ["text"] = "Minions have #% additional Physical Damage Reduction", - ["type"] = "explicit", + ["id"] = "enchant.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "enchant", }, }, - ["1946_MinionPhysicalDamageReductionRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["894_AlliesInPresenceIncreasedCastSpeed"] = { + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Sceptre"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_30438393", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", - ["type"] = "explicit", + ["id"] = "enchant.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["type"] = "enchant", }, }, - ["2250_SummonTotemCastSpeed"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { + ["8959_ChainFromTerrain"] = { + ["Quiver"] = { ["max"] = 20, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "enchant", }, }, - ["2250_SummonTotemCastSpeedRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["916_ItemFoundRarityIncrease"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Ring"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1145481685", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "enchant", }, }, - ["2266_CurseEffectivenessForJewel"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["918_LocalCriticalStrikeMultiplier"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["2266_CurseEffectivenessForJewelRadius"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["Bow"] = { + ["max"] = 10, + ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["Crossbow"] = { + ["max"] = 10, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2770044702", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", - ["type"] = "explicit", + ["Quarterstaff"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["2268_MarkEffect"] = { - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 4, + ["Spear"] = { + ["max"] = 10, + ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, + ["Talisman"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_712554801", - ["text"] = "#% increased Effect of your Mark Skills", - ["type"] = "explicit", + ["id"] = "enchant.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["2268_MarkEffectRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["921_LocalAttributeRequirements"] = { + ["1HMace"] = { + ["max"] = -10, + ["min"] = -20, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["1HWeapon"] = { + ["max"] = -10, + ["min"] = -20, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = -10, + ["min"] = -20, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_179541474", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = -10, + ["min"] = -20, }, - }, - ["2362_DamageRemovedFromManaBeforeLife"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["Boots"] = { + ["max"] = -10, + ["min"] = -20, }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["Bow"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Chest"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Crossbow"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Flail"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Focus"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Gloves"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Helmet"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Quarterstaff"] = { + ["max"] = -10, + ["min"] = -20, }, + ["Sceptre"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Shield"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Spear"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Staff"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Talisman"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["Wand"] = { + ["max"] = -10, + ["min"] = -20, + }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", - ["type"] = "explicit", + ["id"] = "enchant.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", + ["type"] = "enchant", }, }, - ["2362_DamageRemovedFromManaBeforeLifeRadius"] = { - ["AnyJewel"] = { + ["924_GlobalIncreaseFireSpellSkillGemLevel"] = { + ["1HWeapon"] = { ["max"] = 1, ["min"] = 1, }, - ["RadiusJewel"] = { + ["2HWeapon"] = { ["max"] = 1, ["min"] = 1, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2709646369", - ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", - ["type"] = "explicit", + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["2472_AuraEffectForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_315791320", - ["text"] = "Aura Skills have #% increased Magnitudes", - ["type"] = "explicit", + ["id"] = "enchant.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skills", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["2472_AuraEffectForJewelRadius"] = { - ["specialCaseData"] = { + ["925_GlobalIncreaseColdSpellSkillGemLevel"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3243034867", - ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["2558_MinionElementalResistance"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1423639565", - ["text"] = "Minions have #% to all Elemental Resistances", - ["type"] = "explicit", + ["id"] = "enchant.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skills", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["2558_MinionElementalResistanceRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, + ["926_GlobalIncreaseLightningSpellSkillGemLevel"] = { + ["1HWeapon"] = { + ["max"] = 1, ["min"] = 1, }, - ["RadiusJewel"] = { - ["max"] = 2, + ["2HWeapon"] = { + ["max"] = 1, ["min"] = 1, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3225608889", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["2559_MinionChaosResistance"] = { - ["AnyJewel"] = { - ["max"] = 13, - ["min"] = 7, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 13, - ["min"] = 7, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3837707023", - ["text"] = "Minions have #% to Chaos Resistance", - ["type"] = "explicit", + ["id"] = "enchant.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skills", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["2559_MinionChaosResistanceRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, + ["927_GlobalIncreaseChaosSpellSkillGemLevel"] = { + ["1HWeapon"] = { + ["max"] = 1, ["min"] = 1, }, - ["RadiusJewel"] = { - ["max"] = 2, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1756380435", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", - ["type"] = "explicit", + ["id"] = "enchant.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skills", + ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["2613_FireResistancePenetration"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["928_GlobalIncreaseMeleeSkillGemLevel"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", - ["type"] = "explicit", + ["id"] = "enchant.stat_9187492", + ["text"] = "# to Level of all Melee Skills", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["2613_FireResistancePenetrationRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, + ["931_GlobalIncreaseMinionSpellSkillGemLevel"] = { + ["Helmet"] = { + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1432756708", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", - ["type"] = "explicit", + ["id"] = "enchant.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["2614_ColdResistancePenetration"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["935_SpellCriticalStrikeChance"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", - ["type"] = "explicit", + ["id"] = "enchant.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "enchant", }, }, - ["2614_ColdResistancePenetrationRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["937_CriticalStrikeMultiplier"] = { + ["Quiver"] = { + ["max"] = 20, + ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Ring"] = { + ["max"] = 20, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1896066427", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", - ["type"] = "explicit", + ["id"] = "enchant.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", + ["type"] = "enchant", }, }, - ["2615_LightningResistancePenetration"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["942_IncreasedCastSpeed"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", - ["type"] = "explicit", + ["id"] = "enchant.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "enchant", }, }, - ["2615_LightningResistancePenetrationRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, + ["943_AdditionalAmmo"] = { + ["2HWeapon"] = { + ["max"] = 1, ["min"] = 1, }, - ["RadiusJewel"] = { - ["max"] = 2, + ["Crossbow"] = { + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_868556494", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", - ["type"] = "explicit", + ["id"] = "enchant.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "enchant", }, }, - ["2649_MinionAreaOfEffect"] = { + ["943_Strength"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 5, + ["max"] = 6, + ["min"] = 4, }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 5, + ["max"] = 6, + ["min"] = 4, + }, + ["RadiusJewel"] = { + ["max"] = 6, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3811191316", - ["text"] = "Minions have #% increased Area of Effect", - ["type"] = "explicit", + ["id"] = "enchant.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["2649_MinionAreaOfEffectRadius"] = { + ["944_Dexterity"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 6, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, }, ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 6, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2534359663", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", - ["type"] = "explicit", + ["id"] = "enchant.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["2786_PoisonDuration"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["945_AdditionalArrows"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", - ["type"] = "explicit", + ["id"] = "enchant.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "enchant", }, }, - ["2786_PoisonDurationRadius"] = { + ["945_Intelligence"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 6, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, }, ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 6, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_221701169", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", - ["type"] = "explicit", + ["id"] = "enchant.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["2789_BaseChanceToPoison"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["947_Strength"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", - ["type"] = "explicit", + ["id"] = "enchant.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["2789_BaseChanceToPoisonRadius"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["948_Dexterity"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2840989393", - ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", - ["type"] = "explicit", + ["id"] = "enchant.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["2821_DamageVsRareOrUnique"] = { - ["AnyJewel"] = { - ["max"] = 20, + ["949_Intelligence"] = { + ["Amulet"] = { + ["max"] = 15, ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 20, + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 15, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1852872083", - ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", - ["type"] = "explicit", + ["id"] = "enchant.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["2821_DamageVsRareOrUniqueRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["951_ReducedPhysicalDamageTaken"] = { + ["Chest"] = { + ["max"] = 5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_147764878", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", - ["type"] = "explicit", + ["id"] = "enchant.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "enchant", }, }, - ["2878_IncreasedStunThreshold"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["952_MaximumElementalResistance"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", - ["type"] = "explicit", + ["id"] = "enchant.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["2878_IncreasedStunThresholdRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, + ["953_MaximumFireResist"] = { + ["Belt"] = { + ["max"] = 3, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_484792219", - ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", - ["type"] = "explicit", + ["id"] = "enchant.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["2879_FreezeThreshold"] = { + ["954_FireResistance"] = { ["AnyJewel"] = { - ["max"] = 32, - ["min"] = 18, + ["max"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3780644166", - ["text"] = "#% increased Freeze Threshold", - ["type"] = "explicit", + ["id"] = "enchant.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["2879_FreezeThresholdRadius"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["954_MaximumColdResist"] = { + ["Helmet"] = { + ["max"] = 3, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_830345042", - ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", - ["type"] = "explicit", + ["id"] = "enchant.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["2884_WarcrySpeed"] = { + ["955_ColdResistance"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1316278494", - ["text"] = "#% increased Warcry Speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["2884_WarcrySpeedRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { + ["955_MaximumLightningResistance"] = { + ["Boots"] = { ["max"] = 3, - ["min"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1602294220", - ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", - ["type"] = "explicit", + ["id"] = "enchant.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["2929_WarcryCooldownSpeed"] = { + ["956_LightningResistance"] = { ["AnyJewel"] = { - ["max"] = 15, + ["max"] = 10, ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 15, + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4159248054", - ["text"] = "#% increased Warcry Cooldown Recovery Rate", - ["type"] = "explicit", + ["id"] = "enchant.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["2929_WarcryCooldownSpeedRadius"] = { + ["957_AllResistances"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "enchant", + }, + ["usePositiveSign"] = true, + }, + ["957_ChaosResistance"] = { ["AnyJewel"] = { ["max"] = 7, ["min"] = 3, }, + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["RadiusJewel"] = { ["max"] = 7, ["min"] = 3, @@ -9251,284 +9456,432 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2056107438", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", - ["type"] = "explicit", + ["id"] = "enchant.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["3802_DamageIfConsumedCorpse"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["958_FireResistance"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 20, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Boots"] = { + ["max"] = 25, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2118708619", - ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", - ["type"] = "explicit", + ["id"] = "enchant.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["3802_DamageIfConsumedCorpseRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["959_ColdResistance"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 20, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Boots"] = { + ["max"] = 25, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1892122971", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", - ["type"] = "explicit", + ["id"] = "enchant.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["3849_CrossbowDamage"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["960_LightningResistance"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 20, }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["Boots"] = { + ["max"] = 25, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_427684353", - ["text"] = "#% increased Damage with Crossbows", - ["type"] = "explicit", + ["id"] = "enchant.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["3849_CrossbowDamageRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["961_ChaosResistance"] = { + ["Chest"] = { + ["max"] = 19, + ["min"] = 13, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Ring"] = { + ["max"] = 19, + ["min"] = 13, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_517664839", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", - ["type"] = "explicit", + ["id"] = "enchant.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["3853_CrossbowSpeed"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["9646_ThornsDamageIncrease"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 40, }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["Shield"] = { + ["max"] = 50, + ["min"] = 40, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1135928777", - ["text"] = "#% increased Attack Speed with Crossbows", - ["type"] = "explicit", + ["id"] = "enchant.stat_1315743832", + ["text"] = "#% increased Thorns damage", + ["type"] = "enchant", }, }, - ["3853_CrossbowSpeedRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["967_EnergyShieldDelay"] = { + ["Focus"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_715957346", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", - ["type"] = "explicit", + ["id"] = "enchant.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "enchant", }, }, - ["4136_AilmentChance"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["969_LifeRegenerationRate"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Ring"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1772247089", - ["text"] = "#% increased chance to inflict Ailments", - ["type"] = "explicit", + ["id"] = "enchant.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "enchant", }, }, - ["4136_AilmentChanceRadius"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["970_DamageTakenGainedAsLife"] = { + ["Chest"] = { + ["max"] = 20, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 7, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "enchant", + }, + }, + ["971_LifeLeechPermyriad"] = { + ["Amulet"] = { + ["max"] = 3, ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_412709880", - ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", - ["type"] = "explicit", + ["id"] = "enchant.stat_2557965901", + ["text"] = "Leech #% of Physical Attack Damage as Life", + ["type"] = "enchant", }, }, - ["4140_AilmentEffect"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["975_LifeGainedFromEnemyDeath"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 20, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Quiver"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 25, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1303248024", - ["text"] = "#% increased Magnitude of Ailments you inflict", - ["type"] = "explicit", + ["id"] = "enchant.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "enchant", }, }, - ["4140_AilmentEffectRadius"] = { + ["9764_YouCannotBeHindered"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1321104829", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", - ["type"] = "explicit", + ["id"] = "enchant.stat_721014846", + ["text"] = "You cannot be Hindered", + ["type"] = "enchant", }, }, - ["4146_AilmentThresholdfromEnergyShield"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["976_ManaRegeneration"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 20, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3398301358", - ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", - ["type"] = "explicit", + ["id"] = "enchant.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "enchant", }, }, - ["4146_AilmentThresholdfromEnergyShieldRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["977_PercentDamageGoesToMana"] = { + ["Chest"] = { + ["max"] = 20, + ["min"] = 10, }, - ["RadiusJewel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "enchant", + }, + }, + ["979_ManaLeechPermyriad"] = { + ["Amulet"] = { ["max"] = 2, - ["min"] = 1, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_693237939", - ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", - ["type"] = "explicit", + ["id"] = "enchant.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", + ["type"] = "enchant", }, }, - ["4147_IncreasedAilmentThreshold"] = { - ["AnyJewel"] = { - ["max"] = 20, + ["980_ManaGainedFromEnemyDeath"] = { + ["1HWeapon"] = { + ["max"] = 15, ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 20, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 15, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3544800472", - ["text"] = "#% increased Elemental Ailment Threshold", - ["type"] = "explicit", + ["id"] = "enchant.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "enchant", }, }, - ["4147_IncreasedAilmentThresholdRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["985_LocalStunDamageIncrease"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 20, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Flail"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Quarterstaff"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Spear"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3409275777", - ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", - ["type"] = "explicit", + ["id"] = "enchant.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "enchant", }, }, - ["4283_ArmourBreak"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["988_IgniteChanceIncrease"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1776411443", - ["text"] = "Break #% increased Armour", - ["type"] = "explicit", + ["id"] = "enchant.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "enchant", }, }, - ["4283_ArmourBreakRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["9897_WeaponSwapSpeed"] = { + ["specialCaseData"] = { }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "enchant.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", + ["type"] = "enchant", + }, + }, + ["990_FreezeDamageIncrease"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4089835882", - ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", + ["id"] = "enchant.stat_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "enchant", + }, + }, + ["992_ShockChanceIncrease"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "enchant", + }, + }, + ["998_PresenceRadius"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "enchant", + }, + }, + }, + ["Enchant"] = { + }, + ["Explicit"] = { + ["1000_ReducedPoisonDuration"] = { + ["Chest"] = { + ["max"] = -36, + ["min"] = -60, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3301100256", + ["text"] = "#% increased Poison Duration on you", ["type"] = "explicit", }, }, - ["4285_ArmourBreakDuration"] = { + ["1001_ChanceToPierce"] = { ["AnyJewel"] = { ["max"] = 20, ["min"] = 10, @@ -9537,15 +9890,19 @@ return { ["max"] = 20, ["min"] = 10, }, + ["Quiver"] = { + ["max"] = 26, + ["min"] = 12, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2637470878", - ["text"] = "#% increased Armour Break Duration", + ["id"] = "explicit.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", ["type"] = "explicit", }, }, - ["4285_ArmourBreakDurationRadius"] = { + ["1001_ChanceToPierceRadius"] = { ["AnyJewel"] = { ["max"] = 10, ["min"] = 5, @@ -9557,131 +9914,203 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_504915064", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", + ["id"] = "explicit.stat_1800303440", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", ["type"] = "explicit", }, }, - ["4453_AttacksBlindOnHitChance"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["1002_PresenceRadius"] = { + ["1HWeapon"] = { + ["max"] = 80, + ["min"] = 36, + }, + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 25, + ["min"] = 15, + }, + ["Sceptre"] = { + ["max"] = 80, + ["min"] = 36, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_318953428", - ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["id"] = "explicit.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", ["type"] = "explicit", }, }, - ["4453_AttacksBlindOnHitChanceRadius"] = { + ["1002_PresenceRadiusRadius"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 12, + ["min"] = 8, }, ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 12, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2610562860", - ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", + ["id"] = "explicit.stat_4032352472", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", ["type"] = "explicit", }, }, - ["4495_BannerArea"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["1003_LightRadiusAndAccuracy"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "explicit", + }, + }, + ["1003_LightRadiusAndManaRegeneration"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_429143663", - ["text"] = "Banner Skills have #% increased Area of Effect", + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", ["type"] = "explicit", }, }, - ["4495_BannerAreaRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["1003_LocalLightRadiusAndAccuracy"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4142814612", - ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", ["type"] = "explicit", }, }, - ["4497_BannerDuration"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["1004_FlaskChanceRechargeOnKill"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "explicit.stat_828533480", + ["text"] = "#% Chance to gain a Charge when you kill an enemy", + ["type"] = "explicit", }, + }, + ["1005_FlaskIncreasedChargesAdded"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2720982137", - ["text"] = "Banner Skills have #% increased Duration", + ["id"] = "explicit.stat_3196823591", + ["text"] = "#% increased Charges gained", ["type"] = "explicit", }, }, - ["4497_BannerDurationRadius"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 3, + ["1006_FlaskChargesUsed"] = { + ["invertOnNegative"] = true, + ["specialCaseData"] = { }, - ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 3, + ["tradeMod"] = { + ["id"] = "explicit.stat_388617051", + ["text"] = "#% increased Charges per use", + ["type"] = "explicit", }, + }, + ["1008_FlaskIncreasedMaxCharges"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2690740379", - ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", + ["id"] = "explicit.stat_1366840608", + ["text"] = "#% increased Charges", ["type"] = "explicit", }, }, - ["4522_BleedDuration"] = { + ["1009_IgniteEffect"] = { ["AnyJewel"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", + ["id"] = "explicit.stat_3791899485", + ["text"] = "#% increased Ignite Magnitude", ["type"] = "explicit", }, }, - ["4522_BleedDurationRadius"] = { + ["1009_IgniteEffectRadius"] = { ["AnyJewel"] = { ["max"] = 7, ["min"] = 3, @@ -9693,12 +10122,12 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1505023559", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", + ["id"] = "explicit.stat_253641217", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", ["type"] = "explicit", }, }, - ["4532_BaseChanceToBleed"] = { + ["1064_IncreasedBlockChance"] = { ["AnyJewel"] = { ["max"] = 7, ["min"] = 3, @@ -9710,80 +10139,73 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2174054121", - ["text"] = "#% chance to inflict Bleeding on Hit", + ["id"] = "explicit.stat_4147897060", + ["text"] = "#% increased Block chance", ["type"] = "explicit", }, }, - ["4532_BaseChanceToBleedRadius"] = { + ["1064_IncreasedBlockChanceRadius"] = { ["AnyJewel"] = { - ["max"] = 1, + ["max"] = 3, ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 1, + ["max"] = 3, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_944643028", - ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", + ["id"] = "explicit.stat_3821543413", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", ["type"] = "explicit", }, }, - ["4539_GlobalCooldownRecovery"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["1080_PercentageStrength"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", + ["id"] = "explicit.stat_734614379", + ["text"] = "#% increased Strength", ["type"] = "explicit", }, }, - ["4539_GlobalCooldownRecoveryRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 1, + ["1081_PercentageDexterity"] = { + ["specialCaseData"] = { }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "explicit.stat_4139681126", + ["text"] = "#% increased Dexterity", + ["type"] = "explicit", }, + }, + ["1082_PercentageIntelligence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2149603090", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + ["id"] = "explicit.stat_656461285", + ["text"] = "#% increased Intelligence", ["type"] = "explicit", }, }, - ["4605_LifeCost"] = { + ["1089_TotemDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["max"] = 18, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["max"] = 18, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2480498143", - ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", ["type"] = "explicit", }, }, - ["4605_LifeCostRadius"] = { + ["1089_TotemDamageForJewelRadius"] = { ["AnyJewel"] = { ["max"] = 3, ["min"] = 2, @@ -9795,48 +10217,46 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3386297724", - ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", + ["id"] = "explicit.stat_2108821127", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", ["type"] = "explicit", }, }, - ["4608_SlowPotency"] = { + ["1093_AttackDamage"] = { ["AnyJewel"] = { - ["max"] = -5, - ["min"] = -10, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = -5, - ["min"] = -10, + ["max"] = 15, + ["min"] = 5, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["id"] = "explicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", ["type"] = "explicit", }, }, - ["4608_SlowPotencyRadius"] = { + ["1093_AttackDamageRadius"] = { ["AnyJewel"] = { - ["max"] = -2, - ["min"] = -5, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = -2, - ["min"] = -5, + ["max"] = 2, + ["min"] = 1, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2580617872", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", + ["id"] = "explicit.stat_1426522529", + ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", ["type"] = "explicit", }, }, - ["4662_BleedDotMultiplier"] = { + ["1122_PhysicalDamagePercent"] = { ["AnyJewel"] = { ["max"] = 15, ["min"] = 5, @@ -9848,148 +10268,148 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3166958180", - ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", ["type"] = "explicit", }, }, - ["4662_BleedDotMultiplierRadius"] = { + ["1122_PhysicalDamagePercentRadius"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_391602279", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", + ["id"] = "explicit.stat_1417267954", + ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", ["type"] = "explicit", }, }, - ["4781_BlindEffect"] = { + ["1124_MeleeDamage"] = { ["AnyJewel"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1585769763", - ["text"] = "#% increased Blind Effect", + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", ["type"] = "explicit", }, }, - ["4781_BlindEffectRadius"] = { + ["1124_MeleeDamageRadius"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2912416697", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", + ["id"] = "explicit.stat_1337740333", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", ["type"] = "explicit", }, }, - ["5139_ForkingProjectiles"] = { + ["1175_IncreasedStaffDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, + ["max"] = 16, + ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3003542304", - ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", + ["id"] = "explicit.stat_4045894391", + ["text"] = "#% increased Damage with Quarterstaves", ["type"] = "explicit", }, }, - ["5139_ForkingProjectilesRadius"] = { + ["1175_IncreasedStaffDamageForJewelRadius"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 5, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 5, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4258720395", - ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", + ["id"] = "explicit.stat_821948283", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", ["type"] = "explicit", }, }, - ["5227_CharmChargesGained"] = { + ["1186_IncreasedMaceDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 16, + ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", + ["id"] = "explicit.stat_1181419800", + ["text"] = "#% increased Damage with Maces", ["type"] = "explicit", }, }, - ["5227_CharmChargesGainedRadius"] = { + ["1186_IncreasedMaceDamageForJewelRadius"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2320654813", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", + ["id"] = "explicit.stat_1852184471", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", ["type"] = "explicit", }, }, - ["5339_CompanionDamage"] = { + ["1190_IncreasedBowDamageForJewel"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 16, + ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_234296660", - ["text"] = "Companions deal #% increased Damage", + ["id"] = "explicit.stat_4188894176", + ["text"] = "#% increased Damage with Bows", ["type"] = "explicit", }, }, - ["5339_CompanionDamageRadius"] = { + ["1190_IncreasedBowDamageForJewelRadius"] = { ["AnyJewel"] = { ["max"] = 3, ["min"] = 2, @@ -10001,148 +10421,124 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1494950893", - ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", + ["id"] = "explicit.stat_945774314", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", ["type"] = "explicit", }, }, - ["5342_CompanionLife"] = { + ["1204_SpearDamage"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 16, + ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1805182458", - ["text"] = "Companions have #% increased maximum Life", + ["id"] = "explicit.stat_2696027455", + ["text"] = "#% increased Damage with Spears", ["type"] = "explicit", }, }, - ["5342_CompanionLifeRadius"] = { + ["1204_SpearDamageRadius"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2638756573", - ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", + ["id"] = "explicit.stat_2809428780", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", ["type"] = "explicit", }, }, - ["5424_CriticalAilmentEffect"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["1225_ChaosDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_440490623", - ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["id"] = "explicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", ["type"] = "explicit", }, }, - ["5424_CriticalAilmentEffectRadius"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["1227_LocalChaosDamage"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4092130601", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", ["type"] = "explicit", }, }, - ["5530_CurseDelay"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["1227_LocalChaosDamageTwoHand"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1104825894", - ["text"] = "#% faster Curse Activation", + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", ["type"] = "explicit", }, }, - ["5553_DamagevsArmourBrokenEnemies"] = { + ["1256_StaffAttackSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 4, + ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2301718443", - ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", + ["id"] = "explicit.stat_3283482523", + ["text"] = "#% increased Attack Speed with Quarterstaves", ["type"] = "explicit", }, }, - ["5553_DamagevsArmourBrokenEnemiesRadius"] = { + ["1256_StaffAttackSpeedForJewelRadius"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1834658952", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", + ["id"] = "explicit.stat_111835965", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", ["type"] = "explicit", }, }, - ["5567_ShapeshiftDamageForJewel"] = { + ["1260_BowAttackSpeedForJewel"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 4, + ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2440073079", - ["text"] = "#% increased Damage while Shapeshifted", + ["id"] = "explicit.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", ["type"] = "explicit", }, }, - ["5567_ShapeshiftDamageForJewelRadius"] = { + ["1260_BowAttackSpeedForJewelRadius"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, @@ -10154,760 +10550,781 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_266564538", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", + ["id"] = "explicit.stat_3641543553", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", ["type"] = "explicit", }, }, - ["5627_CharmDamageWhileUsing"] = { + ["1263_SpearAttackSpeed"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 4, + ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_627767961", - ["text"] = "#% increased Damage while you have an active Charm", + ["id"] = "explicit.stat_1165163804", + ["text"] = "#% increased Attack Speed with Spears", ["type"] = "explicit", }, }, - ["5627_CharmDamageWhileUsingRadius"] = { + ["1263_SpearAttackSpeedRadius"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3752589831", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", + ["id"] = "explicit.stat_1266413530", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", ["type"] = "explicit", }, }, - ["5632_HeraldDamage"] = { + ["1268_IncreasedAccuracyPercent"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_21071013", - ["text"] = "Herald Skills deal #% increased Damage", + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Accuracy Rating", ["type"] = "explicit", }, }, - ["5632_HeraldDamageRadius"] = { + ["1268_IncreasedAccuracyPercentRadius"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3065378291", - ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", + ["id"] = "explicit.stat_533892981", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", ["type"] = "explicit", }, }, - ["5668_DamagingAilmentDuration"] = { + ["1277_BowIncreasedAccuracyRating"] = { ["AnyJewel"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1829102168", - ["text"] = "#% increased Duration of Damaging Ailments on Enemies", + ["id"] = "explicit.stat_169946467", + ["text"] = "#% increased Accuracy Rating with Bows", ["type"] = "explicit", }, }, - ["5668_DamagingAilmentDurationRadius"] = { + ["1277_BowIncreasedAccuracyRatingRadius"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2272980012", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", + ["id"] = "explicit.stat_1285594161", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", ["type"] = "explicit", }, }, - ["5671_FasterAilmentDamageForJewel"] = { + ["1328_SpearCriticalDamage"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_538241406", - ["text"] = "Damaging Ailments deal damage #% faster", + ["id"] = "explicit.stat_2456523742", + ["text"] = "#% increased Critical Damage Bonus with Spears", ["type"] = "explicit", }, }, - ["5671_FasterAilmentDamageForJewelRadius"] = { + ["1328_SpearCriticalDamageRadius"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 10, + ["min"] = 5, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3173882956", - ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", + ["id"] = "explicit.stat_138421180", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", ["type"] = "explicit", }, }, - ["5703_DebuffTimePassed"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["1402_GlobalIncreasePhysicalSpellSkillGemLevel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1238227257", - ["text"] = "Debuffs on you expire #% faster", + ["id"] = "explicit.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skills", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["5703_DebuffTimePassedRadius"] = { - ["AnyJewel"] = { + ["1402_GlobalIncreasePhysicalSpellSkillGemLevelWeapon"] = { + ["1HWeapon"] = { ["max"] = 5, - ["min"] = 3, + ["min"] = 1, }, - ["RadiusJewel"] = { + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Wand"] = { ["max"] = 5, - ["min"] = 3, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2256120736", - ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", + ["id"] = "explicit.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skills", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["5912_ExertedAttackDamage"] = { + ["1437_MaximumLifeOnKillPercent"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 2, + ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1569101201", - ["text"] = "Empowered Attacks deal #% increased Damage", + ["id"] = "explicit.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", ["type"] = "explicit", }, }, - ["5912_ExertedAttackDamageRadius"] = { + ["1437_MaximumLifeOnKillPercentRadius"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 1, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3395186672", - ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", + ["id"] = "explicit.stat_2726713579", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", ["type"] = "explicit", }, }, - ["5987_EnergyGeneration"] = { + ["1443_ManaGainedOnKillPercentage"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 4, + ["max"] = 2, + ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", + ["id"] = "explicit.stat_1030153674", + ["text"] = "Recover #% of maximum Mana on Kill", ["type"] = "explicit", }, }, - ["5987_EnergyGenerationRadius"] = { + ["1443_ManaGainedOnKillPercentageRadius"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["max"] = 1, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2849546516", - ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", + ["id"] = "explicit.stat_525523040", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", ["type"] = "explicit", }, }, - ["6002_FocusEnergyShield"] = { + ["1446_GainManaOnBlock"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "explicit", + }, + }, + ["1459_IncreasedTotemLife"] = { ["AnyJewel"] = { - ["max"] = 50, - ["min"] = 30, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 50, - ["min"] = 30, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3174700878", - ["text"] = "#% increased Energy Shield from Equipped Focus", + ["id"] = "explicit.stat_686254215", + ["text"] = "#% increased Totem Life", ["type"] = "explicit", }, }, - ["6002_FocusEnergyShieldRadius"] = { + ["1459_IncreasedTotemLifeRadius"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3419203492", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", + ["id"] = "explicit.stat_442393998", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", ["type"] = "explicit", }, }, - ["6216_IncreasedFlaskChargesGained"] = { + ["1466_BaseCurseDuration"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 25, + ["min"] = 15, }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1836676211", - ["text"] = "#% increased Flask Charges gained", + ["id"] = "explicit.stat_3824372849", + ["text"] = "#% increased Curse Duration", ["type"] = "explicit", }, }, - ["6216_IncreasedFlaskChargesGainedRadius"] = { + ["1466_BaseCurseDurationRadius"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 4, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2066964205", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", + ["id"] = "explicit.stat_1087108135", + ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", ["type"] = "explicit", }, }, - ["6431_RageOnHit"] = { + ["1539_IncreasedChillDuration"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 25, + ["min"] = 15, }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2709367754", - ["text"] = "Gain # Rage on Melee Hit", + ["id"] = "explicit.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", ["type"] = "explicit", }, }, - ["6431_RageOnHitRadius"] = { + ["1539_IncreasedChillDurationRadius"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 12, + ["min"] = 6, }, ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 12, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2969557004", - ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", + ["id"] = "explicit.stat_61644361", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", ["type"] = "explicit", }, }, - ["6433_GainRageWhenHit"] = { + ["1540_ShockDuration"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 1, + ["max"] = 25, + ["min"] = 15, }, ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 1, + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3292710273", - ["text"] = "Gain # Rage when Hit by an Enemy", + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration", ["type"] = "explicit", }, }, - ["6433_GainRageWhenHitRadius"] = { + ["1540_ShockDurationRadius"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2131720304", - ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", + ["id"] = "explicit.stat_3513818125", + ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", ["type"] = "explicit", }, }, - ["6474_BannerValourGained"] = { + ["1557_AreaOfEffect"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 15, + ["max"] = 6, + ["min"] = 4, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 15, + ["max"] = 6, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1869147066", - ["text"] = "#% increased Glory generation for Banner Skills", + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", ["type"] = "explicit", }, }, - ["6474_BannerValourGainedRadius"] = { + ["1557_AreaOfEffectRadius"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2907381231", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", + ["id"] = "explicit.stat_3391917254", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", ["type"] = "explicit", }, }, - ["6536_HazardDamage"] = { + ["1572_SkillEffectDuration"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1697951953", - ["text"] = "#% increased Hazard Damage", + ["id"] = "explicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", ["type"] = "explicit", }, }, - ["6536_HazardDamageRadius"] = { + ["1572_SkillEffectDurationRadius"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 5, + ["min"] = 3, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_255840549", - ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", + ["id"] = "explicit.stat_3113764475", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", ["type"] = "explicit", }, }, - ["6750_PinBuildup"] = { + ["1601_DamageasExtraPhysical"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4019237939", + ["text"] = "Gain #% of Damage as Extra Physical Damage", + ["type"] = "explicit", + }, + }, + ["1646_MinionDamage"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3473929743", - ["text"] = "#% increased Pin Buildup", + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", ["type"] = "explicit", }, }, - ["6750_PinBuildupRadius"] = { + ["1646_MinionDamageRadius"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1944020877", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", + ["id"] = "explicit.stat_2954360902", + ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", ["type"] = "explicit", }, }, - ["6818_ElementalAilmentDuration"] = { + ["1651_ElementalDamagePercent"] = { ["AnyJewel"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1062710370", - ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", ["type"] = "explicit", }, }, - ["6818_ElementalAilmentDurationRadius"] = { + ["1651_ElementalDamagePercentRadius"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1323216174", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", + ["id"] = "explicit.stat_3222402650", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", ["type"] = "explicit", }, }, - ["6970_LifeFlaskChargePercentGeneration"] = { + ["1663_ProjectileDamage"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4009879772", - ["text"] = "#% increased Life Flask Charges gained", + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", ["type"] = "explicit", }, }, - ["6970_LifeFlaskChargePercentGenerationRadius"] = { + ["1663_ProjectileDamageRadius"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_942519401", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", + ["id"] = "explicit.stat_455816363", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", ["type"] = "explicit", }, }, - ["7285_JewelRadiusLargerRadius"] = { + ["1669_KnockbackDistance"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 15, + ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3891355829|2", - ["text"] = "Upgrades Radius to Large", + ["id"] = "explicit.stat_565784293", + ["text"] = "#% increased Knockback Distance", ["type"] = "explicit", }, }, - ["7304_JewelRadiusNotableEffect"] = { + ["1669_KnockbackDistanceRadius"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 7, + ["min"] = 3, }, ["RadiusJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4234573345", - ["text"] = "#% increased Effect of Notable Passive Skills in Radius", + ["id"] = "explicit.stat_2976476845", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", ["type"] = "explicit", }, }, - ["7308_JewelRadiusSmallNodeEffect"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["RadiusJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["1706_AttackAndCastSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1060572482", - ["text"] = "#% increased Effect of Small Passive Skills in Radius", + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", ["type"] = "explicit", }, }, - ["7459_MaceStun"] = { + ["1719_GlobalFlaskLifeRecovery"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_872504239", - ["text"] = "#% increased Stun Buildup with Maces", + ["id"] = "explicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", ["type"] = "explicit", }, }, - ["7459_MaceStunRadius"] = { + ["1719_GlobalFlaskLifeRecoveryRadius"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2392824305", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", + ["id"] = "explicit.stat_980177976", + ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", ["type"] = "explicit", }, }, - ["7491_ManaFlaskChargePercentGeneration"] = { + ["1720_FlaskManaRecovery"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3590792340", - ["text"] = "#% increased Mana Flask Charges gained", + ["id"] = "explicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", ["type"] = "explicit", }, }, - ["7491_ManaFlaskChargePercentGenerationRadius"] = { + ["1720_FlaskManaRecoveryRadius"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3171212276", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", + ["id"] = "explicit.stat_3774951878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", ["type"] = "explicit", }, }, - ["8276_MarkDuration"] = { + ["1820_LifeLeechAmount"] = { ["AnyJewel"] = { - ["max"] = 32, - ["min"] = 18, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2594634307", - ["text"] = "Mark Skills have #% increased Skill Effect Duration", + ["id"] = "explicit.stat_2112395885", + ["text"] = "#% increased amount of Life Leeched", ["type"] = "explicit", }, }, - ["8276_MarkDurationRadius"] = { + ["1820_LifeLeechAmountRadius"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 3, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 3, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4162678661", - ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", + ["id"] = "explicit.stat_3666476747", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", ["type"] = "explicit", }, }, - ["827_MovementVelocity"] = { + ["1821_IncreasedLifeLeechRate"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1570501432", + ["text"] = "Leech Life #% faster", + ["type"] = "explicit", + }, + }, + ["1822_ManaLeechAmount"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "explicit.stat_2839066308", + ["text"] = "#% increased amount of Mana Leeched", ["type"] = "explicit", }, }, - ["827_MovementVelocityRadius"] = { + ["1822_ManaLeechAmountRadius"] = { ["AnyJewel"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_844449513", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", + ["id"] = "explicit.stat_3700202631", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", ["type"] = "explicit", }, }, - ["8364_MeleeDamageIfProjectileHitRecently"] = { + ["1871_MarkCastSpeed"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3028809864", - ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["id"] = "explicit.stat_1714971114", + ["text"] = "Mark Skills have #% increased Use Speed", ["type"] = "explicit", }, }, - ["8364_MeleeDamageIfProjectileHitRecentlyRadius"] = { + ["1871_MarkCastSpeedRadius"] = { ["AnyJewel"] = { ["max"] = 3, ["min"] = 2, @@ -10919,47 +11336,63 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2421151933", - ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["id"] = "explicit.stat_2202308025", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", ["type"] = "explicit", }, }, - ["8446_MinionAccuracyRatingForJewel"] = { + ["1875_CurseAreaOfEffect"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1718147982", - ["text"] = "#% increased Minion Accuracy Rating", + ["id"] = "explicit.stat_153777645", + ["text"] = "#% increased Area of Effect of Curses", ["type"] = "explicit", }, }, - ["8446_MinionAccuracyRatingForJewelRadius"] = { + ["1875_CurseAreaOfEffectRadius"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 6, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_793875384", - ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", + ["id"] = "explicit.stat_3859848445", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", ["type"] = "explicit", }, }, - ["8453_MinionAttackSpeedAndCastSpeed"] = { + ["1946_MinionPhysicalDamageReduction"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["max"] = 16, + ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3091578504", - ["text"] = "Minions have #% increased Attack and Cast Speed", + ["id"] = "explicit.stat_3119612865", + ["text"] = "Minions have #% additional Physical Damage Reduction", ["type"] = "explicit", }, }, - ["8453_MinionAttackSpeedAndCastSpeedRadius"] = { + ["1946_MinionPhysicalDamageReductionRadius"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, @@ -10971,242 +11404,220 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3106718406", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", - ["type"] = "explicit", - }, - }, - ["8476_MinionCriticalStrikeChanceIncrease"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_491450213", - ["text"] = "Minions have #% increased Critical Hit Chance", + ["id"] = "explicit.stat_30438393", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", ["type"] = "explicit", }, }, - ["8476_MinionCriticalStrikeChanceIncreaseRadius"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["2124_PhysicalDamageTakenAsChaos"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3628935286", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", + ["id"] = "explicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", ["type"] = "explicit", }, }, - ["8478_MinionCriticalStrikeMultiplier"] = { + ["2250_SummonTotemCastSpeed"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1854213750", - ["text"] = "Minions have #% increased Critical Damage Bonus", + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", ["type"] = "explicit", }, }, - ["8478_MinionCriticalStrikeMultiplierRadius"] = { + ["2250_SummonTotemCastSpeedRadius"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_593241812", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", + ["id"] = "explicit.stat_1145481685", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", ["type"] = "explicit", }, }, - ["8529_MinionReviveSpeed"] = { + ["2266_CurseEffectiveness"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2639966148", - ["text"] = "Minions Revive #% faster", + ["id"] = "explicit.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", ["type"] = "explicit", }, }, - ["853_WeaponSpellDamage"] = { + ["2266_CurseEffectivenessForJewel"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 4, + ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", ["type"] = "explicit", }, }, - ["853_WeaponSpellDamageRadius"] = { + ["2266_CurseEffectivenessForJewelRadius"] = { ["AnyJewel"] = { - ["max"] = 2, + ["max"] = 1, ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 2, + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1137305356", - ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", + ["id"] = "explicit.stat_2770044702", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", ["type"] = "explicit", }, }, - ["855_FireDamagePercentage"] = { + ["2268_MarkEffect"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 8, + ["min"] = 4, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 8, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "explicit.stat_712554801", + ["text"] = "#% increased Effect of your Mark Skills", ["type"] = "explicit", }, }, - ["855_FireDamagePercentageRadius"] = { + ["2268_MarkEffectRadius"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_139889694", - ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", + ["id"] = "explicit.stat_179541474", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", ["type"] = "explicit", }, }, - ["856_ColdDamagePercentage"] = { + ["2362_DamageRemovedFromManaBeforeLife"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 4, + ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "explicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", ["type"] = "explicit", }, }, - ["856_ColdDamagePercentageRadius"] = { + ["2362_DamageRemovedFromManaBeforeLifeRadius"] = { ["AnyJewel"] = { - ["max"] = 2, + ["max"] = 1, ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 2, + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2442527254", - ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", + ["id"] = "explicit.stat_2709646369", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", ["type"] = "explicit", }, }, - ["857_LightningDamagePercentage"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["2472_AuraEffectForJewel"] = { + ["specialCaseData"] = { }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "explicit.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", + ["type"] = "explicit", }, + }, + ["2472_AuraEffectForJewelRadius"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "explicit.stat_3243034867", + ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", ["type"] = "explicit", }, }, - ["857_LightningDamagePercentageRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["2472_EssenceAuraEffect"] = { + ["specialCaseData"] = { }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "explicit.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", + ["type"] = "explicit", }, + }, + ["2486_AllDefences"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2768899959", - ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", + ["id"] = "explicit.stat_1389153006", + ["text"] = "#% increased Global Defences", ["type"] = "explicit", }, }, - ["858_IncreasedChaosDamage"] = { + ["2558_MinionElementalResistance"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["max"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "explicit.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["858_IncreasedChaosDamageRadius"] = { + ["2558_MinionElementalResistanceRadius"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, @@ -11218,267 +11629,279 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1309799717", - ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", + ["id"] = "explicit.stat_3225608889", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["864_GlobalPhysicalDamageReductionRatingPercent"] = { + ["2559_MinionChaosResistance"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 13, + ["min"] = 7, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 13, + ["min"] = 7, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["id"] = "explicit.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["864_GlobalPhysicalDamageReductionRatingPercentRadius"] = { + ["2559_MinionChaosResistanceRadius"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3858398337", - ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", + ["id"] = "explicit.stat_1756380435", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["866_GlobalEvasionRatingPercent"] = { + ["2613_FireResistancePenetration"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "explicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", ["type"] = "explicit", }, }, - ["866_GlobalEvasionRatingPercentRadius"] = { + ["2613_FireResistancePenetrationRadius"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1994296038", - ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", + ["id"] = "explicit.stat_1432756708", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", ["type"] = "explicit", }, }, - ["868_GlobalEnergyShieldPercent"] = { + ["2614_ColdResistancePenetration"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", + ["id"] = "explicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", ["type"] = "explicit", }, }, - ["868_GlobalEnergyShieldPercentRadius"] = { + ["2614_ColdResistancePenetrationRadius"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3665922113", - ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + ["id"] = "explicit.stat_1896066427", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", ["type"] = "explicit", }, }, - ["875_ProjectileSpeed"] = { + ["2615_LightningResistancePenetration"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 4, + ["max"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", + ["id"] = "explicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", ["type"] = "explicit", }, }, - ["875_ProjectileSpeedRadius"] = { + ["2615_LightningResistancePenetrationRadius"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1777421941", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", + ["id"] = "explicit.stat_868556494", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", ["type"] = "explicit", }, }, - ["8776_OfferingDuration"] = { + ["2649_MinionAreaOfEffect"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 8, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 8, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2957407601", - ["text"] = "Offering Skills have #% increased Duration", + ["id"] = "explicit.stat_3811191316", + ["text"] = "Minions have #% increased Area of Effect", ["type"] = "explicit", }, }, - ["8776_OfferingDurationRadius"] = { + ["2649_MinionAreaOfEffectRadius"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["max"] = 5, + ["min"] = 3, }, ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["max"] = 5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2374711847", - ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", + ["id"] = "explicit.stat_2534359663", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", ["type"] = "explicit", }, }, - ["8777_OfferingLife"] = { + ["2786_PoisonDuration"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3787460122", - ["text"] = "Offerings have #% increased Maximum Life", + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", ["type"] = "explicit", }, }, - ["8777_OfferingLifeRadius"] = { + ["2786_PoisonDurationChaosDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "explicit", + }, + }, + ["2786_PoisonDurationRadius"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 7, + ["min"] = 3, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2107703111", - ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", + ["id"] = "explicit.stat_221701169", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", ["type"] = "explicit", }, }, - ["878_CharmDuration"] = { + ["2789_BaseChanceToPoison"] = { ["AnyJewel"] = { - ["max"] = 15, + ["max"] = 10, ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 15, + ["max"] = 10, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1389754388", - ["text"] = "#% increased Charm Effect Duration", + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", ["type"] = "explicit", }, }, - ["878_CharmDurationRadius"] = { + ["2789_BaseChanceToPoisonRadius"] = { ["AnyJewel"] = { - ["max"] = 2, + ["max"] = 1, ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 2, + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3088348485", - ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", + ["id"] = "explicit.stat_2840989393", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", ["type"] = "explicit", }, }, - ["8799_ParryDamage"] = { + ["2821_DamageVsRareOrUnique"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1569159338", - ["text"] = "#% increased Parry Damage", + ["id"] = "explicit.stat_1852872083", + ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", ["type"] = "explicit", }, }, - ["8799_ParryDamageRadius"] = { + ["2821_DamageVsRareOrUniqueRadius"] = { ["AnyJewel"] = { ["max"] = 3, ["min"] = 2, @@ -11490,29 +11913,29 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1007380041", - ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", + ["id"] = "explicit.stat_147764878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", ["type"] = "explicit", }, }, - ["879_FlaskDuration"] = { + ["2878_IncreasedStunThreshold"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 16, + ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3741323227", - ["text"] = "#% increased Flask Effect Duration", + ["id"] = "explicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", ["type"] = "explicit", }, }, - ["879_FlaskDurationRadius"] = { + ["2878_IncreasedStunThresholdRadius"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, @@ -11524,80 +11947,80 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1773308808", - ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", + ["id"] = "explicit.stat_484792219", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", ["type"] = "explicit", }, }, - ["8808_ParriedDebuffDuration"] = { + ["2879_FreezeThreshold"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, + ["max"] = 32, + ["min"] = 18, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, + ["max"] = 32, + ["min"] = 18, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3401186585", - ["text"] = "#% increased Parried Debuff Duration", + ["id"] = "explicit.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", ["type"] = "explicit", }, }, - ["8808_ParriedDebuffDurationRadius"] = { + ["2879_FreezeThresholdRadius"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 4, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1514844108", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", + ["id"] = "explicit.stat_830345042", + ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", ["type"] = "explicit", }, }, - ["8809_StunThresholdDuringParry"] = { + ["2884_WarcrySpeed"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1911237468", - ["text"] = "#% increased Stun Threshold while Parrying", + ["id"] = "explicit.stat_1316278494", + ["text"] = "#% increased Warcry Speed", ["type"] = "explicit", }, }, - ["8809_StunThresholdDuringParryRadius"] = { + ["2884_WarcrySpeedRadius"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1495814176", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", + ["id"] = "explicit.stat_1602294220", + ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", ["type"] = "explicit", }, }, - ["8914_PlantDamageForJewel"] = { + ["2929_WarcryCooldownSpeed"] = { ["AnyJewel"] = { ["max"] = 15, ["min"] = 5, @@ -11609,114 +12032,89 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2518900926", - ["text"] = "#% increased Damage with Plant Skills", + ["id"] = "explicit.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", ["type"] = "explicit", }, }, - ["8914_PlantDamageForJewelRadius"] = { + ["2929_WarcryCooldownSpeedRadius"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 7, + ["min"] = 3, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1590846356", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", - ["type"] = "explicit", - }, - }, - ["8925_PoisonEffect"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2487305362", - ["text"] = "#% increased Magnitude of Poison you inflict", + ["id"] = "explicit.stat_2056107438", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", ["type"] = "explicit", }, }, - ["8925_PoisonEffectRadius"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["2967_CannotBePoisoned"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_462424929", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", + ["id"] = "explicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", ["type"] = "explicit", }, }, - ["8970_ChainFromTerrain"] = { + ["3802_DamageIfConsumedCorpse"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4081947835", - ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["id"] = "explicit.stat_2118708619", + ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", ["type"] = "explicit", }, }, - ["8970_ChainFromTerrainRadius"] = { + ["3802_DamageIfConsumedCorpseRadius"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2334956771", - ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", + ["id"] = "explicit.stat_1892122971", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", ["type"] = "explicit", }, }, - ["8973_ProjectileDamageIfMeleeHitRecently"] = { + ["3849_CrossbowDamage"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 16, + ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 16, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3596695232", - ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["id"] = "explicit.stat_427684353", + ["text"] = "#% increased Damage with Crossbows", ["type"] = "explicit", }, }, - ["8973_ProjectileDamageIfMeleeHitRecentlyRadius"] = { + ["3849_CrossbowDamageRadius"] = { ["AnyJewel"] = { ["max"] = 3, ["min"] = 2, @@ -11728,303 +12126,369 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_288364275", - ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["id"] = "explicit.stat_517664839", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", ["type"] = "explicit", }, }, - ["9020_QuarterstaffFreezeBuildup"] = { + ["3853_CrossbowSpeed"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 4, + ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1697447343", - ["text"] = "#% increased Freeze Buildup with Quarterstaves", + ["id"] = "explicit.stat_1135928777", + ["text"] = "#% increased Attack Speed with Crossbows", ["type"] = "explicit", }, }, - ["9020_QuarterstaffFreezeBuildupRadius"] = { + ["3853_CrossbowSpeedRadius"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_127081978", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", + ["id"] = "explicit.stat_715957346", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", ["type"] = "explicit", }, }, - ["9028_QuiverModifierEffect"] = { + ["4136_AilmentChance"] = { ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1200678966", - ["text"] = "#% increased bonuses gained from Equipped Quiver", + ["id"] = "explicit.stat_1772247089", + ["text"] = "#% increased chance to inflict Ailments", ["type"] = "explicit", }, }, - ["9028_QuiverModifierEffectRadius"] = { + ["4136_AilmentChanceRadius"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 7, + ["min"] = 3, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4180952808", - ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", + ["id"] = "explicit.stat_412709880", + ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", ["type"] = "explicit", }, }, - ["9032_MaximumRage"] = { + ["4140_AilmentEffect"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1181501418", - ["text"] = "# to Maximum Rage", + ["id"] = "explicit.stat_1303248024", + ["text"] = "#% increased Magnitude of Ailments you inflict", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["9032_MaximumRageRadius"] = { + ["4140_AilmentEffectRadius"] = { ["AnyJewel"] = { - ["max"] = 1, + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1321104829", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", + ["type"] = "explicit", + }, + }, + ["4146_AilmentThresholdfromEnergyShield"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3398301358", + ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["4146_AilmentThresholdfromEnergyShieldRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1846980580", - ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", + ["id"] = "explicit.stat_693237939", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["9149_CrossbowReloadSpeed"] = { + ["4147_IncreasedAilmentThreshold"] = { ["AnyJewel"] = { - ["max"] = 15, + ["max"] = 20, ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 15, + ["max"] = 20, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3192728503", - ["text"] = "#% increased Crossbow Reload Speed", + ["id"] = "explicit.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", ["type"] = "explicit", }, }, - ["9149_CrossbowReloadSpeedRadius"] = { + ["4147_IncreasedAilmentThresholdRadius"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 5, + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 5, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3856744003", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", + ["id"] = "explicit.stat_3409275777", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", ["type"] = "explicit", }, }, - ["9241_ShieldArmourIncrease"] = { + ["4283_ArmourBreak"] = { ["AnyJewel"] = { - ["max"] = 32, - ["min"] = 18, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, + ["max"] = 15, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_145497481", - ["text"] = "#% increased Defences from Equipped Shield", + ["id"] = "explicit.stat_1776411443", + ["text"] = "Break #% increased Armour", ["type"] = "explicit", }, }, - ["9241_ShieldArmourIncreaseRadius"] = { + ["4283_ArmourBreakRadius"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 8, + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 15, - ["min"] = 8, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_713216632", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Defences from Equipped Shield", + ["id"] = "explicit.stat_4089835882", + ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", ["type"] = "explicit", }, }, - ["9248_ShockEffect"] = { + ["4285_ArmourBreakDuration"] = { ["AnyJewel"] = { - ["max"] = 15, + ["max"] = 20, ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 15, + ["max"] = 20, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2527686725", - ["text"] = "#% increased Magnitude of Shock you inflict", + ["id"] = "explicit.stat_2637470878", + ["text"] = "#% increased Armour Break Duration", ["type"] = "explicit", }, }, - ["9248_ShockEffectRadius"] = { + ["4285_ArmourBreakDurationRadius"] = { ["AnyJewel"] = { - ["max"] = 7, + ["max"] = 10, ["min"] = 5, }, ["RadiusJewel"] = { - ["max"] = 7, + ["max"] = 10, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1166140625", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", + ["id"] = "explicit.stat_504915064", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", ["type"] = "explicit", }, }, - ["9317_ShapeshiftSkillSpeedForJewel"] = { + ["4453_AttacksBlindOnHitChance"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["max"] = 7, + ["min"] = 3, }, ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_918325986", - ["text"] = "#% increased Skill Speed while Shapeshifted", + ["id"] = "explicit.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", ["type"] = "explicit", }, }, - ["9317_ShapeshiftSkillSpeedForJewelRadius"] = { + ["4453_AttacksBlindOnHitChanceRadius"] = { ["AnyJewel"] = { - ["max"] = 2, + ["max"] = 1, ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 2, + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3579898587", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", + ["id"] = "explicit.stat_2610562860", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", ["type"] = "explicit", }, }, - ["933_CriticalStrikeChance"] = { + ["4495_BannerArea"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 20, + ["min"] = 10, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Critical Hit Chance", + ["id"] = "explicit.stat_429143663", + ["text"] = "Banner Skills have #% increased Area of Effect", ["type"] = "explicit", }, }, - ["933_CriticalStrikeChanceRadius"] = { + ["4495_BannerAreaRadius"] = { ["AnyJewel"] = { - ["max"] = 7, + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4142814612", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["4497_BannerDuration"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2720982137", + ["text"] = "Banner Skills have #% increased Duration", + ["type"] = "explicit", + }, + }, + ["4497_BannerDurationRadius"] = { + ["AnyJewel"] = { + ["max"] = 4, ["min"] = 3, }, ["RadiusJewel"] = { - ["max"] = 7, + ["max"] = 4, ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2077117738", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", + ["id"] = "explicit.stat_2690740379", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", ["type"] = "explicit", }, }, - ["934_AttackCriticalStrikeChance"] = { + ["4522_BleedDuration"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["max"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2194114101", - ["text"] = "#% increased Critical Hit Chance for Attacks", + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", ["type"] = "explicit", }, }, - ["934_AttackCriticalStrikeChanceRadius"] = { + ["4522_BleedDurationRadius"] = { ["AnyJewel"] = { ["max"] = 7, ["min"] = 3, @@ -12036,870 +12500,15655 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3865605585", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", + ["id"] = "explicit.stat_1505023559", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", ["type"] = "explicit", }, }, - ["935_SpellCriticalStrikeChance"] = { + ["4532_BaseChanceToBleed"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 7, + ["min"] = 3, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", + ["id"] = "explicit.stat_2174054121", + ["text"] = "#% chance to inflict Bleeding on Hit", + ["type"] = "explicit", + }, + }, + ["4532_BaseChanceToBleedRadius"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_944643028", + ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", ["type"] = "explicit", }, - }, - ["935_SpellCriticalStrikeChanceRadius"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + }, + ["4539_GlobalCooldownRecovery"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["4539_GlobalCooldownRecoveryRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2149603090", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["4582_ManaCostEfficiency"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4101445926", + ["text"] = "#% increased Mana Cost Efficiency", + ["type"] = "explicit", + }, + }, + ["4605_LifeCost"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["type"] = "explicit", + }, + }, + ["4605_LifeCostRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3386297724", + ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", + ["type"] = "explicit", + }, + }, + ["4608_SlowPotency"] = { + ["AnyJewel"] = { + ["max"] = -5, + ["min"] = -10, + }, + ["BaseJewel"] = { + ["max"] = -5, + ["min"] = -10, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "explicit", + }, + }, + ["4608_SlowPotencyRadius"] = { + ["AnyJewel"] = { + ["max"] = -2, + ["min"] = -5, + }, + ["RadiusJewel"] = { + ["max"] = -2, + ["min"] = -5, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2580617872", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", + ["type"] = "explicit", + }, + }, + ["4662_BleedDotMultiplier"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["type"] = "explicit", + }, + }, + ["4662_BleedDotMultiplierRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_391602279", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", + ["type"] = "explicit", + }, + }, + ["4781_BlindEffect"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1585769763", + ["text"] = "#% increased Blind Effect", + ["type"] = "explicit", + }, + }, + ["4781_BlindEffectRadius"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2912416697", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", + ["type"] = "explicit", + }, + }, + ["5137_AdditionalArrowChanceCanExceed100%"] = { + ["2HWeapon"] = { + ["max"] = 200, + ["min"] = 25, + }, + ["Bow"] = { + ["max"] = 200, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["5139_ForkingProjectiles"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3003542304", + ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", + ["type"] = "explicit", + }, + }, + ["5139_ForkingProjectilesRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4258720395", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", + ["type"] = "explicit", + }, + }, + ["5227_BeltIncreasedCharmChargesGained"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "explicit", + }, + }, + ["5227_CharmChargesGained"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "explicit", + }, + }, + ["5227_CharmChargesGainedRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2320654813", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", + ["type"] = "explicit", + }, + }, + ["5229_BeltReducedCharmChargesUsed"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", + ["type"] = "explicit", + }, + }, + ["5307_EssenceColdRecoupLife"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["5339_CompanionDamage"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_234296660", + ["text"] = "Companions deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["5339_CompanionDamageRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1494950893", + ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["5342_CompanionLife"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1805182458", + ["text"] = "Companions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["5342_CompanionLifeRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2638756573", + ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["5424_CriticalAilmentEffect"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_440490623", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["type"] = "explicit", + }, + }, + ["5424_CriticalAilmentEffectRadius"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4092130601", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["type"] = "explicit", + }, + }, + ["5530_CurseDelay"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1104825894", + ["text"] = "#% faster Curse Activation", + ["type"] = "explicit", + }, + }, + ["5553_DamagevsArmourBrokenEnemies"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2301718443", + ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", + ["type"] = "explicit", + }, + }, + ["5553_DamagevsArmourBrokenEnemiesRadius"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1834658952", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", + ["type"] = "explicit", + }, + }, + ["5567_ShapeshiftDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2440073079", + ["text"] = "#% increased Damage while Shapeshifted", + ["type"] = "explicit", + }, + }, + ["5567_ShapeshiftDamageForJewelRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_266564538", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", + ["type"] = "explicit", + }, + }, + ["5627_CharmDamageWhileUsing"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_627767961", + ["text"] = "#% increased Damage while you have an active Charm", + ["type"] = "explicit", + }, + }, + ["5627_CharmDamageWhileUsingRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3752589831", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", + ["type"] = "explicit", + }, + }, + ["5632_HeraldDamage"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_21071013", + ["text"] = "Herald Skills deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["5632_HeraldDamageRadius"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3065378291", + ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["5668_DamagingAilmentDuration"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1829102168", + ["text"] = "#% increased Duration of Damaging Ailments on Enemies", + ["type"] = "explicit", + }, + }, + ["5668_DamagingAilmentDurationRadius"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2272980012", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", + ["type"] = "explicit", + }, + }, + ["5671_FasterAilmentDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_538241406", + ["text"] = "Damaging Ailments deal damage #% faster", + ["type"] = "explicit", + }, + }, + ["5671_FasterAilmentDamageForJewelRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3173882956", + ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", + ["type"] = "explicit", + }, + }, + ["5703_DebuffTimePassed"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "explicit", + }, + }, + ["5703_DebuffTimePassedRadius"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2256120736", + ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", + ["type"] = "explicit", + }, + }, + ["5912_ExertedAttackDamage"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1569101201", + ["text"] = "Empowered Attacks deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["5912_ExertedAttackDamageRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3395186672", + ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["5987_EnergyGeneration"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", + ["type"] = "explicit", + }, + }, + ["5987_EnergyGenerationRadius"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2849546516", + ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", + ["type"] = "explicit", + }, + }, + ["6002_FocusEnergyShield"] = { + ["AnyJewel"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["BaseJewel"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3174700878", + ["text"] = "#% increased Energy Shield from Equipped Focus", + ["type"] = "explicit", + }, + }, + ["6002_FocusEnergyShieldRadius"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["RadiusJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3419203492", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", + ["type"] = "explicit", + }, + }, + ["6048_AbyssTargetMod"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_335885735", + ["text"] = "Bears the Mark of the Abyssal Lord", + ["type"] = "explicit", + }, + }, + ["610_FlaskGainChargePerMinute"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1873752457", + ["text"] = "Gains # Charges per Second", + ["type"] = "explicit", + }, + }, + ["6150_EssenceFireRecoupLife"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["6216_BeltIncreasedFlaskChargesGained"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["6216_IncreasedFlaskChargesGained"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["6216_IncreasedFlaskChargesGainedRadius"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2066964205", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["6431_RageOnHit"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "explicit", + }, + }, + ["6431_RageOnHitRadius"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2969557004", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", + ["type"] = "explicit", + }, + }, + ["6433_GainRageWhenHit"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3292710273", + ["text"] = "Gain # Rage when Hit by an Enemy", + ["type"] = "explicit", + }, + }, + ["6433_GainRageWhenHitRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2131720304", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", + ["type"] = "explicit", + }, + }, + ["6474_BannerValourGained"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1869147066", + ["text"] = "#% increased Glory generation for Banner Skills", + ["type"] = "explicit", + }, + }, + ["6474_BannerValourGainedRadius"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2907381231", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", + ["type"] = "explicit", + }, + }, + ["6476_EssenceGoldDropped"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "explicit", + }, + }, + ["6536_HazardDamage"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1697951953", + ["text"] = "#% increased Hazard Damage", + ["type"] = "explicit", + }, + }, + ["6536_HazardDamageRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_255840549", + ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", + ["type"] = "explicit", + }, + }, + ["6750_PinBuildup"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3473929743", + ["text"] = "#% increased Pin Buildup", + ["type"] = "explicit", + }, + }, + ["6750_PinBuildupRadius"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1944020877", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", + ["type"] = "explicit", + }, + }, + ["6818_ElementalAilmentDuration"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1062710370", + ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", + ["type"] = "explicit", + }, + }, + ["6818_ElementalAilmentDurationRadius"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1323216174", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", + ["type"] = "explicit", + }, + }, + ["6970_LifeFlaskChargePercentGeneration"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4009879772", + ["text"] = "#% increased Life Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["6970_LifeFlaskChargePercentGenerationRadius"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_942519401", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["7081_EssenceLightningRecoupLife"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["7174_EssenceOnslaughtonKill"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1881230714", + ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", + ["type"] = "explicit", + }, + }, + ["7237_CorruptForTwoEnchantments"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4215035940", + ["text"] = "On Corruption, Item gains two Enchantments", + ["type"] = "explicit", + }, + }, + ["7285_JewelRadiusLargerRadius"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3891355829|2", + ["text"] = "Upgrades Radius to Large", + ["type"] = "explicit", + }, + }, + ["7304_JewelRadiusNotableEffect"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["RadiusJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4234573345", + ["text"] = "#% increased Effect of Notable Passive Skills in Radius", + ["type"] = "explicit", + }, + }, + ["7308_JewelRadiusSmallNodeEffect"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["RadiusJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1060572482", + ["text"] = "#% increased Effect of Small Passive Skills in Radius", + ["type"] = "explicit", + }, + }, + ["7351_LocalSocketItemsEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2081918629", + ["text"] = "#% increased effect of Socketed Items", + ["type"] = "explicit", + }, + }, + ["7459_MaceStun"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_872504239", + ["text"] = "#% increased Stun Buildup with Maces", + ["type"] = "explicit", + }, + }, + ["7459_MaceStunRadius"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2392824305", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", + ["type"] = "explicit", + }, + }, + ["7491_ManaFlaskChargePercentGeneration"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3590792340", + ["text"] = "#% increased Mana Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["7491_ManaFlaskChargePercentGenerationRadius"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3171212276", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["821_LocalIncreasedPhysicalDamagePercentAndAccuracyRating"] = { + ["1HMace"] = { + ["max"] = 79, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 79, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 79, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 79, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 79, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 79, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 79, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 79, + ["min"] = 15, + }, + ["Spear"] = { + ["max"] = 79, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 79, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["821_LocalPhysicalDamagePercent"] = { + ["1HMace"] = { + ["max"] = 179, + ["min"] = 40, + }, + ["1HWeapon"] = { + ["max"] = 179, + ["min"] = 40, + }, + ["2HMace"] = { + ["max"] = 179, + ["min"] = 40, + }, + ["2HWeapon"] = { + ["max"] = 179, + ["min"] = 40, + }, + ["Bow"] = { + ["max"] = 179, + ["min"] = 40, + }, + ["Crossbow"] = { + ["max"] = 179, + ["min"] = 40, + }, + ["Flail"] = { + ["max"] = 179, + ["min"] = 40, + }, + ["Quarterstaff"] = { + ["max"] = 179, + ["min"] = 40, + }, + ["Spear"] = { + ["max"] = 179, + ["min"] = 40, + }, + ["Talisman"] = { + ["max"] = 179, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, + ["822_LocalPhysicalDamage"] = { + ["1HMace"] = { + ["max"] = 52.5, + ["min"] = 2.5, + }, + ["1HWeapon"] = { + ["max"] = 52.5, + ["min"] = 2.5, + }, + ["2HMace"] = { + ["max"] = 74.5, + ["min"] = 3.5, + }, + ["2HWeapon"] = { + ["max"] = 74.5, + ["min"] = 2.5, + }, + ["Bow"] = { + ["max"] = 52.5, + ["min"] = 2.5, + }, + ["Crossbow"] = { + ["max"] = 74.5, + ["min"] = 3.5, + }, + ["Flail"] = { + ["max"] = 52.5, + ["min"] = 2.5, + }, + ["Quarterstaff"] = { + ["max"] = 74.5, + ["min"] = 3.5, + }, + ["Spear"] = { + ["max"] = 52.5, + ["min"] = 2.5, + }, + ["Talisman"] = { + ["max"] = 74.5, + ["min"] = 3.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage", + ["type"] = "explicit", + }, + }, + ["823_LocalFireDamage"] = { + ["1HMace"] = { + ["max"] = 127.5, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 127.5, + ["min"] = 2, + }, + ["2HMace"] = { + ["max"] = 196, + ["min"] = 3.5, + }, + ["2HWeapon"] = { + ["max"] = 196, + ["min"] = 2, + }, + ["Bow"] = { + ["max"] = 127.5, + ["min"] = 2, + }, + ["Crossbow"] = { + ["max"] = 196, + ["min"] = 3.5, + }, + ["Flail"] = { + ["max"] = 127.5, + ["min"] = 2, + }, + ["Quarterstaff"] = { + ["max"] = 196, + ["min"] = 3.5, + }, + ["Spear"] = { + ["max"] = 127.5, + ["min"] = 2, + }, + ["Talisman"] = { + ["max"] = 196, + ["min"] = 3.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "explicit", + }, + }, + ["824_LocalColdDamage"] = { + ["1HMace"] = { + ["max"] = 102, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 102, + ["min"] = 2, + }, + ["2HMace"] = { + ["max"] = 156.5, + ["min"] = 3, + }, + ["2HWeapon"] = { + ["max"] = 156.5, + ["min"] = 2, + }, + ["Bow"] = { + ["max"] = 102, + ["min"] = 2, + }, + ["Crossbow"] = { + ["max"] = 156.5, + ["min"] = 3, + }, + ["Flail"] = { + ["max"] = 102, + ["min"] = 2, + }, + ["Quarterstaff"] = { + ["max"] = 156.5, + ["min"] = 3, + }, + ["Spear"] = { + ["max"] = 102, + ["min"] = 2, + }, + ["Talisman"] = { + ["max"] = 156.5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "explicit", + }, + }, + ["825_LocalLightningDamage"] = { + ["1HMace"] = { + ["max"] = 123, + ["min"] = 2.5, + }, + ["1HWeapon"] = { + ["max"] = 123, + ["min"] = 2.5, + }, + ["2HMace"] = { + ["max"] = 188.5, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 188.5, + ["min"] = 2.5, + }, + ["Bow"] = { + ["max"] = 123, + ["min"] = 2.5, + }, + ["Crossbow"] = { + ["max"] = 188.5, + ["min"] = 4, + }, + ["Flail"] = { + ["max"] = 123, + ["min"] = 2.5, + }, + ["Quarterstaff"] = { + ["max"] = 188.5, + ["min"] = 4, + }, + ["Spear"] = { + ["max"] = 123, + ["min"] = 2.5, + }, + ["Talisman"] = { + ["max"] = 188.5, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "explicit", + }, + }, + ["826_LocalAccuracyRating"] = { + ["1HMace"] = { + ["max"] = 550, + ["min"] = 11, + }, + ["1HWeapon"] = { + ["max"] = 550, + ["min"] = 11, + }, + ["2HMace"] = { + ["max"] = 550, + ["min"] = 11, + }, + ["2HWeapon"] = { + ["max"] = 650, + ["min"] = 11, + }, + ["Bow"] = { + ["max"] = 650, + ["min"] = 11, + }, + ["Crossbow"] = { + ["max"] = 650, + ["min"] = 11, + }, + ["Flail"] = { + ["max"] = 550, + ["min"] = 11, + }, + ["Quarterstaff"] = { + ["max"] = 550, + ["min"] = 11, + }, + ["Spear"] = { + ["max"] = 550, + ["min"] = 11, + }, + ["Talisman"] = { + ["max"] = 550, + ["min"] = 11, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["826_LocalIncreasedPhysicalDamagePercentAndAccuracyRating"] = { + ["1HMace"] = { + ["max"] = 200, + ["min"] = 16, + }, + ["1HWeapon"] = { + ["max"] = 200, + ["min"] = 16, + }, + ["2HMace"] = { + ["max"] = 200, + ["min"] = 16, + }, + ["2HWeapon"] = { + ["max"] = 200, + ["min"] = 16, + }, + ["Bow"] = { + ["max"] = 200, + ["min"] = 16, + }, + ["Crossbow"] = { + ["max"] = 200, + ["min"] = 16, + }, + ["Flail"] = { + ["max"] = 200, + ["min"] = 16, + }, + ["Quarterstaff"] = { + ["max"] = 200, + ["min"] = 16, + }, + ["Spear"] = { + ["max"] = 200, + ["min"] = 16, + }, + ["Talisman"] = { + ["max"] = 200, + ["min"] = 16, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["826_LocalLightRadiusAndAccuracy"] = { + ["1HMace"] = { + ["max"] = 60, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 60, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 60, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 60, + ["min"] = 10, + }, + ["Crossbow"] = { + ["max"] = 60, + ["min"] = 10, + }, + ["Flail"] = { + ["max"] = 60, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 60, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 60, + ["min"] = 10, + }, + ["Talisman"] = { + ["max"] = 60, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["8276_MarkDuration"] = { + ["AnyJewel"] = { + ["max"] = 32, + ["min"] = 18, + }, + ["BaseJewel"] = { + ["max"] = 32, + ["min"] = 18, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2594634307", + ["text"] = "Mark Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, + ["8276_MarkDurationRadius"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4162678661", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, + ["827_MovementVelocity"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "explicit", + }, + }, + ["827_MovementVelocityRadius"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_844449513", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", + ["type"] = "explicit", + }, + }, + ["830_LocalIncreasedBlockPercentage"] = { + ["Shield"] = { + ["max"] = 30, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4147897060", + ["text"] = "#% increased Block chance", + ["type"] = "explicit", + }, + }, + ["831_LocalBaseArmourAndEnergyShield"] = { + ["Boots"] = { + ["max"] = 65, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 138, + ["min"] = 8, + }, + ["Gloves"] = { + ["max"] = 65, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 78, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 117, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_809229260", + ["text"] = "# to Armour", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["831_LocalBaseArmourAndEvasionRating"] = { + ["Boots"] = { + ["max"] = 65, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 138, + ["min"] = 8, + }, + ["Gloves"] = { + ["max"] = 65, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 78, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 117, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_809229260", + ["text"] = "# to Armour", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["831_LocalIncreasedArmourAndBase"] = { + ["Chest"] = { + ["max"] = 86, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_809229260", + ["text"] = "# to Armour", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["831_LocalIncreasedArmourAndEnergyShieldAndBase"] = { + ["Chest"] = { + ["max"] = 43, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_809229260", + ["text"] = "# to Armour", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["831_LocalIncreasedArmourAndEvasionAndBase"] = { + ["Chest"] = { + ["max"] = 43, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_809229260", + ["text"] = "# to Armour", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["831_LocalPhysicalDamageReductionRating"] = { + ["Boots"] = { + ["max"] = 160, + ["min"] = 16, + }, + ["Chest"] = { + ["max"] = 276, + ["min"] = 16, + }, + ["Gloves"] = { + ["max"] = 160, + ["min"] = 16, + }, + ["Helmet"] = { + ["max"] = 202, + ["min"] = 16, + }, + ["Shield"] = { + ["max"] = 256, + ["min"] = 16, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_809229260", + ["text"] = "# to Armour", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["832_LocalBaseArmourAndEvasionRating"] = { + ["Boots"] = { + ["max"] = 57, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 126, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 57, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 69, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 107, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2144192055", + ["text"] = "# to Evasion Rating", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["832_LocalBaseEvasionRatingAndEnergyShield"] = { + ["Boots"] = { + ["max"] = 57, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 126, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 57, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 69, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2144192055", + ["text"] = "# to Evasion Rating", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["832_LocalEvasionRating"] = { + ["Boots"] = { + ["max"] = 142, + ["min"] = 11, + }, + ["Chest"] = { + ["max"] = 251, + ["min"] = 11, + }, + ["Gloves"] = { + ["max"] = 142, + ["min"] = 11, + }, + ["Helmet"] = { + ["max"] = 181, + ["min"] = 11, + }, + ["Shield"] = { + ["max"] = 232, + ["min"] = 11, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2144192055", + ["text"] = "# to Evasion Rating", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["832_LocalIncreasedArmourAndEvasionAndBase"] = { + ["Chest"] = { + ["max"] = 39, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2144192055", + ["text"] = "# to Evasion Rating", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["832_LocalIncreasedEvasionAndBase"] = { + ["Chest"] = { + ["max"] = 79, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2144192055", + ["text"] = "# to Evasion Rating", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["832_LocalIncreasedEvasionAndEnergyShieldAndBase"] = { + ["Chest"] = { + ["max"] = 39, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2144192055", + ["text"] = "# to Evasion Rating", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["833_LocalBaseArmourAndEnergyShield"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 48, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 29, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 42, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["833_LocalBaseEvasionRatingAndEnergyShield"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 48, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 29, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["833_LocalEnergyShield"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 96, + ["min"] = 10, + }, + ["Focus"] = { + ["max"] = 90, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 60, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 73, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["833_LocalIncreasedArmourAndEnergyShieldAndBase"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["833_LocalIncreasedEnergyShieldAndBase"] = { + ["Chest"] = { + ["max"] = 30, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["833_LocalIncreasedEvasionAndEnergyShieldAndBase"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["834_LocalArmourAndStunThreshold"] = { + ["Boots"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", + }, + }, + ["834_LocalIncreasedArmourAndBase"] = { + ["Chest"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", + }, + }, + ["834_LocalIncreasedArmourAndLife"] = { + ["Chest"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", + }, + }, + ["834_LocalIncreasedArmourAndMana"] = { + ["Helmet"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", + }, + }, + ["834_LocalPhysicalDamageReductionRatingPercent"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", + }, + }, + ["835_LocalEvasionAndStunThreshold"] = { + ["Boots"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + }, + ["835_LocalEvasionRatingIncreasePercent"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + }, + ["835_LocalIncreasedEvasionAndBase"] = { + ["Chest"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + }, + ["835_LocalIncreasedEvasionAndLife"] = { + ["Chest"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + }, + ["835_LocalIncreasedEvasionAndMana"] = { + ["Helmet"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + }, + ["8364_MeleeDamageIfProjectileHitRecently"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3028809864", + ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["type"] = "explicit", + }, + }, + ["8364_MeleeDamageIfProjectileHitRecentlyRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2421151933", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["type"] = "explicit", + }, + }, + ["836_LocalEnergyShieldAndStunThreshold"] = { + ["Boots"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "explicit", + }, + }, + ["836_LocalEnergyShieldPercent"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["Focus"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 101, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "explicit", + }, + }, + ["836_LocalIncreasedEnergyShieldAndBase"] = { + ["Chest"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "explicit", + }, + }, + ["836_LocalIncreasedEnergyShieldAndLife"] = { + ["Chest"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "explicit", + }, + }, + ["836_LocalIncreasedEnergyShieldAndMana"] = { + ["Focus"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "explicit", + }, + }, + ["837_LocalArmourAndEvasion"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "explicit", + }, + }, + ["837_LocalArmourAndEvasionAndStunThreshold"] = { + ["Boots"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "explicit", + }, + }, + ["837_LocalIncreasedArmourAndEvasionAndBase"] = { + ["Chest"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "explicit", + }, + }, + ["837_LocalIncreasedArmourAndEvasionAndLife"] = { + ["Chest"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "explicit", + }, + }, + ["837_LocalIncreasedArmourAndEvasionAndMana"] = { + ["Helmet"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", + ["type"] = "explicit", + }, + }, + ["838_LocalArmourAndEnergyShield"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "explicit", + }, + }, + ["838_LocalArmourAndEnergyShieldAndStunThreshold"] = { + ["Boots"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "explicit", + }, + }, + ["838_LocalIncreasedArmourAndEnergyShieldAndBase"] = { + ["Chest"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "explicit", + }, + }, + ["838_LocalIncreasedArmourAndEnergyShieldAndLife"] = { + ["Chest"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "explicit", + }, + }, + ["838_LocalIncreasedArmourAndEnergyShieldAndMana"] = { + ["Helmet"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "explicit", + }, + }, + ["839_LocalEvasionAndEnergyShield"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 101, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "explicit", + }, + }, + ["839_LocalEvasionAndEnergyShieldAndStunThreshold"] = { + ["Boots"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "explicit", + }, + }, + ["839_LocalIncreasedEvasionAndEnergyShieldAndBase"] = { + ["Chest"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "explicit", + }, + }, + ["839_LocalIncreasedEvasionAndEnergyShieldAndLife"] = { + ["Chest"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "explicit", + }, + }, + ["839_LocalIncreasedEvasionAndEnergyShieldAndMana"] = { + ["Helmet"] = { + ["max"] = 42, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", + ["type"] = "explicit", + }, + }, + ["840_LocalArmourAndEvasionAndEnergyShield"] = { + ["Boots"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["type"] = "explicit", + }, + }, + ["842_LocalIncreasedSpiritAndMana"] = { + ["1HWeapon"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["Sceptre"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "explicit", + }, + }, + ["842_LocalIncreasedSpiritPercent"] = { + ["1HWeapon"] = { + ["max"] = 65, + ["min"] = 27, + }, + ["Sceptre"] = { + ["max"] = 65, + ["min"] = 27, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "explicit", + }, + }, + ["843_PhysicalDamage"] = { + ["Gloves"] = { + ["max"] = 25.5, + ["min"] = 2, + }, + ["Quiver"] = { + ["max"] = 25.5, + ["min"] = 2, + }, + ["Ring"] = { + ["max"] = 25.5, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "explicit", + }, + }, + ["8446_MinionAccuracyRatingForJewel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["8446_MinionAccuracyRatingForJewelRadius"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_793875384", + ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", + ["type"] = "explicit", + }, + }, + ["844_FireDamage"] = { + ["Gloves"] = { + ["max"] = 37, + ["min"] = 2, + }, + ["Quiver"] = { + ["max"] = 37, + ["min"] = 2, + }, + ["Ring"] = { + ["max"] = 37, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", + ["type"] = "explicit", + }, + }, + ["8453_MinionAttackSpeedAndCastSpeed"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + }, + ["8453_MinionAttackSpeedAndCastSpeedRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3106718406", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + }, + ["845_ColdDamage"] = { + ["Gloves"] = { + ["max"] = 30.5, + ["min"] = 1.5, + }, + ["Quiver"] = { + ["max"] = 30.5, + ["min"] = 1.5, + }, + ["Ring"] = { + ["max"] = 30.5, + ["min"] = 1.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold damage to Attacks", + ["type"] = "explicit", + }, + }, + ["846_LightningDamage"] = { + ["Gloves"] = { + ["max"] = 37.5, + ["min"] = 2.5, + }, + ["Quiver"] = { + ["max"] = 37.5, + ["min"] = 2.5, + }, + ["Ring"] = { + ["max"] = 37.5, + ["min"] = 2.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning damage to Attacks", + ["type"] = "explicit", + }, + }, + ["8476_MinionCriticalStrikeChanceIncrease"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_491450213", + ["text"] = "Minions have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + }, + ["8476_MinionCriticalStrikeChanceIncreaseRadius"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3628935286", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + }, + ["8478_MinionCriticalStrikeMultiplier"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1854213750", + ["text"] = "Minions have #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + }, + ["8478_MinionCriticalStrikeMultiplierRadius"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_593241812", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + }, + ["847_DamageGainedAsFire"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + }, + ["847_DamageasExtraFire"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["type"] = "explicit", + }, + }, + ["849_DamageGainedAsCold"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + }, + ["849_DamageasExtraCold"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["type"] = "explicit", + }, + }, + ["851_DamageGainedAsLightning"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["type"] = "explicit", + }, + }, + ["851_DamageasExtraLightning"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["type"] = "explicit", + }, + }, + ["8529_MinionReviveSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2639966148", + ["text"] = "Minions Revive #% faster", + ["type"] = "explicit", + }, + }, + ["853_SpellDamage"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["853_WeaponSpellDamage"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["853_WeaponSpellDamageAndMana"] = { + ["1HWeapon"] = { + ["max"] = 49, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 98, + ["min"] = 30, + }, + ["Staff"] = { + ["max"] = 98, + ["min"] = 30, + }, + ["Wand"] = { + ["max"] = 49, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["853_WeaponSpellDamageRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1137305356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["855_FireDamagePercentage"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, + ["855_FireDamagePercentageRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_139889694", + ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", + ["type"] = "explicit", + }, + }, + ["855_FireDamageWeaponPrefix"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", + ["type"] = "explicit", + }, + }, + ["856_ColdDamagePercentage"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, + ["856_ColdDamagePercentageRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2442527254", + ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", + ["type"] = "explicit", + }, + }, + ["856_ColdDamageWeaponPrefix"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", + ["type"] = "explicit", + }, + }, + ["857_LightningDamagePercentage"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["857_LightningDamagePercentageRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2768899959", + ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["857_LightningDamageWeaponPrefix"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["858_ChaosDamageWeaponPrefix"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, + ["858_IncreasedChaosDamage"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, + ["858_IncreasedChaosDamageRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1309799717", + ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", + ["type"] = "explicit", + }, + }, + ["858_PoisonDurationChaosDamage"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", + ["type"] = "explicit", + }, + }, + ["859_IncreasedWeaponElementalDamagePercent"] = { + ["1HMace"] = { + ["max"] = 100, + ["min"] = 19, + }, + ["1HWeapon"] = { + ["max"] = 100, + ["min"] = 19, + }, + ["2HMace"] = { + ["max"] = 139, + ["min"] = 34, + }, + ["2HWeapon"] = { + ["max"] = 139, + ["min"] = 19, + }, + ["Bow"] = { + ["max"] = 100, + ["min"] = 19, + }, + ["Crossbow"] = { + ["max"] = 139, + ["min"] = 34, + }, + ["Flail"] = { + ["max"] = 100, + ["min"] = 19, + }, + ["Quarterstaff"] = { + ["max"] = 139, + ["min"] = 34, + }, + ["Spear"] = { + ["max"] = 100, + ["min"] = 19, + }, + ["Talisman"] = { + ["max"] = 139, + ["min"] = 34, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "explicit", + }, + }, + ["860_PhysicalSpellDamageWeaponPrefix"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2768835289", + ["text"] = "#% increased Spell Physical Damage", + ["type"] = "explicit", + }, + }, + ["861_DamageWithBowSkills"] = { + ["Quiver"] = { + ["max"] = 59, + ["min"] = 11, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", + ["type"] = "explicit", + }, + }, + ["862_IncreasedAccuracy"] = { + ["Amulet"] = { + ["max"] = 450, + ["min"] = 11, + }, + ["Gloves"] = { + ["max"] = 550, + ["min"] = 11, + }, + ["Helmet"] = { + ["max"] = 550, + ["min"] = 11, + }, + ["Quiver"] = { + ["max"] = 550, + ["min"] = 11, + }, + ["Ring"] = { + ["max"] = 450, + ["min"] = 11, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["862_LightRadiusAndAccuracy"] = { + ["Helmet"] = { + ["max"] = 60, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["863_PhysicalDamageReductionRating"] = { + ["Belt"] = { + ["max"] = 255, + ["min"] = 12, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_809229260", + ["text"] = "# to Armour", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["864_GlobalPhysicalDamageReductionRatingPercent"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", + ["type"] = "explicit", + }, + }, + ["864_GlobalPhysicalDamageReductionRatingPercentRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3858398337", + ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", + ["type"] = "explicit", + }, + }, + ["865_EvasionRating"] = { + ["Ring"] = { + ["max"] = 203, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2144192055", + ["text"] = "# to Evasion Rating", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["866_GlobalEvasionRatingPercent"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + }, + ["866_GlobalEvasionRatingPercentRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1994296038", + ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", + ["type"] = "explicit", + }, + }, + ["867_EnergyShield"] = { + ["Amulet"] = { + ["max"] = 89, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["868_GlobalEnergyShieldPercent"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["868_GlobalEnergyShieldPercentRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3665922113", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["869_IncreasedLife"] = { + ["Amulet"] = { + ["max"] = 149, + ["min"] = 10, + }, + ["Belt"] = { + ["max"] = 174, + ["min"] = 10, + }, + ["Boots"] = { + ["max"] = 149, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 214, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 149, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 174, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 119, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 189, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["869_LocalIncreasedArmourAndEnergyShieldAndLife"] = { + ["Chest"] = { + ["max"] = 49, + ["min"] = 7, + }, + ["Gloves"] = { + ["max"] = 49, + ["min"] = 7, + }, + ["Helmet"] = { + ["max"] = 49, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["869_LocalIncreasedArmourAndEvasionAndLife"] = { + ["Chest"] = { + ["max"] = 49, + ["min"] = 7, + }, + ["Gloves"] = { + ["max"] = 49, + ["min"] = 7, + }, + ["Helmet"] = { + ["max"] = 49, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["869_LocalIncreasedArmourAndLife"] = { + ["Chest"] = { + ["max"] = 49, + ["min"] = 7, + }, + ["Gloves"] = { + ["max"] = 49, + ["min"] = 7, + }, + ["Helmet"] = { + ["max"] = 49, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["869_LocalIncreasedEnergyShieldAndLife"] = { + ["Chest"] = { + ["max"] = 49, + ["min"] = 7, + }, + ["Gloves"] = { + ["max"] = 49, + ["min"] = 7, + }, + ["Helmet"] = { + ["max"] = 49, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["869_LocalIncreasedEvasionAndEnergyShieldAndLife"] = { + ["Chest"] = { + ["max"] = 49, + ["min"] = 7, + }, + ["Gloves"] = { + ["max"] = 49, + ["min"] = 7, + }, + ["Helmet"] = { + ["max"] = 49, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["869_LocalIncreasedEvasionAndLife"] = { + ["Chest"] = { + ["max"] = 49, + ["min"] = 7, + }, + ["Gloves"] = { + ["max"] = 49, + ["min"] = 7, + }, + ["Helmet"] = { + ["max"] = 49, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["870_MaximumLifeIncreasePercent"] = { + ["Amulet"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["871_IncreasedMana"] = { + ["1HWeapon"] = { + ["max"] = 164, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 328, + ["min"] = 20, + }, + ["Amulet"] = { + ["max"] = 189, + ["min"] = 10, + }, + ["Belt"] = { + ["max"] = 124, + ["min"] = 10, + }, + ["Boots"] = { + ["max"] = 124, + ["min"] = 10, + }, + ["Focus"] = { + ["max"] = 164, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 124, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 149, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 179, + ["min"] = 10, + }, + ["Sceptre"] = { + ["max"] = 164, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 328, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 164, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["871_LocalIncreasedArmourAndEnergyShieldAndMana"] = { + ["Helmet"] = { + ["max"] = 39, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["871_LocalIncreasedArmourAndEvasionAndMana"] = { + ["Helmet"] = { + ["max"] = 39, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["871_LocalIncreasedArmourAndMana"] = { + ["Helmet"] = { + ["max"] = 39, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["871_LocalIncreasedEnergyShieldAndMana"] = { + ["Focus"] = { + ["max"] = 39, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 39, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["871_LocalIncreasedEvasionAndEnergyShieldAndMana"] = { + ["Helmet"] = { + ["max"] = 39, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["871_LocalIncreasedEvasionAndMana"] = { + ["Helmet"] = { + ["max"] = 39, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["871_LocalIncreasedSpiritAndMana"] = { + ["1HWeapon"] = { + ["max"] = 45, + ["min"] = 17, + }, + ["Sceptre"] = { + ["max"] = 45, + ["min"] = 17, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["871_WeaponSpellDamageAndMana"] = { + ["1HWeapon"] = { + ["max"] = 45, + ["min"] = 17, + }, + ["2HWeapon"] = { + ["max"] = 90, + ["min"] = 34, + }, + ["Staff"] = { + ["max"] = 90, + ["min"] = 34, + }, + ["Wand"] = { + ["max"] = 45, + ["min"] = 17, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["871_WeaponTrapDamageAndMana"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["872_MaximumManaIncreasePercent"] = { + ["Amulet"] = { + ["max"] = 8, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "explicit", + }, + }, + ["874_BaseSpirit"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["Chest"] = { + ["max"] = 61, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["875_ProjectileSpeed"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["Quiver"] = { + ["max"] = 46, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "explicit", + }, + }, + ["875_ProjectileSpeedRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1777421941", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", + ["type"] = "explicit", + }, + }, + ["876_BeltFlaskLifeRecoveryRate"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", + ["type"] = "explicit", + }, + }, + ["8776_OfferingDuration"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2957407601", + ["text"] = "Offering Skills have #% increased Duration", + ["type"] = "explicit", + }, + }, + ["8776_OfferingDurationRadius"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2374711847", + ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", + ["type"] = "explicit", + }, + }, + ["8777_OfferingLife"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3787460122", + ["text"] = "Offerings have #% increased Maximum Life", + ["type"] = "explicit", + }, + }, + ["8777_OfferingLifeRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2107703111", + ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", + ["type"] = "explicit", + }, + }, + ["877_BeltFlaskManaRecoveryRate"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", + ["type"] = "explicit", + }, + }, + ["878_BeltIncreasedCharmDuration"] = { + ["Belt"] = { + ["max"] = 33, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", + ["type"] = "explicit", + }, + }, + ["878_CharmDuration"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", + ["type"] = "explicit", + }, + }, + ["878_CharmDurationRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3088348485", + ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", + ["type"] = "explicit", + }, + }, + ["8799_ParryDamage"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1569159338", + ["text"] = "#% increased Parry Damage", + ["type"] = "explicit", + }, + }, + ["8799_ParryDamageRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1007380041", + ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", + ["type"] = "explicit", + }, + }, + ["879_FlaskDuration"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", + ["type"] = "explicit", + }, + }, + ["879_FlaskDurationRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1773308808", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", + ["type"] = "explicit", + }, + }, + ["8808_ParriedDebuffDuration"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3401186585", + ["text"] = "#% increased Parried Debuff Duration", + ["type"] = "explicit", + }, + }, + ["8808_ParriedDebuffDurationRadius"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1514844108", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", + ["type"] = "explicit", + }, + }, + ["8809_StunThresholdDuringParry"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1911237468", + ["text"] = "#% increased Stun Threshold while Parrying", + ["type"] = "explicit", + }, + }, + ["8809_StunThresholdDuringParryRadius"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1495814176", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", + ["type"] = "explicit", + }, + }, + ["881_AlliesInPresenceAllDamage"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["Sceptre"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["882_AlliesInPresenceAddedPhysicalDamage"] = { + ["1HWeapon"] = { + ["max"] = 25.5, + ["min"] = 2, + }, + ["Sceptre"] = { + ["max"] = 25.5, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["type"] = "explicit", + }, + }, + ["883_AlliesInPresenceAddedFireDamage"] = { + ["1HWeapon"] = { + ["max"] = 37, + ["min"] = 2, + }, + ["Sceptre"] = { + ["max"] = 37, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_849987426", + ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", + ["type"] = "explicit", + }, + }, + ["884_AlliesInPresenceAddedColdDamage"] = { + ["1HWeapon"] = { + ["max"] = 30.5, + ["min"] = 2, + }, + ["Sceptre"] = { + ["max"] = 30.5, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2347036682", + ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", + ["type"] = "explicit", + }, + }, + ["885_AlliesInPresenceAddedLightningDamage"] = { + ["1HWeapon"] = { + ["max"] = 37.5, + ["min"] = 3, + }, + ["Sceptre"] = { + ["max"] = 37.5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", + ["type"] = "explicit", + }, + }, + ["890_AlliesInPresenceIncreasedAccuracy"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3169585282", + ["text"] = "Allies in your Presence have # to Accuracy Rating", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["8914_PlantDamageForJewel"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2518900926", + ["text"] = "#% increased Damage with Plant Skills", + ["type"] = "explicit", + }, + }, + ["8914_PlantDamageForJewelRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1590846356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", + ["type"] = "explicit", + }, + }, + ["891_AlliesInPresenceCriticalStrikeChance"] = { + ["1HWeapon"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["Sceptre"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + }, + ["8925_PoisonEffect"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2487305362", + ["text"] = "#% increased Magnitude of Poison you inflict", + ["type"] = "explicit", + }, + }, + ["8925_PoisonEffectRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_462424929", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", + ["type"] = "explicit", + }, + }, + ["892_AlliesInPresenceCriticalStrikeMultiplier"] = { + ["1HWeapon"] = { + ["max"] = 39, + ["min"] = 10, + }, + ["Sceptre"] = { + ["max"] = 39, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + }, + ["893_AlliesInPresenceIncreasedAttackSpeed"] = { + ["1HWeapon"] = { + ["max"] = 16, + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 16, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "explicit", + }, + }, + ["894_AlliesInPresenceIncreasedCastSpeed"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 20, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["895_AlliesInPresenceAllResistances"] = { + ["1HWeapon"] = { + ["max"] = 18, + ["min"] = 3, + }, + ["Sceptre"] = { + ["max"] = 18, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3850614073", + ["text"] = "Allies in your Presence have #% to all Elemental Resistances", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["896_AlliesInPresenceLifeRegeneration"] = { + ["1HWeapon"] = { + ["max"] = 33, + ["min"] = 1, + }, + ["Sceptre"] = { + ["max"] = 33, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4010677958", + ["text"] = "Allies in your Presence Regenerate # Life per second", + ["type"] = "explicit", + }, + }, + ["8970_ChainFromTerrain"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "explicit", + }, + }, + ["8970_ChainFromTerrainRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2334956771", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "explicit", + }, + }, + ["8973_ProjectileDamageIfMeleeHitRecently"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3596695232", + ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["type"] = "explicit", + }, + }, + ["8973_ProjectileDamageIfMeleeHitRecentlyRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_288364275", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["type"] = "explicit", + }, + }, + ["900_CharmGuardWhileActive"] = { + ["Charm"] = { + ["max"] = 500, + ["min"] = 44, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2676834156", + ["text"] = "Also grants # Guard", + ["type"] = "explicit", + }, + }, + ["901_CharmGainLifeOnUse"] = { + ["Charm"] = { + ["max"] = 350, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2365392475", + ["text"] = "Recover # Life when Used", + ["type"] = "explicit", + }, + }, + ["9020_QuarterstaffFreezeBuildup"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1697447343", + ["text"] = "#% increased Freeze Buildup with Quarterstaves", + ["type"] = "explicit", + }, + }, + ["9020_QuarterstaffFreezeBuildupRadius"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_127081978", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", + ["type"] = "explicit", + }, + }, + ["9028_QuiverModifierEffect"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1200678966", + ["text"] = "#% increased bonuses gained from Equipped Quiver", + ["type"] = "explicit", + }, + }, + ["9028_QuiverModifierEffectRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4180952808", + ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", + ["type"] = "explicit", + }, + }, + ["902_CharmGainManaOnUse"] = { + ["Charm"] = { + ["max"] = 300, + ["min"] = 16, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1120862500", + ["text"] = "Recover # Mana when Used", + ["type"] = "explicit", + }, + }, + ["9032_MaximumRage"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["9032_MaximumRageRadius"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1846980580", + ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["904_FlaskIncreasedRecoveryOnLowMana"] = { + ["ManaFlask"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3276224428", + ["text"] = "#% more Recovery if used while on Low Mana", + ["type"] = "explicit", + }, + }, + ["905_FlaskFullInstantRecovery"] = { + ["LifeFlask"] = { + ["max"] = -50, + ["min"] = -50, + }, + ["ManaFlask"] = { + ["max"] = -50, + ["min"] = -50, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, + ["905_FlaskIncreasedRecoveryAmount"] = { + ["LifeFlask"] = { + ["max"] = 80, + ["min"] = 41, + }, + ["ManaFlask"] = { + ["max"] = 80, + ["min"] = 41, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", + ["type"] = "explicit", + }, + }, + ["906_FlaskIncreasedRecoveryOnLowLife"] = { + ["LifeFlask"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_886931978", + ["text"] = "#% more Recovery if used while on Low Life", + ["type"] = "explicit", + }, + }, + ["908_FlaskExtraLifeCostsMana"] = { + ["LifeFlask"] = { + ["max"] = 100, + ["min"] = 61, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1261982764", + ["text"] = "#% increased Life Recovered", + ["type"] = "explicit", + }, + }, + ["909_FlaskExtraManaCostsLife"] = { + ["ManaFlask"] = { + ["max"] = 100, + ["min"] = 61, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1811130680", + ["text"] = "#% increased Mana Recovered", + ["type"] = "explicit", + }, + }, + ["910_FlaskHealsMinions"] = { + ["LifeFlask"] = { + ["max"] = 80, + ["min"] = 51, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2416869319", + ["text"] = "Grants #% of Life Recovery to Minions", + ["type"] = "explicit", + }, + }, + ["911_FlaskFullInstantRecovery"] = { + ["LifeFlask"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["ManaFlask"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1526933524", + ["text"] = "Instant Recovery", + ["type"] = "explicit", + }, + }, + ["912_FlaskPartialInstantRecovery"] = { + ["LifeFlask"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["ManaFlask"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2503377690", + ["text"] = "#% of Recovery applied Instantly", + ["type"] = "explicit", + }, + }, + ["913_FlaskIncreasedRecoverySpeed"] = { + ["LifeFlask"] = { + ["max"] = 70, + ["min"] = 41, + }, + ["ManaFlask"] = { + ["max"] = 70, + ["min"] = 41, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", + ["type"] = "explicit", + }, + }, + ["9149_CrossbowReloadSpeed"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3192728503", + ["text"] = "#% increased Crossbow Reload Speed", + ["type"] = "explicit", + }, + }, + ["9149_CrossbowReloadSpeedRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3856744003", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", + ["type"] = "explicit", + }, + }, + ["914_FlaskExtraLifeCostsMana"] = { + ["LifeFlask"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_648019518", + ["text"] = "Removes #% of Life Recovered from Mana when used", + ["type"] = "explicit", + }, + }, + ["915_FlaskExtraManaCostsLife"] = { + ["ManaFlask"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_959641748", + ["text"] = "Removes #% of Mana Recovered from Life when used", + ["type"] = "explicit", + }, + }, + ["916_ItemFoundRarityIncrease"] = { + ["Amulet"] = { + ["max"] = 18, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 18, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 18, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 18, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 18, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "explicit", + }, + }, + ["916_ItemFoundRarityIncreasePrefix"] = { + ["Amulet"] = { + ["max"] = 19, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 19, + ["min"] = 8, + }, + ["Ring"] = { + ["max"] = 19, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "explicit", + }, + }, + ["917_LocalBaseCriticalStrikeChance"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["2HMace"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["Bow"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["Crossbow"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["Flail"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["Quarterstaff"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["Spear"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["Talisman"] = { + ["max"] = 5, + ["min"] = 1.01, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_518292764", + ["text"] = "#% to Critical Hit Chance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["918_LocalCriticalStrikeMultiplier"] = { + ["1HMace"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Crossbow"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Flail"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["Talisman"] = { + ["max"] = 25, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["919_LocalIncreasedAttackSpeed"] = { + ["1HMace"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 19, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 19, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "explicit", + }, + }, + ["9209_ReducedBleedDuration"] = { + ["Chest"] = { + ["max"] = -36, + ["min"] = -60, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1692879867", + ["text"] = "#% increased Duration of Bleeding on You", + ["type"] = "explicit", + }, + }, + ["921_LocalAttributeRequirements"] = { + ["1HMace"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["1HWeapon"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["2HMace"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["2HWeapon"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Boots"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Bow"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Chest"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Crossbow"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Flail"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Focus"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Gloves"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Helmet"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Quarterstaff"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Sceptre"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Shield"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Spear"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Staff"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Talisman"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["Wand"] = { + ["max"] = -15, + ["min"] = -35, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", + ["type"] = "explicit", + }, + }, + ["922_EssenceSpellSkillLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_124131830", + ["text"] = "# to Level of all Spell Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["922_GlobalIncreaseSpellSkillGemLevel"] = { + ["Amulet"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["Focus"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_124131830", + ["text"] = "# to Level of all Spell Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["922_GlobalIncreaseSpellSkillGemLevelWeapon"] = { + ["1HWeapon"] = { + ["max"] = 4, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 2, + }, + ["Staff"] = { + ["max"] = 6, + ["min"] = 2, + }, + ["Wand"] = { + ["max"] = 4, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_124131830", + ["text"] = "# to Level of all Spell Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["9241_ShieldArmourIncrease"] = { + ["AnyJewel"] = { + ["max"] = 32, + ["min"] = 18, + }, + ["BaseJewel"] = { + ["max"] = 32, + ["min"] = 18, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_145497481", + ["text"] = "#% increased Defences from Equipped Shield", + ["type"] = "explicit", + }, + }, + ["9241_ShieldArmourIncreaseRadius"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["RadiusJewel"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_713216632", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Defences from Equipped Shield", + ["type"] = "explicit", + }, + }, + ["9248_ShockEffect"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "explicit", + }, + }, + ["9248_ShockEffectRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1166140625", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", + ["type"] = "explicit", + }, + }, + ["924_GlobalIncreaseFireSpellSkillGemLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["924_GlobalIncreaseFireSpellSkillGemLevelWeapon"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["925_GlobalIncreaseColdSpellSkillGemLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["925_GlobalIncreaseColdSpellSkillGemLevelWeapon"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["926_GlobalIncreaseLightningSpellSkillGemLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["926_GlobalIncreaseLightningSpellSkillGemLevelWeapon"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["927_GlobalIncreaseChaosSpellSkillGemLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["927_GlobalIncreaseChaosSpellSkillGemLevelWeapon"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["928_GlobalIncreaseMeleeSkillGemLevel"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["Amulet"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["Gloves"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Spear"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_9187492", + ["text"] = "# to Level of all Melee Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["928_GlobalIncreaseMeleeSkillGemLevelWeapon"] = { + ["2HMace"] = { + ["max"] = 7, + ["min"] = 2, + }, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 2, + }, + ["Quarterstaff"] = { + ["max"] = 7, + ["min"] = 2, + }, + ["Talisman"] = { + ["max"] = 7, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_9187492", + ["text"] = "# to Level of all Melee Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["929_EssenceAttackSkillLevel"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3035140377", + ["text"] = "# to Level of all Attack Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["930_GlobalIncreaseProjectileSkillGemLevel"] = { + ["Amulet"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["Quiver"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1202301673", + ["text"] = "# to Level of all Projectile Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["930_GlobalIncreaseProjectileSkillGemLevelWeapon"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 7, + ["min"] = 2, + }, + ["Spear"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1202301673", + ["text"] = "# to Level of all Projectile Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["9317_ShapeshiftSkillSpeedForJewel"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_918325986", + ["text"] = "#% increased Skill Speed while Shapeshifted", + ["type"] = "explicit", + }, + }, + ["9317_ShapeshiftSkillSpeedForJewelRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3579898587", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", + ["type"] = "explicit", + }, + }, + ["931_GlobalIncreaseMinionSpellSkillGemLevel"] = { + ["Amulet"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["931_GlobalIncreaseMinionSpellSkillGemLevelWeapon"] = { + ["1HWeapon"] = { + ["max"] = 4, + ["min"] = 1, + }, + ["Sceptre"] = { + ["max"] = 4, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["933_CriticalStrikeChance"] = { + ["Amulet"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 34, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Critical Hit Chance", + ["type"] = "explicit", + }, + }, + ["933_CriticalStrikeChanceRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2077117738", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + }, + ["934_AttackCriticalStrikeChance"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["Quiver"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", + ["type"] = "explicit", + }, + }, + ["934_AttackCriticalStrikeChanceRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3865605585", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", + ["type"] = "explicit", + }, + }, + ["935_SpellCriticalStrikeChance"] = { + ["1HWeapon"] = { + ["max"] = 73, + ["min"] = 27, + }, + ["2HWeapon"] = { + ["max"] = 109, + ["min"] = 40, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 59, + ["min"] = 27, + }, + ["Staff"] = { + ["max"] = 109, + ["min"] = 40, + }, + ["Wand"] = { + ["max"] = 73, + ["min"] = 27, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "explicit", + }, + }, + ["935_SpellCriticalStrikeChanceRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2704905000", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", + ["type"] = "explicit", + }, + }, + ["937_CriticalStrikeMultiplier"] = { + ["Amulet"] = { + ["max"] = 39, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 34, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + }, + ["937_CriticalStrikeMultiplierRadius"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2359002191", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + }, + ["938_AttackCriticalStrikeMultiplier"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 39, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3714003708", + ["text"] = "#% increased Critical Damage Bonus for Attack Damage", + ["type"] = "explicit", + }, + }, + ["938_AttackCriticalStrikeMultiplierRadius"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1352561456", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", + ["type"] = "explicit", + }, + }, + ["939_SpellCritMultiplierForJewel"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_274716455", + ["text"] = "#% increased Critical Spell Damage Bonus", + ["type"] = "explicit", + }, + }, + ["939_SpellCritMultiplierForJewelRadius"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2466785537", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", + ["type"] = "explicit", + }, + }, + ["939_SpellCriticalStrikeMultiplier"] = { + ["1HWeapon"] = { + ["max"] = 39, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 59, + ["min"] = 15, + }, + ["Focus"] = { + ["max"] = 34, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 59, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 39, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_274716455", + ["text"] = "#% increased Critical Spell Damage Bonus", + ["type"] = "explicit", + }, + }, + ["941_IncreasedAttackSpeed"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Gloves"] = { + ["max"] = 16, + ["min"] = 5, + }, + ["Quiver"] = { + ["max"] = 16, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "explicit", + }, + }, + ["941_IncreasedAttackSpeedRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2822644689", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", + ["type"] = "explicit", + }, + }, + ["942_IncreasedCastSpeed"] = { + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 9, + }, + ["2HWeapon"] = { + ["max"] = 52, + ["min"] = 14, + }, + ["Amulet"] = { + ["max"] = 28, + ["min"] = 9, + }, + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["Focus"] = { + ["max"] = 32, + ["min"] = 9, + }, + ["Ring"] = { + ["max"] = 24, + ["min"] = 9, + }, + ["Staff"] = { + ["max"] = 52, + ["min"] = 14, + }, + ["Wand"] = { + ["max"] = 35, + ["min"] = 9, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["942_IncreasedCastSpeedRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1022759479", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", + ["type"] = "explicit", + }, + }, + ["943_AdditionalAmmo"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "explicit", + }, + }, + ["944_AdditionalCharm"] = { + ["specialCaseData"] = { + ["overrideModLinePlural"] = "+# Charm Slots", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2582079000", + ["text"] = "# Charm Slot", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["945_AdditionalArrows"] = { + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "explicit", + }, + }, + ["946_AllAttributes"] = { + ["Amulet"] = { + ["max"] = 24, + ["min"] = 2, + }, + ["Ring"] = { + ["max"] = 13, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1379411836", + ["text"] = "# to all Attributes", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["947_Strength"] = { + ["1HMace"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Amulet"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Belt"] = { + ["max"] = 36, + ["min"] = 5, + }, + ["Boots"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["948_Dexterity"] = { + ["1HWeapon"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Amulet"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Boots"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 36, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Quiver"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["949_Intelligence"] = { + ["1HWeapon"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Amulet"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Boots"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 36, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["950_EssenceReducedCriticalDamageAgainstYou"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "explicit", + }, + }, + ["950_ReducedExtraDamageFromCrits"] = { + ["Shield"] = { + ["max"] = 54, + ["min"] = 21, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "explicit", + }, + }, + ["951_ReducedPhysicalDamageTaken"] = { + ["Shield"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + }, + ["952_MaximumElementalResistance"] = { + ["Shield"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["9531_StunThresholdfromEnergyShield"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["9531_StunThresholdfromEnergyShieldRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1653682082", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["9533_IncreasedStunThresholdIfNoRecentStun"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1405298142", + ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", + ["type"] = "explicit", + }, + }, + ["9533_IncreasedStunThresholdIfNoRecentStunRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_654207792", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", + ["type"] = "explicit", + }, + }, + ["953_MaximumFireResist"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["954_MaximumColdResist"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["955_MaximumLightningResistance"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["956_MaximumChaosResistance"] = { + ["Shield"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1301765461", + ["text"] = "#% to Maximum Chaos Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["957_AllResistances"] = { + ["Amulet"] = { + ["max"] = 18, + ["min"] = 3, + }, + ["Ring"] = { + ["max"] = 16, + ["min"] = 3, + }, + ["Shield"] = { + ["max"] = 18, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["958_FireResistance"] = { + ["Amulet"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Belt"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["959_ColdResistance"] = { + ["Amulet"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Belt"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["960_LightningResistance"] = { + ["Amulet"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Belt"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["961_ChaosResistance"] = { + ["Amulet"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Belt"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Boots"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Chest"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Focus"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Gloves"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Helmet"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Shield"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["962_MinionLife"] = { + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 21, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 50, + ["min"] = 21, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["962_MinionLifeRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_378796798", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, + ["963_ArmourAppliesToElementalDamage"] = { + ["Boots"] = { + ["max"] = 43, + ["min"] = 14, + }, + ["Chest"] = { + ["max"] = 50, + ["min"] = 14, + }, + ["Gloves"] = { + ["max"] = 43, + ["min"] = 14, + }, + ["Helmet"] = { + ["max"] = 43, + ["min"] = 14, + }, + ["Shield"] = { + ["max"] = 50, + ["min"] = 14, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["9646_ThornsDamageIncrease"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1315743832", + ["text"] = "#% increased Thorns damage", + ["type"] = "explicit", + }, + }, + ["9646_ThornsDamageIncreaseRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1320662475", + ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", + ["type"] = "explicit", + }, + }, + ["964_EvasionAppliesToDeflection"] = { + ["Boots"] = { + ["max"] = 23, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 26, + ["min"] = 8, + }, + ["Gloves"] = { + ["max"] = 23, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 23, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 26, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3033371881", + ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", + ["type"] = "explicit", + }, + }, + ["9653_ThornsPhysicalDamage"] = { + ["Belt"] = { + ["max"] = 185.5, + ["min"] = 2, + }, + ["Chest"] = { + ["max"] = 185.5, + ["min"] = 2, + }, + ["Shield"] = { + ["max"] = 185.5, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2881298780", + ["text"] = "# to # Physical Thorns damage", + ["type"] = "explicit", + }, + }, + ["966_EnergyShieldRegeneration"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Boots"] = { + ["max"] = 45, + ["min"] = 26, + }, + ["Focus"] = { + ["max"] = 55, + ["min"] = 26, + }, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 26, + }, + ["Helmet"] = { + ["max"] = 45, + ["min"] = 26, + }, + ["Shield"] = { + ["max"] = 55, + ["min"] = 26, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "explicit", + }, + }, + ["966_EnergyShieldRegenerationRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1552666713", + ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", + ["type"] = "explicit", + }, + }, + ["967_EnergyShieldDelay"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 55, + ["min"] = 26, + }, + ["Focus"] = { + ["max"] = 55, + ["min"] = 26, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "explicit", + }, + }, + ["967_EnergyShieldDelayRadius"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3394832998", + ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", + ["type"] = "explicit", + }, + }, + ["968_LifeRegeneration"] = { + ["Amulet"] = { + ["max"] = 33, + ["min"] = 1, + }, + ["Belt"] = { + ["max"] = 29, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 23, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 36, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 23, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 18, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3325883026", + ["text"] = "# Life Regeneration per second", + ["type"] = "explicit", + }, + }, + ["969_LifeRegenerationRate"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", + ["type"] = "explicit", + }, + }, + ["969_LifeRegenerationRateRadius"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1185341308", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", + ["type"] = "explicit", + }, + }, + ["970_DamageTakenGainedAsLife"] = { + ["Amulet"] = { + ["max"] = 24, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["970_LifeRecoupForJewel"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["970_LifeRecoupForJewelRadius"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3669820740", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["9712_DamageWithTriggeredSpells"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3067892458", + ["text"] = "Triggered Spells deal #% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["9712_DamageWithTriggeredSpellsRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_473917671", + ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["971_LifeLeechPermyriad"] = { + ["Gloves"] = { + ["max"] = 9.9, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 7.9, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2557965901", + ["text"] = "Leech #% of Physical Attack Damage as Life", + ["type"] = "explicit", + }, + }, + ["972_LifeLeechLocalPermyriad"] = { + ["1HMace"] = { + ["max"] = 9.9, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 9.9, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 9.9, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 9.9, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 9.9, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 9.9, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 9.9, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 9.9, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_55876295", + ["text"] = "Leeches #% of Physical Damage as Life", + ["type"] = "explicit", + }, + }, + ["973_LifeGainPerTarget"] = { + ["Gloves"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["974_LifeGainPerTargetLocal"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["2HMace"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Bow"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Crossbow"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Flail"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Quarterstaff"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Spear"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["Talisman"] = { + ["max"] = 5, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", + ["type"] = "explicit", + }, + }, + ["975_LifeGainedFromEnemyDeath"] = { + ["1HMace"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["1HWeapon"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["2HMace"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Bow"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Crossbow"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Flail"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Gloves"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Quarterstaff"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Quiver"] = { + ["max"] = 53, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 53, + ["min"] = 4, + }, + ["Spear"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Staff"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Talisman"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["Wand"] = { + ["max"] = 84, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "explicit", + }, + }, + ["976_LightRadiusAndManaRegeneration"] = { + ["1HWeapon"] = { + ["max"] = 22, + ["min"] = 8, + }, + ["2HWeapon"] = { + ["max"] = 22, + ["min"] = 8, + }, + ["Ring"] = { + ["max"] = 22, + ["min"] = 8, + }, + ["Sceptre"] = { + ["max"] = 22, + ["min"] = 8, + }, + ["Staff"] = { + ["max"] = 22, + ["min"] = 8, + }, + ["Wand"] = { + ["max"] = 22, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + }, + ["976_ManaRegeneration"] = { + ["1HWeapon"] = { + ["max"] = 69, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 104, + ["min"] = 15, + }, + ["Amulet"] = { + ["max"] = 69, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 69, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 69, + ["min"] = 10, + }, + ["Sceptre"] = { + ["max"] = 69, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 104, + ["min"] = 15, + }, + ["Wand"] = { + ["max"] = 69, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + }, + ["976_ManaRegenerationRadius"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3256879910", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", + ["type"] = "explicit", + }, + }, + ["977_PercentDamageGoesToMana"] = { + ["Amulet"] = { + ["max"] = 24, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "explicit", + }, + }, + ["978_ManaLeechLocalPermyriad"] = { + ["1HMace"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["1HWeapon"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["2HMace"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["Bow"] = { + ["max"] = 7.9, + ["min"] = 4, + }, + ["Crossbow"] = { + ["max"] = 7.9, + ["min"] = 4, + }, + ["Flail"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["Quarterstaff"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["Spear"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["Talisman"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", + ["type"] = "explicit", + }, + }, + ["979_ManaLeechPermyriad"] = { + ["Gloves"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 6.9, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", + ["type"] = "explicit", + }, + }, + ["980_ManaGainedFromEnemyDeath"] = { + ["1HMace"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["2HMace"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["2HWeapon"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Bow"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Crossbow"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Flail"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Quarterstaff"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Quiver"] = { + ["max"] = 27, + ["min"] = 2, + }, + ["Ring"] = { + ["max"] = 27, + ["min"] = 2, + }, + ["Spear"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Staff"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Talisman"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Wand"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "explicit", + }, + }, + ["982_BeltReducedFlaskChargesUsed"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "explicit", + }, + }, + ["984_StunDamageIncrease"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_239367161", + ["text"] = "#% increased Stun Buildup", + ["type"] = "explicit", + }, + }, + ["984_StunDamageIncreaseRadius"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4173554949", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", + ["type"] = "explicit", + }, + }, + ["985_LocalStunDamageIncrease"] = { + ["1HMace"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["1HWeapon"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["2HMace"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["2HWeapon"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Flail"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Quarterstaff"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Spear"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Talisman"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "explicit", + }, + }, + ["9860_VolatilityOnKillChance"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3749502527", + ["text"] = "#% chance to gain Volatility on Kill", + ["type"] = "explicit", + }, + }, + ["9860_VolatilityOnKillChanceRadius"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4225700219", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", + ["type"] = "explicit", + }, + }, + ["987_LocalStunDuration"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Flail"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Quarterstaff"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Spear"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["Talisman"] = { + ["max"] = 30, + ["min"] = 11, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_748522257", + ["text"] = "#% increased Stun Duration", + ["type"] = "explicit", + }, + }, + ["9883_WarcryEffect"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", + ["type"] = "explicit", + }, + }, + ["9883_WarcryEffectRadius"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2675129731", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", + ["type"] = "explicit", + }, + }, + ["9886_WarcryDamage"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1594812856", + ["text"] = "#% increased Damage with Warcries", + ["type"] = "explicit", + }, + }, + ["9886_WarcryDamageRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1160637284", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", + ["type"] = "explicit", + }, + }, + ["988_IgniteChanceIncrease"] = { + ["1HWeapon"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["2HWeapon"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["Wand"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "explicit", + }, + }, + ["988_IgniteChanceIncreaseRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_394473632", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", + ["type"] = "explicit", + }, + }, + ["9897_WeaponSwapSpeed"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", + ["type"] = "explicit", + }, + }, + ["9897_WeaponSwapSpeedRadius"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1129429646", + ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", + ["type"] = "explicit", + }, + }, + ["990_FreezeDamageIncrease"] = { + ["1HWeapon"] = { + ["max"] = 80, + ["min"] = 31, + }, + ["2HWeapon"] = { + ["max"] = 80, + ["min"] = 31, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 80, + ["min"] = 31, + }, + ["Wand"] = { + ["max"] = 80, + ["min"] = 31, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_473429811", + ["text"] = "#% increased Freeze Buildup", + ["type"] = "explicit", + }, + }, + ["990_FreezeDamageIncreaseRadius"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1087531620", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", + ["type"] = "explicit", + }, + }, + ["9915_WitheredEffect"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", + ["type"] = "explicit", + }, + }, + ["9915_WitheredEffectRadius"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3936121440", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", + ["type"] = "explicit", + }, + }, + ["992_ShockChanceIncrease"] = { + ["1HWeapon"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["2HWeapon"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["Wand"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "explicit", + }, + }, + ["992_ShockChanceIncreaseRadius"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1039268420", + ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", + ["type"] = "explicit", + }, + }, + ["994_LocalArmourAndEnergyShieldAndStunThreshold"] = { + ["Boots"] = { + ["max"] = 136, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 136, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_915769802", + ["text"] = "# to Stun Threshold", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["994_LocalArmourAndEvasionAndStunThreshold"] = { + ["Boots"] = { + ["max"] = 136, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 136, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_915769802", + ["text"] = "# to Stun Threshold", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["994_LocalArmourAndStunThreshold"] = { + ["Boots"] = { + ["max"] = 136, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 136, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_915769802", + ["text"] = "# to Stun Threshold", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["994_LocalEnergyShieldAndStunThreshold"] = { + ["Boots"] = { + ["max"] = 136, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_915769802", + ["text"] = "# to Stun Threshold", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["994_LocalEvasionAndEnergyShieldAndStunThreshold"] = { + ["Boots"] = { + ["max"] = 136, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_915769802", + ["text"] = "# to Stun Threshold", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["994_LocalEvasionAndStunThreshold"] = { + ["Boots"] = { + ["max"] = 136, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 136, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_915769802", + ["text"] = "# to Stun Threshold", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["994_StunThreshold"] = { + ["Belt"] = { + ["max"] = 304, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 352, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 304, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 304, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_915769802", + ["text"] = "# to Stun Threshold", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["996_ReducedBurnDuration"] = { + ["Chest"] = { + ["max"] = 60, + ["min"] = 36, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", + ["type"] = "explicit", + }, + }, + ["997_ReducedChillDuration"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 36, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1874553720", + ["text"] = "#% reduced Chill Duration on you", + ["type"] = "explicit", + }, + }, + ["998_ReducedFreezeDuration"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 36, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", + ["type"] = "explicit", + }, + }, + ["999_ReducedShockDuration"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 36, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_99927264", + ["text"] = "#% reduced Shock duration on you", + ["type"] = "explicit", + }, + }, + }, + ["Implicit"] = { + ["implicit.stat_1028592286"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1028592286", + ["text"] = "#% chance to Chain an additional time", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1050105434"] = { + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_1137147997"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1137147997", + ["text"] = "Unblockable", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1181501418"] = { + ["2HWeapon"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Talisman"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_1207554355"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1207554355", + ["text"] = "#% increased Arrow Speed", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1379411836"] = { + ["Amulet"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["Ring"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1379411836", + ["text"] = "# to all Attributes", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_1389754388"] = { + ["Belt"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1412682799"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1412682799", + ["text"] = "Used when you become Poisoned", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1416292992"] = { + ["Belt"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["specialCaseData"] = { + ["overrideModLinePlural"] = "+# Charm Slots", + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1416292992", + ["text"] = "Has # Charm Slot", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1434716233"] = { + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1434716233", + ["text"] = "Warcries Empower an additional Attack", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1444556985"] = { + ["Chest"] = { + ["max"] = 14, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1451444093"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1451444093", + ["text"] = "Bifurcates Critical Hits", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1503146834"] = { + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1503146834", + ["text"] = "Crushes Enemies on Hit", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1541903247"] = { + ["2HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1541903247", + ["text"] = "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1570770415"] = { + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1573130764"] = { + ["Quiver"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1589917703"] = { + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["Talisman"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1671376347"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_1691862754"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1691862754", + ["text"] = "Used when you become Frozen", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1702195217"] = { + ["2HWeapon"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1702195217", + ["text"] = "#% to Block chance", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_1745952865"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1782086450"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1803308202"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1803308202", + ["text"] = "#% increased Bolt Speed", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1810482573"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1810482573", + ["text"] = "Used when you become Stunned", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1836676211"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1967051901"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "implicit", + }, + }, + ["implicit.stat_1978899297"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_1980802737"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1980802737", + ["text"] = "Grenade Skills Fire an additional Projectile", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2016937536"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2016937536", + ["text"] = "Used when you take Lightning damage from a Hit", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2055966527"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2055966527", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2194114101"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2222186378"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2250533757"] = { + ["Chest"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2251279027"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2251279027", + ["text"] = "# to Level of all Corrupted Skill Gems", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_2321178454"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Quiver"] = { + ["max"] = 100, + ["min"] = 100, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", + ["type"] = "implicit", + }, + }, + ["implicit.stat_239367161"] = { + ["Quiver"] = { + ["max"] = 40, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_239367161", + ["text"] = "#% increased Stun Buildup", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2463230181"] = { + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Bow"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_2527686725"] = { + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2646093132"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2646093132", + ["text"] = "Inflict Abyssal Wasting on Hit", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2694482655"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_275498888"] = { + ["Ring"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_275498888", + ["text"] = "Maximum Quality is #%", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2763429652"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Spear"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2778646494"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2778646494", + ["text"] = "Used when you are affected by a Slow", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2797971005"] = { + ["Quiver"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2891184298"] = { + ["Ring"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2901986750"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["Boots"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 16, + ["min"] = 8, + }, + ["Ring"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_2923486259"] = { + ["Chest"] = { + ["max"] = 13, + ["min"] = 7, + }, + ["Ring"] = { + ["max"] = 13, + ["min"] = 7, + }, + ["Shield"] = { + ["max"] = 19, + ["min"] = 11, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_2968503605"] = { + ["2HWeapon"] = { + ["max"] = 80, + ["min"] = 50, + }, + ["Talisman"] = { + ["max"] = 80, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "implicit", + }, + }, + ["implicit.stat_2994271459"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2994271459", + ["text"] = "Used when you take Cold damage from a Hit", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3032590688"] = { + ["Quiver"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Ring"] = { + ["max"] = 2.5, + ["min"] = 2.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3182714256"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = -1, + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = -1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3182714256", + ["text"] = "# Prefix Modifier allowed", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_3261801346"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_328541901"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_3299347043"] = { + ["Amulet"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["Chest"] = { + ["max"] = 80, + ["min"] = 60, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_3310778564"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3310778564", + ["text"] = "Used when you take Chaos damage from a Hit", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3325883026"] = { + ["Amulet"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3325883026", + ["text"] = "# Life Regeneration per second", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3362812763"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_3372524247"] = { + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_3398402065"] = { + ["2HWeapon"] = { + ["max"] = -50, + ["min"] = -50, + }, + ["Bow"] = { + ["max"] = -50, + ["min"] = -50, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3398402065", + ["text"] = "#% increased Projectile Range", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3489782002"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_3544800472"] = { + ["Chest"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3552135623"] = { + ["1HWeapon"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["Spear"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3552135623", + ["text"] = "Prevent #% of Damage from Deflected Hits", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_3585532255"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3675300253"] = { + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3675300253", + ["text"] = "Strikes deal Splash Damage", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3676540188"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3676540188", + ["text"] = "Used when you start Bleeding", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3699444296"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3699444296", + ["text"] = "Used when you become Shocked", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3828375170"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3828375170", + ["text"] = "Bleeding you inflict deals Damage #% faster", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3854901951"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3854901951", + ["text"] = "Used when you take Fire damage from a Hit", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3855016469"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3917489142"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 12, + }, + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3954735777"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3954735777", + ["text"] = "#% chance to Poison on Hit with Attacks", + ["type"] = "implicit", + }, + }, + ["implicit.stat_3981240776"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_4010341289"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4010341289", + ["text"] = "Used when you kill a Rare or Unique enemy", + ["type"] = "implicit", + }, + }, + ["implicit.stat_4080418644"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_4126210832"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4126210832", + ["text"] = "Always Hits", + ["type"] = "implicit", + }, + }, + ["implicit.stat_4220027924"] = { + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_458438597"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "implicit", + }, + }, + ["implicit.stat_462041840"] = { + ["Belt"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_462041840", + ["text"] = "#% of Flask Recovery applied Instantly", + ["type"] = "implicit", + }, + }, + ["implicit.stat_535217483"] = { + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["Spear"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_535217483", + ["text"] = "#% increased Projectile Speed with this Weapon", + ["type"] = "implicit", + }, + }, + ["implicit.stat_548198834"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 16, + ["min"] = 16, + }, + ["Quarterstaff"] = { + ["max"] = 16, + ["min"] = 16, + }, + ["Spear"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_548198834", + ["text"] = "#% increased Melee Strike Range with this weapon", + ["type"] = "implicit", + }, + }, + ["implicit.stat_585126960"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_585126960", + ["text"] = "Used when you become Ignited", + ["type"] = "implicit", + }, + }, + ["implicit.stat_624954515"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "implicit", + }, + }, + ["implicit.stat_644456512"] = { + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "implicit", + }, + }, + ["implicit.stat_680068163"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Chest"] = { + ["max"] = 40, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "implicit", + }, + }, + ["implicit.stat_681332047"] = { + ["Quiver"] = { + ["max"] = 10, + ["min"] = 7, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "implicit", + }, + }, + ["implicit.stat_718638445"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = -1, + }, + ["Ring"] = { + ["max"] = 1, + ["min"] = -1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_718638445", + ["text"] = "# Suffix Modifier allowed", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_731781020"] = { + ["Belt"] = { + ["max"] = 0.17, + ["min"] = 0.17, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_731781020", + ["text"] = "Flasks gain # charges per Second", + ["type"] = "implicit", + }, + }, + ["implicit.stat_789117908"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Chest"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "implicit", + }, + }, + ["implicit.stat_791928121"] = { + ["2HMace"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "implicit", + }, + }, + ["implicit.stat_803737631"] = { + ["Ring"] = { + ["max"] = 160, + ["min"] = 120, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_809229260"] = { + ["Belt"] = { + ["max"] = 140, + ["min"] = 100, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_809229260", + ["text"] = "# to Armour", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, + ["implicit.stat_821241191"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "implicit", + }, + }, + ["implicit.stat_836936635"] = { + ["Chest"] = { + ["max"] = 2.5, + ["min"] = 1.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", + ["type"] = "implicit", + }, + }, + ["implicit.stat_924253255"] = { + ["Chest"] = { + ["max"] = -20, + ["min"] = -30, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "implicit", + }, + }, + ["implicit.stat_958696139"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_958696139", + ["text"] = "Grants 1 additional Skill Slot", + ["type"] = "implicit", + }, + }, + }, + ["Rune"] = { + ["1002"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", + ["type"] = "augment", + }, + }, + ["1009"] = { + ["1HMace"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["2HMace"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Bow"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Claw"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Crossbow"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Flail"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Quarterstaff"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Spear"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Staff"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Talisman"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1857162058", + ["text"] = "Bonded: #% increased Ignite Magnitude", + ["type"] = "augment", + }, + }, + ["1227"] = { + ["1HMace"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["1HWeapon"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["2HMace"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["2HWeapon"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["Bow"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["Claw"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["Crossbow"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["Flail"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["Quarterstaff"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["Spear"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["Talisman"] = { + ["max"] = 24, + ["min"] = 24, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", + ["type"] = "augment", + }, + }, + ["1268"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "augment", + }, + }, + ["1397"] = { + ["Helmet"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3666934677", + ["text"] = "#% increased Experience gain", + ["type"] = "augment", + }, + }, + ["1437"] = { + ["1HMace"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["2HMace"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Bow"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Claw"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Crossbow"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Flail"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Quarterstaff"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Spear"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Talisman"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", + ["type"] = "augment", + }, + }, + ["1439"] = { + ["1HMace"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["2HMace"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Bow"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Claw"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Crossbow"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Flail"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Quarterstaff"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Spear"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Talisman"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1030153674", + ["text"] = "Recover #% of maximum Mana on Kill", + ["type"] = "augment", + }, + }, + ["1466"] = { + ["Boots"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3824372849", + ["text"] = "#% increased Curse Duration", + ["type"] = "augment", + }, + }, + ["1481"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_649025131", + ["text"] = "#% increased Movement Speed when on Low Life", + ["type"] = "augment", + }, + }, + ["1544"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2546200564", + ["text"] = "Bonded: #% increased Duration of Elemental Ailments on Enemies", + ["type"] = "augment", + }, + }, + ["1557"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "augment", + }, + }, + ["1572"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "augment", + }, + }, + ["1601"] = { + ["1HMace"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["2HMace"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["2HWeapon"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Bow"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Claw"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Crossbow"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Flail"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Quarterstaff"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Spear"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Staff"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Talisman"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Wand"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_635535560", + ["text"] = "Bonded: Gain #% of Damage as Extra Physical Damage", + ["type"] = "augment", + }, + }, + ["1602"] = { + ["1HMace"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["1HWeapon"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["2HMace"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["2HWeapon"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Bow"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Claw"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Crossbow"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Flail"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Quarterstaff"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Spear"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Staff"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Talisman"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Wand"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["type"] = "augment", + }, + }, + ["1614"] = { + ["1HMace"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["1HWeapon"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["2HMace"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["2HWeapon"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Bow"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Claw"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Crossbow"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Flail"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Quarterstaff"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Spear"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["Talisman"] = { + ["max"] = 13, + ["min"] = 13, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1922668512", + ["text"] = "Bonded: Gain #% of Elemental Damage as Extra Chaos Damage", + ["type"] = "augment", + }, + }, + ["1617"] = { + ["1HMace"] = { + ["max"] = 0.4, + ["min"] = 0.4, + }, + ["1HWeapon"] = { + ["max"] = 0.4, + ["min"] = 0.4, + }, + ["2HMace"] = { + ["max"] = 0.4, + ["min"] = 0.4, + }, + ["2HWeapon"] = { + ["max"] = 0.4, + ["min"] = 0.4, + }, + ["Boots"] = { + ["max"] = 0.35, + ["min"] = 0.25, + }, + ["Bow"] = { + ["max"] = 0.4, + ["min"] = 0.4, + }, + ["Chest"] = { + ["max"] = 1.5, + ["min"] = 0.25, + }, + ["Claw"] = { + ["max"] = 0.4, + ["min"] = 0.4, + }, + ["Crossbow"] = { + ["max"] = 0.4, + ["min"] = 0.4, + }, + ["Flail"] = { + ["max"] = 0.4, + ["min"] = 0.4, + }, + ["Focus"] = { + ["max"] = 0.35, + ["min"] = 0.25, + }, + ["Gloves"] = { + ["max"] = 0.35, + ["min"] = 0.25, + }, + ["Helmet"] = { + ["max"] = 0.35, + ["min"] = 0.25, + }, + ["Quarterstaff"] = { + ["max"] = 0.4, + ["min"] = 0.4, + }, + ["Shield"] = { + ["max"] = 0.35, + ["min"] = 0.25, + }, + ["Spear"] = { + ["max"] = 0.4, + ["min"] = 0.4, + }, + ["Talisman"] = { + ["max"] = 0.4, + ["min"] = 0.4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", + ["type"] = "augment", + }, + }, + ["1646"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Crossbow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Quarterstaff"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Talisman"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1728593484", + ["text"] = "Bonded: Minions deal #% increased Damage", + ["type"] = "augment", + }, + }, + ["1835"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3407849389", + ["text"] = "#% reduced effect of Curses on you", + ["type"] = "augment", + }, + }, + ["1875"] = { + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3854332662", + ["text"] = "Bonded: #% increased Area of Effect of Curses", + ["type"] = "augment", + }, + }, + ["2153"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Spear"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", + ["type"] = "augment", + }, + }, + ["2266"] = { + ["Chest"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_217649179", + ["text"] = "Bonded: #% increased Curse Magnitudes", + ["type"] = "augment", + }, + }, + ["2362"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "augment", + }, + }, + ["2558"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Focus"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_901007505", + ["text"] = "Bonded: Minions have #% to all Elemental Resistances", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["2649"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3449499156", + ["text"] = "Bonded: Minions have #% increased Area of Effect", + ["type"] = "augment", + }, + }, + ["2786"] = { + ["1HMace"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["1HWeapon"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["2HMace"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["2HWeapon"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["Boots"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["Claw"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["Crossbow"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["Flail"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["Quarterstaff"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["Spear"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["Talisman"] = { + ["max"] = -25, + ["min"] = -25, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2011656677", + ["text"] = "#% increased Poison Duration", + ["type"] = "augment", + }, + }, + ["2891"] = { + ["Gloves"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2103650854", + ["text"] = "#% increased effect of Arcane Surge on you", + ["type"] = "augment", + }, + }, + ["2929"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_542243093", + ["text"] = "Bonded: #% increased Warcry Cooldown Recovery Rate", + ["type"] = "augment", + }, + }, + ["3327"] = { + ["Helmet"] = { + ["max"] = 6, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1984310483", + ["text"] = "Enemies you Curse take #% increased Damage", + ["type"] = "augment", + }, + }, + ["3330"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Spear"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", + ["type"] = "augment", + }, + }, + ["3617"] = { + ["Helmet"] = { + ["max"] = -5, + ["min"] = -5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1772929282", + ["text"] = "Enemies you Curse have #% to Chaos Resistance", + ["type"] = "augment", + }, + }, + ["4022"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_687156079", + ["text"] = "# to Accuracy Rating per 1 Item Evasion Rating on Equipped Helmet", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["4115"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3570773271", + ["text"] = "Increases and Reductions to Life Regeneration Rate also apply to Mana Regeneration Rate", + ["type"] = "augment", + }, + }, + ["4147"] = { + ["Boots"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Focus"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_4128954176", + ["text"] = "Bonded: #% increased Elemental Ailment Threshold", + ["type"] = "augment", + }, + }, + ["4167"] = { + ["Chest"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3655769732", + ["text"] = "#% to Quality of all Skills", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["4221"] = { + ["Staff"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_975988108", + ["text"] = "Bonded: Archon recovery period expires #% faster", + ["type"] = "augment", + }, + }, + ["4223"] = { + ["Focus"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1236190486", + ["text"] = "Bonded: #% increased effect of Archon Buffs on you", + ["type"] = "augment", + }, + }, + ["4261"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2191621386", + ["text"] = "#% of Armour also applies to Chaos Damage while on full Energy Shield", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["4275"] = { + ["Chest"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1197632982", + ["text"] = "# to Armour per 1 Spirit", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["4287"] = { + ["Staff"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["Wand"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3990135792", + ["text"] = "Bonded: Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", + ["type"] = "augment", + }, + }, + ["4335"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Spear"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Talisman"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_859085781", + ["text"] = "Bonded: Attacks have #% to Critical Hit Chance", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["4382"] = { + ["1HMace"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HMace"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Bow"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Claw"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Crossbow"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Flail"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Quarterstaff"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Spear"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Talisman"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2077615515", + ["text"] = "#% increased Attack Damage against Rare or Unique Enemies", + ["type"] = "augment", + }, + }, + ["4387"] = { + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_674141348", + ["text"] = "Bonded: #% increased Attack Damage while Shapeshifted", + ["type"] = "augment", + }, + }, + ["4512"] = { + ["Helmet"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1947060170", + ["text"] = "#% of Armour also applies to Cold Damage", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["4513"] = { + ["Gloves"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3897831687", + ["text"] = "#% of Armour also applies to Fire Damage", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["4514"] = { + ["Boots"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2200571612", + ["text"] = "#% of Armour also applies to Lightning Damage", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["4523"] = { + ["Gloves"] = { + ["max"] = -15, + ["min"] = -15, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3144895835", + ["text"] = "Bonded: #% increased Magnitude of Bleeding on You", + ["type"] = "augment", + }, + }, + ["4539"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_232299587", + ["text"] = "Bonded: #% increased Cooldown Recovery Rate", + ["type"] = "augment", + }, + }, + ["4541"] = { + ["Boots"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1597408611", + ["text"] = "Bonded: Prevent #% of Damage from Deflected Hits", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["4572"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_310945763", + ["text"] = "#% increased Life Cost Efficiency", + ["type"] = "augment", + }, + }, + ["4582"] = { + ["Staff"] = { + ["max"] = 16, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 16, + ["min"] = 16, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2336012075", + ["text"] = "Bonded: #% increased Mana Cost Efficiency", + ["type"] = "augment", + }, + }, + ["4586"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_532897212", + ["text"] = "Bonded: #% increased Mana Cost Efficiency while on Low Mana", + ["type"] = "augment", + }, + }, + ["4604"] = { + ["Helmet"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_263495202", + ["text"] = "#% increased Cost Efficiency", + ["type"] = "augment", + }, + }, + ["4605"] = { + ["1HMace"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["1HWeapon"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["2HMace"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["2HWeapon"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["Bow"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["Claw"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["Crossbow"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["Flail"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["Quarterstaff"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["Spear"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["Talisman"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2561960218", + ["text"] = "Bonded: #% of Skill Mana Costs Converted to Life Costs", + ["type"] = "augment", + }, + }, + ["4608"] = { + ["Gloves"] = { + ["max"] = -15, + ["min"] = -15, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_165746512", + ["text"] = "Bonded: #% increased Slowing Potency of Debuffs on You", + ["type"] = "augment", + }, + }, + ["4662"] = { + ["Gloves"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["type"] = "augment", + }, + }, + ["4868"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Crossbow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Quarterstaff"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Talisman"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1039491398", + ["text"] = "Bonded: #% increased effect of Fully Broken Armour", + ["type"] = "augment", + }, + }, + ["5143"] = { + ["1HMace"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HMace"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Bow"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Claw"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Crossbow"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Flail"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Quarterstaff"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Spear"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Talisman"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1228682002", + ["text"] = "#% chance when you gain an Endurance Charge to gain an additional Endurance Charge", + ["type"] = "augment", + }, + }, + ["5144"] = { + ["1HMace"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HMace"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Bow"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Claw"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Crossbow"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Flail"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Quarterstaff"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Spear"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Talisman"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2916861134", + ["text"] = "#% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", + ["type"] = "augment", + }, + }, + ["5145"] = { + ["1HMace"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HMace"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Bow"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Claw"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Crossbow"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Flail"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Quarterstaff"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Spear"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Talisman"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3537994888", + ["text"] = "#% chance when you gain a Power Charge to gain an additional Power Charge", + ["type"] = "augment", + }, + }, + ["5146"] = { + ["1HMace"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["2HMace"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["2HWeapon"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Bow"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Claw"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Crossbow"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Flail"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Quarterstaff"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Spear"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Talisman"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1712188793", + ["text"] = "Bonded: #% chance to gain an additional random Charge when you gain a Charge", + ["type"] = "augment", + }, + }, + ["5227"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_763465498", + ["text"] = "Bonded: #% increased Charm Charges gained", + ["type"] = "augment", + }, + }, + ["5415"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_935518591", + ["text"] = "Critical Hit chance is Lucky against Parried enemies", + ["type"] = "augment", + }, + }, + ["5440"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3311629379", + ["text"] = "Bonded: #% increased Critical Hit Chance while Shapeshifted", + ["type"] = "augment", + }, + }, + ["5564"] = { + ["1HMace"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["2HMace"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["2HWeapon"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Bow"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Claw"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Crossbow"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Flail"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Quarterstaff"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Spear"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Talisman"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3823333703", + ["text"] = "Bonded: #% increased Damage against Immobilised Enemies", + ["type"] = "augment", + }, + }, + ["5567"] = { + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3412619569", + ["text"] = "Bonded: #% increased Damage while Shapeshifted", + ["type"] = "augment", + }, + }, + ["5668"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2986637363", + ["text"] = "Bonded: #% increased Duration of Damaging Ailments on Enemies", + ["type"] = "augment", + }, + }, + ["5670"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1381474422", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", + ["type"] = "augment", + }, + }, + ["5703"] = { + ["Boots"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Focus"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Gloves"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "augment", + }, + }, + ["5722"] = { + ["Boots"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1382805233", + ["text"] = "#% increased Deflection Rating while moving", + ["type"] = "augment", + }, + }, + ["5981"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2134854700", + ["text"] = "Bonded: #% chance for Damage of Enemies Hitting you to be Unlucky", + ["type"] = "augment", + }, + }, + ["5987"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Crossbow"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Flail"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Talisman"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", + ["type"] = "augment", + }, + }, + ["6106"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Crossbow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Quarterstaff"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Talisman"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3378643287", + ["text"] = "Bonded: #% increased Exposure Effect", + ["type"] = "augment", + }, + }, + ["6192"] = { + ["Gloves"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1482283017", + ["text"] = "Bonded: Fissure Skills have +# to Limit", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["6220"] = { + ["Boots"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Chest"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Focus"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Gloves"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Helmet"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2310741722", + ["text"] = "#% increased Life and Mana Recovery from Flasks", + ["type"] = "augment", + }, + }, + ["6295"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_280497929", + ["text"] = "# to maximum Mana per 2 Item Energy Shield on Equipped Helmet", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["6337"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3903510399", + ["text"] = "Gain Armour equal to #% of Life Lost from Hits in the past 8 seconds", + ["type"] = "augment", + }, + }, + ["6431"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "augment", + }, + }, + ["6473"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_155735928", + ["text"] = "Bonded: #% increased Glory generation", + ["type"] = "augment", + }, + }, + ["6476"] = { + ["Chest"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3898665772", + ["text"] = "Bonded: #% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "augment", + }, + }, + ["6748"] = { + ["Staff"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1112792773", + ["text"] = "Bonded: #% increased Immobilisation buildup", + ["type"] = "augment", + }, + }, + ["6924"] = { + ["1HMace"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["2HMace"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Bow"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Claw"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Crossbow"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Flail"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Quarterstaff"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Spear"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Talisman"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_4058552370", + ["text"] = "Bonded: Invocated Spells have #% chance to consume half as much Energy", + ["type"] = "augment", + }, + }, + ["6999"] = { + ["Boots"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3473409233", + ["text"] = "Lose #% of maximum Life per second while Sprinting", + ["type"] = "augment", + }, + }, + ["7037"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2410766865", + ["text"] = "Bonded: #% increased Life Regeneration rate while Shapeshifted", + ["type"] = "augment", + }, + }, + ["7269"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Crossbow"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Flail"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Talisman"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3678845069", + ["text"] = "Attacks with this Weapon have #% chance to inflict Exposure", + ["type"] = "augment", + }, + }, + ["7334"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Spear"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3885634897", + ["text"] = "#% chance to Poison on Hit with this weapon", + ["type"] = "augment", + }, + }, + ["7336"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Boots"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Crossbow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Focus"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Quarterstaff"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Talisman"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1496740334", + ["text"] = "Convert #% of Requirements to Dexterity", + ["type"] = "augment", + }, + }, + ["7337"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Boots"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Crossbow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Focus"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Quarterstaff"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Talisman"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2913012734", + ["text"] = "Convert #% of Requirements to Intelligence", + ["type"] = "augment", + }, + }, + ["7338"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Boots"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Crossbow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Focus"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Quarterstaff"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Talisman"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1556124492", + ["text"] = "Convert #% of Requirements to Strength", + ["type"] = "augment", + }, + }, + ["7483"] = { + ["Boots"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2876843277", + ["text"] = "#% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently", + ["type"] = "augment", + }, + }, + ["821"] = { + ["1HMace"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["1HWeapon"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["2HMace"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["2HWeapon"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["Bow"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["Claw"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["Crossbow"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["Flail"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["Quarterstaff"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["Spear"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["Talisman"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "augment", + }, + }, + ["823"] = { + ["1HMace"] = { + ["max"] = 28.5, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 28.5, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 28.5, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 28.5, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 28.5, + ["min"] = 5, + }, + ["Claw"] = { + ["max"] = 28.5, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 28.5, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 28.5, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 28.5, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 28.5, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 28.5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_709508406", + ["text"] = "Adds # to # Fire Damage", + ["type"] = "augment", + }, + }, + ["824"] = { + ["1HMace"] = { + ["max"] = 23.5, + ["min"] = 4, + }, + ["1HWeapon"] = { + ["max"] = 23.5, + ["min"] = 4, + }, + ["2HMace"] = { + ["max"] = 23.5, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 23.5, + ["min"] = 4, + }, + ["Bow"] = { + ["max"] = 23.5, + ["min"] = 4, + }, + ["Claw"] = { + ["max"] = 23.5, + ["min"] = 4, + }, + ["Crossbow"] = { + ["max"] = 23.5, + ["min"] = 4, + }, + ["Flail"] = { + ["max"] = 23.5, + ["min"] = 4, + }, + ["Quarterstaff"] = { + ["max"] = 23.5, + ["min"] = 4, + }, + ["Spear"] = { + ["max"] = 23.5, + ["min"] = 4, + }, + ["Talisman"] = { + ["max"] = 23.5, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "augment", + }, + }, + ["825"] = { + ["1HMace"] = { + ["max"] = 30.5, + ["min"] = 5.5, + }, + ["1HWeapon"] = { + ["max"] = 30.5, + ["min"] = 5.5, + }, + ["2HMace"] = { + ["max"] = 30.5, + ["min"] = 5.5, + }, + ["2HWeapon"] = { + ["max"] = 30.5, + ["min"] = 5.5, + }, + ["Bow"] = { + ["max"] = 30.5, + ["min"] = 5.5, + }, + ["Claw"] = { + ["max"] = 30.5, + ["min"] = 5.5, + }, + ["Crossbow"] = { + ["max"] = 30.5, + ["min"] = 5.5, + }, + ["Flail"] = { + ["max"] = 30.5, + ["min"] = 5.5, + }, + ["Quarterstaff"] = { + ["max"] = 30.5, + ["min"] = 5.5, + }, + ["Spear"] = { + ["max"] = 30.5, + ["min"] = 5.5, + }, + ["Talisman"] = { + ["max"] = 30.5, + ["min"] = 5.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "augment", + }, + }, + ["827"] = { + ["Boots"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "augment", + }, + }, + ["8275"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2231410646", + ["text"] = "A random Skill that requires Glory generates #% of its maximum Glory when your Mark Activates", + ["type"] = "augment", + }, + }, + ["828"] = { + ["1HMace"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["2HMace"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["2HWeapon"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Bow"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Claw"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Crossbow"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Flail"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Quarterstaff"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Spear"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Talisman"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_970213192", + ["text"] = "#% increased Skill Speed", + ["type"] = "augment", + }, + }, + ["8332"] = { + ["Chest"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2100249038", + ["text"] = "Bonded: #% of Maximum Life Converted to Energy Shield", + ["type"] = "augment", + }, + }, + ["840"] = { + ["Boots"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["Chest"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["Focus"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["Gloves"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["Helmet"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["Shield"] = { + ["max"] = 18, + ["min"] = 14, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["type"] = "augment", + }, + }, + ["842"] = { + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "augment", + }, + }, + ["843"] = { + ["Gloves"] = { + ["max"] = 8.5, + ["min"] = 8.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "augment", + }, + }, + ["847"] = { + ["Staff"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["type"] = "augment", + }, + }, + ["8471"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1611856026", + ["text"] = "Bonded: Minions have #% increased Cooldown Recovery Rate for Command Skills", + ["type"] = "augment", + }, + }, + ["8473"] = { + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Staff"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Wand"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3742865955", + ["text"] = "Minions deal #% increased Damage with Command Skills", + ["type"] = "augment", + }, + }, + ["849"] = { + ["Staff"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["type"] = "augment", + }, + }, + ["851"] = { + ["Staff"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["type"] = "augment", + }, + }, + ["8518"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Crossbow"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Flail"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Spear"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Talisman"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1433756169", + ["text"] = "Minions gain #% of their Physical Damage as Extra Lightning Damage", + ["type"] = "augment", + }, + }, + ["8519"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Focus"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_889552744", + ["text"] = "Minions take #% of Physical Damage as Lightning Damage", + ["type"] = "augment", + }, + }, + ["8524"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1805633363", + ["text"] = "#% increased Reservation Efficiency of Minion Skills", + ["type"] = "augment", + }, + }, + ["8529"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_839375491", + ["text"] = "Bonded: Minions Revive #% faster", + ["type"] = "augment", + }, + }, + ["853"] = { + ["Staff"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2974417149", + ["text"] = "#% increased Spell Damage", + ["type"] = "augment", + }, + }, + ["859"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Claw"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Flail"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Quarterstaff"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Spear"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Talisman"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "augment", + }, + }, + ["8659"] = { + ["Helmet"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3891661462", + ["text"] = "Bonded: #% increased Magnitude of Non-Damaging Ailments you inflict", + ["type"] = "augment", + }, + }, + ["867"] = { + ["Staff"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 35, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["869"] = { + ["Boots"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Focus"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 40, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["8691"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Claw"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_731403740", + ["text"] = "Gain #% of Damage as Extra Damage of all Elements", + ["type"] = "augment", + }, + }, + ["870"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Claw"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2246411426", + ["text"] = "Bonded: #% increased maximum Life", + ["type"] = "augment", + }, + }, + ["871"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Focus"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2926029365", + ["text"] = "Bonded: # to maximum Mana", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["872"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Claw"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1586906534", + ["text"] = "Bonded: #% increased maximum Mana", + ["type"] = "augment", + }, + }, + ["874"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Spear"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["8749"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Spear"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Talisman"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1755296234", + ["text"] = "Targets can be affected by # of your Poisons at the same time", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["875"] = { + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3759663284", + ["text"] = "#% increased Projectile Speed", + ["type"] = "augment", + }, + }, + ["881"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", + ["type"] = "augment", + }, + }, + ["882"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["type"] = "augment", + }, + }, + ["885"] = { + ["1HWeapon"] = { + ["max"] = 20.5, + ["min"] = 20.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", + ["type"] = "augment", + }, + }, + ["8867"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1374654984", + ["text"] = "#% of Physical Damage prevented Recouped as Life", + ["type"] = "augment", + }, + }, + ["891"] = { + ["1HWeapon"] = { + ["max"] = 14, + ["min"] = 14, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", + ["type"] = "augment", + }, + }, + ["892"] = { + ["1HWeapon"] = { + ["max"] = 14, + ["min"] = 14, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["type"] = "augment", + }, + }, + ["893"] = { + ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["type"] = "augment", + }, + }, + ["894"] = { + ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["type"] = "augment", + }, + }, + ["895"] = { + ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3850614073", + ["text"] = "Allies in your Presence have #% to all Elemental Resistances", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["896"] = { + ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_4010677958", + ["text"] = "Allies in your Presence Regenerate # Life per second", + ["type"] = "augment", + }, + }, + ["9032"] = { + ["Helmet"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["9084"] = { + ["Boots"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2363593824", + ["text"] = "#% increased speed of Recoup Effects", + ["type"] = "augment", + }, + }, + ["9105"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1937310173", + ["text"] = "You Recoup #% of Damage taken by your Offerings as Life", + ["type"] = "augment", + }, + }, + ["9139"] = { + ["Gloves"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_426207520", + ["text"] = "Each Runic Inscription from your Curse Skills causes you to Regenerate Mana per second equal to #% of that Skill's Mana Cost", + ["type"] = "augment", + }, + }, + ["9151"] = { + ["Gloves"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3227486464", + ["text"] = "Bonded: Remnants have #% increased effect", + ["type"] = "augment", + }, + }, + ["9153"] = { + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3373098634", + ["text"] = "Bonded: Remnants can be collected from #% further away", + ["type"] = "augment", + }, + }, + ["916"] = { + ["Chest"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "augment", + }, + }, + ["9162"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_594547430", + ["text"] = "Remove a Damaging Ailment when you use a Command Skill", + ["type"] = "augment", + }, + }, + ["9178"] = { + ["Helmet"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2729035954", + ["text"] = "Bonded: #% increased Reservation Efficiency of Companion Skills", + ["type"] = "augment", + }, + }, + ["9179"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Claw"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Spear"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1299166504", + ["text"] = "Bonded: #% increased Reservation Efficiency of Herald Skills", + ["type"] = "augment", + }, + }, + ["918"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Claw"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["9180"] = { + ["Helmet"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_4254029169", + ["text"] = "Bonded: Meta Skills have #% increased Reservation Efficiency", + ["type"] = "augment", + }, + }, + ["9188"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1480688478", + ["text"] = "One of your Persistent Minions revives when an Offering expires", + ["type"] = "augment", + }, + }, + ["919"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Claw"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "augment", + }, + }, + ["9195"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1585886916", + ["text"] = "Sacrifice #% of maximum Life to gain that much Guard when you Dodge Roll", + ["type"] = "augment", + }, + }, + ["922"] = { + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_124131830", + ["text"] = "# to Level of all Spell Skills", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["9248"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Claw"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Flail"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Quarterstaff"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Spear"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Talisman"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2430860292", + ["text"] = "Bonded: #% increased Magnitude of Shock you inflict", + ["type"] = "augment", + }, + }, + ["9261"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Focus"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3801067695", + ["text"] = "#% reduced effect of Shock on you", + ["type"] = "augment", + }, + }, + ["929"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Spear"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Talisman"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_243313994", + ["text"] = "Bonded: # to Level of all Attack Skills", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["9317"] = { + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_144568384", + ["text"] = "Bonded: #% increased Skill Speed while Shapeshifted", + ["type"] = "augment", + }, + }, + ["935"] = { + ["Staff"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "augment", + }, + }, + ["937"] = { + ["Staff"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_4221147896", + ["text"] = "Bonded: #% increased Critical Damage Bonus", + ["type"] = "augment", + }, + }, + ["9405"] = { + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_807013157", + ["text"] = "Bonded: Every Rage also grants #% increased Spell Damage", + ["type"] = "augment", + }, + }, + ["941"] = { + ["Gloves"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "augment", + }, + }, + ["942"] = { + ["Gloves"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "augment", + }, + }, + ["9431"] = { + ["Staff"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["Wand"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2910761524", + ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", + ["type"] = "augment", + }, + }, + ["945"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "augment", + }, + }, + ["946"] = { + ["Chest"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_534024", + ["text"] = "Bonded: # to all Attributes", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["9465"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3107707789", + ["text"] = "#% increased Movement Speed while Sprinting", + ["type"] = "augment", + }, + }, + ["947"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Crossbow"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Flail"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Quarterstaff"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Spear"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Talisman"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["948"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Crossbow"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Flail"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Quarterstaff"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Spear"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Talisman"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["949"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Claw"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Crossbow"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Flail"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Quarterstaff"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Spear"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Staff"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Talisman"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Wand"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["950"] = { + ["Chest"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "augment", + }, + }, + ["9505"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3286003349", + ["text"] = "Bonded: Storm Skills have +# to Limit", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["953"] = { + ["1HMace"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["2HMace"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Bow"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Claw"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Crossbow"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Flail"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Spear"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Talisman"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["9531"] = { + ["Staff"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 14, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", + ["type"] = "augment", + }, + }, + ["954"] = { + ["1HMace"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["2HMace"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Bow"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Claw"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Crossbow"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Flail"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Quarterstaff"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Spear"] = { + ["max"] = 2, + ["min"] = 2, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["Talisman"] = { + ["max"] = 2, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2704905000", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", - ["type"] = "explicit", + ["id"] = "rune.stat_4042480703", + ["text"] = "Bonded: #% to Maximum Cold Resistance", + ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["937_CriticalStrikeMultiplier"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["955"] = { + ["1HMace"] = { + ["max"] = 2, + ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["1HWeapon"] = { + ["max"] = 2, + ["min"] = 2, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 2, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3556824919", - ["text"] = "#% increased Critical Damage Bonus", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 2, + ["min"] = 2, }, - }, - ["937_CriticalStrikeMultiplierRadius"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Bow"] = { + ["max"] = 2, + ["min"] = 2, }, - ["specialCaseData"] = { + ["Claw"] = { + ["max"] = 2, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2359002191", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", - ["type"] = "explicit", + ["Crossbow"] = { + ["max"] = 2, + ["min"] = 2, }, - }, - ["938_AttackCriticalStrikeMultiplier"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Flail"] = { + ["max"] = 2, + ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Quarterstaff"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Spear"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["Talisman"] = { + ["max"] = 2, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3714003708", - ["text"] = "#% increased Critical Damage Bonus for Attack Damage", - ["type"] = "explicit", + ["id"] = "rune.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["938_AttackCriticalStrikeMultiplierRadius"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { + ["957"] = { + ["Helmet"] = { ["max"] = 10, - ["min"] = 5, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1352561456", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", - ["type"] = "explicit", + ["id"] = "rune.stat_953010920", + ["text"] = "Bonded: #% to all Elemental Resistances", + ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["939_SpellCritMultiplierForJewel"] = { - ["AnyJewel"] = { - ["max"] = 20, + ["958"] = { + ["Boots"] = { + ["max"] = 14, ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 20, + ["Chest"] = { + ["max"] = 14, ["min"] = 10, }, - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 14, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_274716455", - ["text"] = "#% increased Critical Spell Damage Bonus", - ["type"] = "explicit", + ["Gloves"] = { + ["max"] = 14, + ["min"] = 10, }, - }, - ["939_SpellCritMultiplierForJewelRadius"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Helmet"] = { + ["max"] = 14, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Shield"] = { + ["max"] = 14, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2466785537", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", - ["type"] = "explicit", + ["id"] = "rune.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["941_IncreasedAttackSpeed"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["959"] = { + ["Boots"] = { + ["max"] = 14, + ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["Chest"] = { + ["max"] = 14, + ["min"] = 10, }, - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 14, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "explicit", + ["Gloves"] = { + ["max"] = 14, + ["min"] = 10, }, - }, - ["941_IncreasedAttackSpeedRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Helmet"] = { + ["max"] = 14, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Shield"] = { + ["max"] = 14, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2822644689", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", - ["type"] = "explicit", + ["id"] = "rune.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["942_IncreasedCastSpeed"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["960"] = { + ["Boots"] = { + ["max"] = 14, + ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["Chest"] = { + ["max"] = 14, + ["min"] = 10, }, - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 14, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "explicit", + ["Gloves"] = { + ["max"] = 14, + ["min"] = 10, }, - }, - ["942_IncreasedCastSpeedRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Helmet"] = { + ["max"] = 14, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Shield"] = { + ["max"] = 14, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1022759479", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", - ["type"] = "explicit", + ["id"] = "rune.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["9531_StunThresholdfromEnergyShield"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["961"] = { + ["Gloves"] = { + ["max"] = 7, + ["min"] = 7, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_416040624", - ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", - ["type"] = "explicit", + ["id"] = "rune.stat_3351086592", + ["text"] = "Bonded: #% to Chaos Resistance", + ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["9531_StunThresholdfromEnergyShieldRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["962"] = { + ["Helmet"] = { + ["max"] = 12, + ["min"] = 12, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1653682082", - ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", - ["type"] = "explicit", + ["id"] = "rune.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "augment", }, }, - ["9533_IncreasedStunThresholdIfNoRecentStun"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["9642"] = { + ["Helmet"] = { + ["max"] = 50, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1405298142", - ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", - ["type"] = "explicit", + ["id"] = "rune.stat_915264788", + ["text"] = "#% increased Thorns Critical Hit Chance", + ["type"] = "augment", }, }, - ["9533_IncreasedStunThresholdIfNoRecentStunRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["9645"] = { + ["Helmet"] = { + ["max"] = 40, + ["min"] = 40, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_654207792", - ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", - ["type"] = "explicit", + ["id"] = "rune.stat_3925507006", + ["text"] = "Bonded: Thorns Damage has #% chance to ignore Enemy Armour", + ["type"] = "augment", }, }, - ["953_MaximumFireResist"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["9646"] = { + ["Boots"] = { + ["max"] = 15, + ["min"] = 15, }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["Chest"] = { + ["max"] = 15, + ["min"] = 15, }, - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 15, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", - ["type"] = "explicit", + ["Gloves"] = { + ["max"] = 15, + ["min"] = 15, }, - ["usePositiveSign"] = true, - }, - ["954_MaximumColdResist"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["Helmet"] = { + ["max"] = 15, + ["min"] = 15, }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["Shield"] = { + ["max"] = 15, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3676141501", - ["text"] = "#% to Maximum Cold Resistance", - ["type"] = "explicit", + ["id"] = "rune.stat_3266426611", + ["text"] = "Bonded: #% increased Thorns damage", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["955_MaximumLightningResistance"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["9652"] = { + ["Boots"] = { + ["max"] = 50.5, + ["min"] = 50.5, }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["Chest"] = { + ["max"] = 50.5, + ["min"] = 50.5, + }, + ["Focus"] = { + ["max"] = 50.5, + ["min"] = 50.5, + }, + ["Gloves"] = { + ["max"] = 50.5, + ["min"] = 50.5, + }, + ["Helmet"] = { + ["max"] = 50.5, + ["min"] = 50.5, + }, + ["Shield"] = { + ["max"] = 50.5, + ["min"] = 50.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", - ["type"] = "explicit", + ["id"] = "rune.stat_757050353", + ["text"] = "# to # Lightning Thorns damage", + ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["962_MinionLife"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["966"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 50, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Staff"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Wand"] = { + ["max"] = 18, + ["min"] = 12, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "explicit", + ["id"] = "rune.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "augment", }, }, - ["962_MinionLifeRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["967"] = { + ["Chest"] = { + ["max"] = 30, + ["min"] = 20, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Focus"] = { + ["max"] = 30, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_378796798", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", - ["type"] = "explicit", + ["id"] = "rune.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "augment", }, }, - ["9646_ThornsDamageIncrease"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["970"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Staff"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Wand"] = { + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1315743832", - ["text"] = "#% increased Thorns damage", - ["type"] = "explicit", + ["id"] = "rune.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "augment", }, }, - ["9646_ThornsDamageIncreaseRadius"] = { - ["AnyJewel"] = { + ["972"] = { + ["1HMace"] = { ["max"] = 3, ["min"] = 2, }, - ["RadiusJewel"] = { + ["1HWeapon"] = { ["max"] = 3, ["min"] = 2, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 3, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1320662475", - ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 3, + ["min"] = 2, }, - }, - ["966_EnergyShieldRegeneration"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Bow"] = { + ["max"] = 3, + ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Claw"] = { + ["max"] = 3, + ["min"] = 2, }, - ["specialCaseData"] = { + ["Crossbow"] = { + ["max"] = 3, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", - ["type"] = "explicit", + ["Flail"] = { + ["max"] = 3, + ["min"] = 2, }, - }, - ["966_EnergyShieldRegenerationRadius"] = { - ["AnyJewel"] = { + ["Quarterstaff"] = { ["max"] = 3, ["min"] = 2, }, - ["RadiusJewel"] = { + ["Spear"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["Talisman"] = { ["max"] = 3, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1552666713", - ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", - ["type"] = "explicit", + ["id"] = "rune.stat_55876295", + ["text"] = "Leeches #% of Physical Damage as Life", + ["type"] = "augment", }, }, - ["967_EnergyShieldDelay"] = { - ["AnyJewel"] = { - ["max"] = 15, + ["975"] = { + ["1HMace"] = { + ["max"] = 30, ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 15, + ["1HWeapon"] = { + ["max"] = 30, ["min"] = 10, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 30, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 10, }, - }, - ["967_EnergyShieldDelayRadius"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 5, + ["Bow"] = { + ["max"] = 30, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 5, + ["Claw"] = { + ["max"] = 30, + ["min"] = 10, }, - ["specialCaseData"] = { + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3394832998", - ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", - ["type"] = "explicit", + ["Flail"] = { + ["max"] = 30, + ["min"] = 10, }, - }, - ["969_LifeRegenerationRate"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Quarterstaff"] = { + ["max"] = 30, + ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Spear"] = { + ["max"] = 30, + ["min"] = 10, + }, + ["Talisman"] = { + ["max"] = 30, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", - ["type"] = "explicit", + ["id"] = "rune.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "augment", }, }, - ["969_LifeRegenerationRateRadius"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["976"] = { + ["Boots"] = { + ["max"] = 18, + ["min"] = 12, }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["Chest"] = { + ["max"] = 18, + ["min"] = 12, }, - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 18, + ["min"] = 12, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1185341308", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", - ["type"] = "explicit", + ["Gloves"] = { + ["max"] = 18, + ["min"] = 12, }, - }, - ["970_LifeRecoupForJewel"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Helmet"] = { + ["max"] = 18, + ["min"] = 12, }, - ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Shield"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Staff"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 24, + ["min"] = 16, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "explicit", + ["id"] = "rune.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "augment", }, }, - ["970_LifeRecoupForJewelRadius"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["978"] = { + ["1HMace"] = { + ["max"] = 2.5, + ["min"] = 1.5, }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["1HWeapon"] = { + ["max"] = 2.5, + ["min"] = 1.5, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 2.5, + ["min"] = 1.5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3669820740", - ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 2.5, + ["min"] = 1.5, }, - }, - ["9712_DamageWithTriggeredSpells"] = { - ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 10, + ["Bow"] = { + ["max"] = 2.5, + ["min"] = 1.5, }, - ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 10, + ["Claw"] = { + ["max"] = 2.5, + ["min"] = 1.5, + }, + ["Crossbow"] = { + ["max"] = 2.5, + ["min"] = 1.5, + }, + ["Flail"] = { + ["max"] = 2.5, + ["min"] = 1.5, + }, + ["Quarterstaff"] = { + ["max"] = 2.5, + ["min"] = 1.5, + }, + ["Spear"] = { + ["max"] = 2.5, + ["min"] = 1.5, + }, + ["Talisman"] = { + ["max"] = 2.5, + ["min"] = 1.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3067892458", - ["text"] = "Triggered Spells deal #% increased Spell Damage", - ["type"] = "explicit", + ["id"] = "rune.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", + ["type"] = "augment", }, }, - ["9712_DamageWithTriggeredSpellsRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["980"] = { + ["1HMace"] = { + ["max"] = 24, + ["min"] = 8, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["1HWeapon"] = { + ["max"] = 24, + ["min"] = 8, + }, + ["2HMace"] = { + ["max"] = 24, + ["min"] = 8, + }, + ["2HWeapon"] = { + ["max"] = 24, + ["min"] = 8, + }, + ["Bow"] = { + ["max"] = 24, + ["min"] = 8, + }, + ["Claw"] = { + ["max"] = 24, + ["min"] = 8, + }, + ["Crossbow"] = { + ["max"] = 24, + ["min"] = 8, + }, + ["Flail"] = { + ["max"] = 24, + ["min"] = 8, + }, + ["Quarterstaff"] = { + ["max"] = 24, + ["min"] = 8, + }, + ["Spear"] = { + ["max"] = 24, + ["min"] = 8, + }, + ["Talisman"] = { + ["max"] = 24, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_473917671", - ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", - ["type"] = "explicit", + ["id"] = "rune.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", + ["type"] = "augment", }, }, - ["976_ManaRegeneration"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["985"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Claw"] = { + ["max"] = 30, + ["min"] = 20, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 20, }, - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 30, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "explicit", + ["Quarterstaff"] = { + ["max"] = 30, + ["min"] = 20, }, - }, - ["976_ManaRegenerationRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Spear"] = { + ["max"] = 30, + ["min"] = 20, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Talisman"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3256879910", - ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", - ["type"] = "explicit", + ["id"] = "rune.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "augment", }, }, - ["984_StunDamageIncrease"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["988"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 30, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 30, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 30, + ["min"] = 30, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_239367161", - ["text"] = "#% increased Stun Buildup", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 30, }, - }, - ["984_StunDamageIncreaseRadius"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Bow"] = { + ["max"] = 30, + ["min"] = 30, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Claw"] = { + ["max"] = 30, + ["min"] = 30, }, - ["specialCaseData"] = { + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 30, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4173554949", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", - ["type"] = "explicit", + ["Flail"] = { + ["max"] = 30, + ["min"] = 30, }, - }, - ["9860_VolatilityOnKillChance"] = { - ["specialCaseData"] = { + ["Quarterstaff"] = { + ["max"] = 30, + ["min"] = 30, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3749502527", - ["text"] = "#% chance to gain Volatility on Kill", - ["type"] = "explicit", + ["Spear"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Talisman"] = { + ["max"] = 30, + ["min"] = 30, }, - }, - ["9860_VolatilityOnKillChanceRadius"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4225700219", - ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", - ["type"] = "explicit", + ["id"] = "rune.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "augment", }, }, - ["9883_WarcryEffect"] = { + ["9889"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3037553757", - ["text"] = "#% increased Warcry Buff Effect", - ["type"] = "explicit", + ["id"] = "rune.stat_2663359259", + ["text"] = "#% increased total Power counted by Warcries", + ["type"] = "augment", }, }, - ["9883_WarcryEffectRadius"] = { - ["specialCaseData"] = { + ["990"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 30, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2675129731", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", - ["type"] = "explicit", + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 30, }, - }, - ["9886_WarcryDamage"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["2HMace"] = { + ["max"] = 30, + ["min"] = 30, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 30, }, - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 30, + ["min"] = 30, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1594812856", - ["text"] = "#% increased Damage with Warcries", - ["type"] = "explicit", + ["Claw"] = { + ["max"] = 30, + ["min"] = 30, }, - }, - ["9886_WarcryDamageRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 30, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Flail"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Quarterstaff"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Spear"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Talisman"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1160637284", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", - ["type"] = "explicit", + ["id"] = "rune.stat_1817052494", + ["text"] = "Bonded: #% increased Freeze Buildup", + ["type"] = "augment", }, }, - ["988_IgniteChanceIncrease"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { + ["9915"] = { + ["Gloves"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", - ["type"] = "explicit", + ["id"] = "rune.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", + ["type"] = "augment", }, }, - ["988_IgniteChanceIncreaseRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["992"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 30, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 30, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 30, + ["min"] = 30, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_394473632", - ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 30, }, - }, - ["9897_WeaponSwapSpeed"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 30, + ["min"] = 30, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3233599707", - ["text"] = "#% increased Weapon Swap Speed", - ["type"] = "explicit", + ["Claw"] = { + ["max"] = 30, + ["min"] = 30, }, - }, - ["9897_WeaponSwapSpeedRadius"] = { - ["specialCaseData"] = { + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 30, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1129429646", - ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", - ["type"] = "explicit", + ["Flail"] = { + ["max"] = 30, + ["min"] = 30, }, - }, - ["990_FreezeDamageIncrease"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Quarterstaff"] = { + ["max"] = 30, + ["min"] = 30, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Spear"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Talisman"] = { + ["max"] = 30, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_473429811", - ["text"] = "#% increased Freeze Buildup", - ["type"] = "explicit", + ["id"] = "rune.stat_293638271", + ["text"] = "#% increased chance to Shock", + ["type"] = "augment", }, }, - ["990_FreezeDamageIncreaseRadius"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["9922"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1087531620", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", - ["type"] = "explicit", + ["id"] = "rune.stat_826685275", + ["text"] = "Bonded: #% of Armour also applies to Elemental Damage while Shapeshifted", + ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["9915_WitheredEffect"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["994"] = { + ["Boots"] = { + ["max"] = 80, + ["min"] = 40, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Chest"] = { + ["max"] = 80, + ["min"] = 40, }, - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 80, + ["min"] = 40, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3973629633", - ["text"] = "#% increased Withered Magnitude", - ["type"] = "explicit", + ["Gloves"] = { + ["max"] = 80, + ["min"] = 40, }, - }, - ["9915_WitheredEffectRadius"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["Helmet"] = { + ["max"] = 80, + ["min"] = 40, }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["Shield"] = { + ["max"] = 80, + ["min"] = 40, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3936121440", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", - ["type"] = "explicit", + ["id"] = "rune.stat_915769802", + ["text"] = "# to Stun Threshold", + ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["992_ShockChanceIncrease"] = { - ["AnyJewel"] = { - ["max"] = 20, + ["999"] = { + ["Boots"] = { + ["max"] = 10, ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 20, + ["Chest"] = { + ["max"] = 10, ["min"] = 10, }, - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 10, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_293638271", - ["text"] = "#% increased chance to Shock", - ["type"] = "explicit", + ["Gloves"] = { + ["max"] = 10, + ["min"] = 10, }, - }, - ["992_ShockChanceIncreaseRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Helmet"] = { + ["max"] = 10, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Shield"] = { + ["max"] = 10, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1039268420", - ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", - ["type"] = "explicit", + ["id"] = "rune.stat_1441491952", + ["text"] = "Bonded: #% reduced Shock duration on you", + ["type"] = "augment", }, }, }, - ["Implicit"] = { - }, - ["Rune"] = { - }, } \ No newline at end of file From f3650d615c30d4526944484fc79a4958b4761d20 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Sun, 19 Apr 2026 18:47:02 +0300 Subject: [PATCH 05/42] convert trade tool mod weight generation to use tradeHash --- src/Classes/TradeQueryGenerator.lua | 127 +- src/Data/ModRunes.lua | 259 + src/Data/QueryMods.lua | 22332 ++++++++++---------------- src/Export/Scripts/soulcores.lua | 22 + 4 files changed, 8619 insertions(+), 14121 deletions(-) diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index e5846a8896..b37b692fa0 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -184,8 +184,6 @@ function TradeQueryGeneratorClass.WeightedRatioOutputs(baseOutput, newOutput, st end function TradeQueryGeneratorClass:ProcessMod(mod, tradeQueryStatsParsed, itemCategoriesMask, itemCategoriesOverride) - if mod.statOrder == nil then mod.statOrder = { } end - if mod.group == nil then mod.group = "" end for index, modLine in ipairs(mod) do if modLine:find("Grants Level") or modLine:find("inflict Decay") then -- skip mods that grant skills / decay, as they will often be overwhelmingly powerful but don't actually fit into the build @@ -215,42 +213,41 @@ function TradeQueryGeneratorClass:ProcessMod(mod, tradeQueryStatsParsed, itemCat -- iterate trade mod category to find mod with matching text. local function getTradeMod() - -- try matching to global mods. - local matchStr = modLine:gsub("[#()0-9%-%+%.]","") - for _, entry in ipairs(tradeQueryStatsParsed.result[tradeStatCategoryIndices[modType]].entries) do - if entry.text:gsub("[#()0-9%-%+%.]","") == matchStr then - return entry + local entry + local tradeHashStr = tostring(mod.tradeHash) + for _, v in ipairs(tradeQueryStatsParsed.result[tradeStatCategoryIndices[modType]].entries) do + -- prefix removed + local ids = v.id:gsub(".+..stat_", "").."|" + -- split by non-integer + for id in ids:gmatch("%d+") do + if tradeHashStr == id then + entry = v + goto finish + end end end - -- check reverse - matchStr = swapInverse(matchStr) - for _, entry in ipairs(tradeQueryStatsParsed.result[tradeStatCategoryIndices[modType]].entries) do - if entry.text:gsub("[#()0-9%-%+%.]","") == matchStr then - return entry, true - end + ::finish:: + + if not entry then + return nil end - return nil + -- determine if the mod is inversed, i.e. increased here -> reduced on trade + local pattern = "[#()0-9%-%+%.]" + local matchStr = modLine:gsub(pattern,"") + local inverseMatchStr = swapInverse(matchStr) + if entry.text:gsub(pattern, "") == matchStr then + return entry, false + elseif entry.text:gsub(pattern, "") == inverseMatchStr then + return entry, true + end + return entry end local tradeMod = nil local invert - if mod.statOrder[index] == nil then -- if there isn't a mod order we have to use the trade id instead e.g. implicits. - tradeMod, invert = getTradeMod() - if tradeMod == nil then - logToFile("Unable to match %s mod: %s", modType, modLine) - goto nextModLine - end - mod.statOrder[index] = tradeMod.id - end - - local statOrder = modLine:find("Nearby Enemies have %-") ~= nil and mod.statOrder[index + 1] or mod.statOrder[index] -- hack to get minus res mods associated with the correct statOrder - local uniqueIndex = mod.group ~= "" and tostring(statOrder).."_"..mod.group or tostring(statOrder) - -- ensure that regular jewel and radius jewel mods don't get the same index - if mod.nodeType then - uniqueIndex = uniqueIndex.."Radius" - end + local uniqueIndex = tostring(mod.tradeHash) if self.modData[modType][uniqueIndex] == nil then if tradeMod == nil then @@ -365,7 +362,8 @@ function TradeQueryGeneratorClass:InitMods() -- originates from: https://www.pathofexile.com/api/trade2/data/stats local tradeStats = fetchStats() - tradeStats:gsub("\n", " ") + -- stop modifier texts from breaking the lua formatting + tradeStats = tradeStats:gsub("\\n", "") local tradeQueryStatsParsed = dkjson.decode(tradeStats) for _, modDomain in ipairs(tradeQueryStatsParsed.result) do for _, mod in ipairs(modDomain.entries) do @@ -395,12 +393,30 @@ function TradeQueryGeneratorClass:InitMods() -- implicit mods for baseName, entry in pairsSortByKey(data.itemBases) do - if entry.implicit ~= nil then + if entry.implicit ~= nil and entry.type ~= "Transcendent Limb" then local mod = { type = "Implicit" } for modLine in string.gmatch(entry.implicit, "([^".."\n".."]+)") do t_insert(mod, modLine) end + local found = false + for _, modLine in ipairs(mod) do + if modLine:find("Grants Skill:") then + goto continue + end + for _, v in pairs(data.itemMods.Exclusive) do + if v[1] == modLine then + found = true + mod = v + mod.type = "Implicit" + end + end + end + if not found then + ConPrintf("unknown implicit mod: %s", mod[1]) + goto continue + end + -- create trade type mask for base type local maskOverride = {} for tradeName, typeNames in pairs(tradeCategoryNames) do @@ -421,38 +437,42 @@ function TradeQueryGeneratorClass:InitMods() self:ProcessMod(mod, tradeQueryStatsParsed, regularItemMask, maskOverride) end end + ::continue:: end - -- rune mods + -- -- rune mods for name, runeMods in pairsSortByKey(data.itemMods.Runes) do for slotType, mods in pairs(runeMods) do - if slotType == "weapon" then - self:ProcessMod(mods, tradeQueryStatsParsed, regularItemMask, { ["1HWeapon"] = true, ["2HWeapon"] = true, ["1HMace"] = true, ["Claw"] = true, ["Quarterstaff"] = true, ["Bow"] = true, ["2HMace"] = true, ["Crossbow"] = true, ["Spear"] = true, ["Flail"] = true, ["Talisman"] = true }) - elseif slotType == "armour" then - self:ProcessMod(mods, tradeQueryStatsParsed, regularItemMask, { ["Shield"] = true, ["Chest"] = true, ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Focus"] = true }) - elseif slotType == "caster" then - self:ProcessMod(mods, tradeQueryStatsParsed, regularItemMask, { ["Wand"] = true, ["Staff"] = true }) - else - -- Mod is slot specific, try to match against a value in tradeCategoryNames - local matchedCategory = nil - for category, categoryOptions in pairs(tradeCategoryNames) do - for i, opt in pairs(categoryOptions) do - if opt:lower():match(slotType) then - matchedCategory = category + for i, modLine in ipairs(mods) do + local mod = {modLine, tradeHash = mods.tradeHashes[i], type = "Rune"} + if slotType == "weapon" then + self:ProcessMod(mod, tradeQueryStatsParsed, regularItemMask, { ["1HWeapon"] = true, ["2HWeapon"] = true, ["1HMace"] = true, ["Claw"] = true, ["Quarterstaff"] = true, ["Bow"] = true, ["2HMace"] = true, ["Crossbow"] = true, ["Spear"] = true, ["Flail"] = true, ["Talisman"] = true }) + elseif slotType == "armour" then + self:ProcessMod(mod, tradeQueryStatsParsed, regularItemMask, { ["Shield"] = true, ["Chest"] = true, ["Helmet"] = true, ["Gloves"] = true, ["Boots"] = true, ["Focus"] = true }) + elseif slotType == "caster" then + self:ProcessMod(mod, tradeQueryStatsParsed, regularItemMask, { ["Wand"] = true, ["Staff"] = true }) + else + -- Mod is slot specific, try to match against a value in tradeCategoryNames + local matchedCategory = nil + for category, categoryOptions in pairs(tradeCategoryNames) do + for i, opt in pairs(categoryOptions) do + if opt:lower():match(slotType) then + matchedCategory = category + break + end + end + if matchedCategory then break end end if matchedCategory then - break + self:ProcessMod(mod, tradeQueryStatsParsed, regularItemMask, { [matchedCategory] = true }) + else + ConPrintf("TradeQuery: Unmatched category for modifier. Slot type: %s Modifier: %s", mods.slotType, mods.name) end end - if matchedCategory then - self:ProcessMod(mods, tradeQueryStatsParsed, regularItemMask, { [matchedCategory] = true }) - else - ConPrintf("TradeQuery: Unmatched category for modifier. Slot type: %s Modifier: %s", mods.slotType, mods.name) - end end - end + end end local queryModsFile = io.open(queryModFilePath, 'w') @@ -500,6 +520,9 @@ function TradeQueryGeneratorClass:GenerateModWeights(modsToTest) end end + -- remove (Local) suffix so pob parses the mod correctly + modLine = modLine:gsub("%(Local%)", "") + self.calcContext.testItem.explicitModLines[1] = { line = modLine, custom = true } self.calcContext.testItem:BuildAndParseRaw() diff --git a/src/Data/ModRunes.lua b/src/Data/ModRunes.lua index 0a40c43c29..05184a0e23 100644 --- a/src/Data/ModRunes.lua +++ b/src/Data/ModRunes.lua @@ -7,6 +7,7 @@ return { type = "Rune", "+40% of Armour also applies to Cold Damage", statOrder = { 4512 }, + tradeHashes = { 1947060170 }, rank = { 50 }, }, }, @@ -15,6 +16,7 @@ return { type = "Rune", "+40% of Armour also applies to Lightning Damage", statOrder = { 4514 }, + tradeHashes = { 2200571612 }, rank = { 50 }, }, }, @@ -23,6 +25,7 @@ return { type = "Rune", "+40% of Armour also applies to Fire Damage", statOrder = { 4513 }, + tradeHashes = { 3897831687 }, rank = { 50 }, }, }, @@ -31,12 +34,14 @@ return { type = "Rune", "30% faster start of Energy Shield Recharge", statOrder = { 967 }, + tradeHashes = { 1782086450 }, rank = { 50 }, }, ["focus"] = { type = "Rune", "30% faster start of Energy Shield Recharge", statOrder = { 967 }, + tradeHashes = { 1782086450 }, rank = { 50 }, }, }, @@ -46,6 +51,7 @@ return { "8% increased Skill Effect Duration", "8% increased Cooldown Recovery Rate", statOrder = { 1572, 4539 }, + tradeHashes = { 3377888098, 1004011302, 3377888098, 1004011302 }, rank = { 50 }, }, }, @@ -54,6 +60,7 @@ return { type = "Rune", "+4 to Maximum Rage", statOrder = { 9032 }, + tradeHashes = { 1181501418 }, rank = { 50 }, }, }, @@ -63,6 +70,7 @@ return { "15% increased Curse Duration", "15% increased Poison Duration", statOrder = { 1466, 2786 }, + tradeHashes = { 3824372849, 2011656677, 3824372849, 2011656677 }, rank = { 50 }, }, }, @@ -71,12 +79,14 @@ return { type = "Rune", "50% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", statOrder = { 5144 }, + tradeHashes = { 2916861134 }, rank = { 50 }, }, ["caster"] = { type = "Rune", "50% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", statOrder = { 5144 }, + tradeHashes = { 2916861134 }, rank = { 50 }, }, }, @@ -85,12 +95,14 @@ return { type = "Rune", "50% chance when you gain an Endurance Charge to gain an additional Endurance Charge", statOrder = { 5143 }, + tradeHashes = { 1228682002 }, rank = { 50 }, }, ["caster"] = { type = "Rune", "50% chance when you gain an Endurance Charge to gain an additional Endurance Charge", statOrder = { 5143 }, + tradeHashes = { 1228682002 }, rank = { 50 }, }, }, @@ -99,12 +111,14 @@ return { type = "Rune", "50% chance when you gain a Power Charge to gain an additional Power Charge", statOrder = { 5145 }, + tradeHashes = { 3537994888 }, rank = { 50 }, }, ["caster"] = { type = "Rune", "50% chance when you gain a Power Charge to gain an additional Power Charge", statOrder = { 5145 }, + tradeHashes = { 3537994888 }, rank = { 50 }, }, }, @@ -113,12 +127,14 @@ return { type = "Rune", "12% increased speed of Recoup Effects", statOrder = { 9084 }, + tradeHashes = { 2363593824 }, rank = { 50 }, }, ["helmet"] = { type = "Rune", "8% of Damage taken Recouped as Life", statOrder = { 970 }, + tradeHashes = { 1444556985 }, rank = { 50 }, }, }, @@ -127,6 +143,7 @@ return { type = "Rune", "Enemies you Curse have -5% to Chaos Resistance", statOrder = { 3617 }, + tradeHashes = { 1772929282 }, rank = { 50 }, }, }, @@ -135,6 +152,7 @@ return { type = "Rune", "20% increased Projectile Speed", statOrder = { 875 }, + tradeHashes = { 3759663284 }, rank = { 50 }, }, }, @@ -143,6 +161,7 @@ return { type = "Rune", "Adds 19 to 29 Chaos damage", statOrder = { 1227 }, + tradeHashes = { 2223678961 }, rank = { 50 }, }, }, @@ -151,12 +170,14 @@ return { type = "Rune", "Minions deal 40% increased Damage with Command Skills", statOrder = { 8473 }, + tradeHashes = { 3742865955 }, rank = { 50 }, }, ["sceptre"] = { type = "Rune", "Minions deal 40% increased Damage with Command Skills", statOrder = { 8473 }, + tradeHashes = { 3742865955 }, rank = { 50 }, }, }, @@ -165,12 +186,14 @@ return { type = "Rune", "15% chance to Poison on Hit with this weapon", statOrder = { 7334 }, + tradeHashes = { 3885634897 }, rank = { 0 }, }, ["armour"] = { type = "Rune", "+11% to Chaos Resistance", statOrder = { 961 }, + tradeHashes = { 2923486259 }, rank = { 0 }, }, }, @@ -179,12 +202,14 @@ return { type = "Rune", "15% chance to cause Bleeding on Hit", statOrder = { 2153 }, + tradeHashes = { 1519615863 }, rank = { 0 }, }, ["helmet"] = { type = "Rune", "20% increased Charm Charges gained", statOrder = { 5227 }, + tradeHashes = { 3585532255 }, rank = { 0 }, }, }, @@ -193,12 +218,14 @@ return { type = "Rune", "Recover 2% of maximum Life on Kill", statOrder = { 1437 }, + tradeHashes = { 2023107756 }, rank = { 0 }, }, ["body armour"] = { type = "Rune", "3% increased maximum Life", statOrder = { 870 }, + tradeHashes = { 983749596 }, rank = { 0 }, }, }, @@ -207,12 +234,14 @@ return { type = "Rune", "Recover 2% of maximum Mana on Kill", statOrder = { 1439 }, + tradeHashes = { 1030153674 }, rank = { 0 }, }, ["helmet"] = { type = "Rune", "3% increased maximum Mana", statOrder = { 872 }, + tradeHashes = { 2748665614 }, rank = { 0 }, }, }, @@ -221,12 +250,14 @@ return { type = "Rune", "30% increased Elemental Damage with Attacks", statOrder = { 859 }, + tradeHashes = { 387439868 }, rank = { 0 }, }, ["armour"] = { type = "Rune", "+5% to all Elemental Resistances", statOrder = { 957 }, + tradeHashes = { 2901986750 }, rank = { 0 }, }, }, @@ -235,12 +266,14 @@ return { type = "Rune", "30% increased Flammability Magnitude", statOrder = { 988 }, + tradeHashes = { 2968503605 }, rank = { 0 }, }, ["gloves"] = { type = "Rune", "+1% to Maximum Fire Resistance", statOrder = { 953 }, + tradeHashes = { 4095671657 }, rank = { 0 }, }, }, @@ -249,12 +282,14 @@ return { type = "Rune", "30% increased Freeze Buildup", statOrder = { 990 }, + tradeHashes = { 473429811 }, rank = { 0 }, }, ["helmet"] = { type = "Rune", "+1% to Maximum Cold Resistance", statOrder = { 954 }, + tradeHashes = { 3676141501 }, rank = { 0 }, }, }, @@ -263,12 +298,14 @@ return { type = "Rune", "30% increased chance to Shock", statOrder = { 992 }, + tradeHashes = { 293638271 }, rank = { 0 }, }, ["boots"] = { type = "Rune", "+1% to Maximum Lightning Resistance", statOrder = { 955 }, + tradeHashes = { 1011760251 }, rank = { 0 }, }, }, @@ -277,12 +314,14 @@ return { type = "Rune", "+15 to Spirit", statOrder = { 874 }, + tradeHashes = { 3981240776 }, rank = { 0 }, }, ["gloves"] = { type = "Rune", "10% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6476 }, + tradeHashes = { 3175163625 }, rank = { 0 }, }, }, @@ -291,12 +330,14 @@ return { type = "Rune", "Attacks with this Weapon Penetrate 15% Elemental Resistances", statOrder = { 3330 }, + tradeHashes = { 4064396395 }, rank = { 0 }, }, ["boots"] = { type = "Rune", "25% increased Elemental Ailment Threshold", statOrder = { 4147 }, + tradeHashes = { 3544800472 }, rank = { 0 }, }, }, @@ -305,12 +346,14 @@ return { type = "Rune", "5% increased Attack Speed", statOrder = { 919 }, + tradeHashes = { 210067635 }, rank = { 0 }, }, ["boots"] = { type = "Rune", "15% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, + tradeHashes = { 924253255 }, rank = { 0 }, }, }, @@ -319,18 +362,21 @@ return { type = "Rune", "+5% to Critical Damage Bonus", statOrder = { 918 }, + tradeHashes = { 2694482655 }, rank = { 0 }, }, ["body armour"] = { type = "Rune", "Hits against you have 20% reduced Critical Damage Bonus", statOrder = { 950 }, + tradeHashes = { 3855016469 }, rank = { 0 }, }, ["shield"] = { type = "Rune", "Hits against you have 20% reduced Critical Damage Bonus", statOrder = { 950 }, + tradeHashes = { 3855016469 }, rank = { 0 }, }, }, @@ -339,12 +385,14 @@ return { type = "Rune", "Convert 20% of Requirements to Strength", statOrder = { 7338 }, + tradeHashes = { 1556124492 }, rank = { 0 }, }, ["armour"] = { type = "Rune", "Convert 20% of Requirements to Strength", statOrder = { 7338 }, + tradeHashes = { 1556124492 }, rank = { 0 }, }, }, @@ -353,12 +401,14 @@ return { type = "Rune", "Convert 20% of Requirements to Dexterity", statOrder = { 7336 }, + tradeHashes = { 1496740334 }, rank = { 0 }, }, ["armour"] = { type = "Rune", "Convert 20% of Requirements to Dexterity", statOrder = { 7336 }, + tradeHashes = { 1496740334 }, rank = { 0 }, }, }, @@ -367,12 +417,14 @@ return { type = "Rune", "Convert 20% of Requirements to Intelligence", statOrder = { 7337 }, + tradeHashes = { 2913012734 }, rank = { 0 }, }, ["armour"] = { type = "Rune", "Convert 20% of Requirements to Intelligence", statOrder = { 7337 }, + tradeHashes = { 2913012734 }, rank = { 0 }, }, }, @@ -381,12 +433,14 @@ return { type = "Rune", "Remove a Damaging Ailment when you use a Command Skill", statOrder = { 9162 }, + tradeHashes = { 594547430 }, rank = { 60 }, }, ["body armour"] = { type = "Rune", "+2 to Armour per 1 Spirit", statOrder = { 4275 }, + tradeHashes = { 1197632982 }, rank = { 60 }, }, ["boots"] = { @@ -394,6 +448,7 @@ return { "1% increased Movement Speed per 15 Spirit, up to a maximum of 40%", "Other Modifiers to Movement Speed except for Sprinting do not apply", statOrder = { 8593, 8593.1 }, + tradeHashes = { 2703838669, 2703838669 }, rank = { 60 }, }, }, @@ -402,18 +457,21 @@ return { type = "Rune", "Increases and Reductions to Life Regeneration Rate also apply to Mana Regeneration Rate", statOrder = { 4115 }, + tradeHashes = { 3570773271 }, rank = { 60 }, }, ["gloves"] = { type = "Rune", "40% increased effect of Arcane Surge on you", statOrder = { 2891 }, + tradeHashes = { 2103650854 }, rank = { 60 }, }, ["boots"] = { type = "Rune", "15% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently", statOrder = { 7483 }, + tradeHashes = { 2876843277 }, rank = { 60 }, }, }, @@ -422,18 +480,21 @@ return { type = "Rune", "Regenerate 1.5% of maximum Life per second", statOrder = { 1617 }, + tradeHashes = { 836936635 }, rank = { 60 }, }, ["gloves"] = { type = "Rune", "25% increased Life Cost Efficiency", statOrder = { 4572 }, + tradeHashes = { 310945763 }, rank = { 60 }, }, ["boots"] = { type = "Rune", "10% increased Movement Speed when on Low Life", statOrder = { 1481 }, + tradeHashes = { 649025131 }, rank = { 60 }, }, }, @@ -442,18 +503,21 @@ return { type = "Rune", "+1 to Accuracy Rating per 1 Item Evasion Rating on Equipped Helmet", statOrder = { 4022 }, + tradeHashes = { 687156079 }, rank = { 60 }, }, ["gloves"] = { type = "Rune", "Critical Hit chance is Lucky against Parried enemies", statOrder = { 5415 }, + tradeHashes = { 935518591 }, rank = { 60 }, }, ["body armour"] = { type = "Rune", "Prevent +3% of Damage from Deflected Hits", statOrder = { 4541 }, + tradeHashes = { 3552135623 }, rank = { 60 }, }, }, @@ -462,6 +526,7 @@ return { type = "Rune", "+1 to maximum Mana per 2 Item Energy Shield on Equipped Helmet", statOrder = { 6295 }, + tradeHashes = { 280497929 }, rank = { 60 }, }, ["gloves"] = { @@ -469,6 +534,7 @@ return { "Energy Shield Recharge starts after spending a total of", " 2000 Mana, no more than once every 2 seconds", statOrder = { 6023, 6023.1 }, + tradeHashes = { 2241849004, 2241849004 }, rank = { 60 }, }, ["boots"] = { @@ -476,6 +542,7 @@ return { "Increases and Reductions to Movement Speed also", " apply to Energy Shield Recharge Rate", statOrder = { 6874, 6874.1 }, + tradeHashes = { 4282982513, 4282982513 }, rank = { 60 }, }, }, @@ -484,18 +551,21 @@ return { type = "Rune", "A random Skill that requires Glory generates 15% of its maximum Glory when your Mark Activates", statOrder = { 8275 }, + tradeHashes = { 2231410646 }, rank = { 60 }, }, ["gloves"] = { type = "Rune", "Each Runic Inscription from your Curse Skills causes you to Regenerate Mana per second equal to 10% of that Skill's Mana Cost", statOrder = { 9139 }, + tradeHashes = { 426207520 }, rank = { 60 }, }, ["body armour"] = { type = "Rune", "+50% of Armour also applies to Chaos Damage while on full Energy Shield", statOrder = { 4261 }, + tradeHashes = { 2191621386 }, rank = { 60 }, }, }, @@ -504,12 +574,14 @@ return { type = "Rune", "Gain Armour equal to 25% of Life Lost from Hits in the past 8 seconds", statOrder = { 6337 }, + tradeHashes = { 3903510399 }, rank = { 60 }, }, ["body armour"] = { type = "Rune", "10% of Physical Damage prevented Recouped as Life", statOrder = { 8867 }, + tradeHashes = { 1374654984 }, rank = { 60 }, }, ["boots"] = { @@ -517,6 +589,7 @@ return { "Lose 5% of maximum Life per second while Sprinting", "25% increased Movement Speed while Sprinting", statOrder = { 6999, 9465 }, + tradeHashes = { 3473409233, 3107707789, 3473409233, 3107707789 }, rank = { 60 }, }, }, @@ -525,18 +598,21 @@ return { type = "Rune", "You Recoup 50% of Damage taken by your Offerings as Life", statOrder = { 9105 }, + tradeHashes = { 1937310173 }, rank = { 60 }, }, ["gloves"] = { type = "Rune", "One of your Persistent Minions revives when an Offering expires", statOrder = { 9188 }, + tradeHashes = { 1480688478 }, rank = { 60 }, }, ["boots"] = { type = "Rune", "Sacrifice 10% of maximum Life to gain that much Guard when you Dodge Roll", statOrder = { 9195 }, + tradeHashes = { 1585886916 }, rank = { 60 }, }, }, @@ -546,6 +622,7 @@ return { "Adds 7 to 11 Fire Damage", "Bonded: 25% increased Ignite Magnitude", statOrder = { 823, 1009 }, + tradeHashes = { 709508406 }, rank = { 15 }, }, ["caster"] = { @@ -553,6 +630,7 @@ return { "Gain 8% of Damage as Extra Fire Damage", "Bonded: 25% increased Ignite Magnitude", statOrder = { 847, 1009 }, + tradeHashes = { 3015669065 }, rank = { 15 }, }, ["armour"] = { @@ -561,6 +639,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 958, 869, 871 }, + tradeHashes = { 3372524247 }, rank = { 15 }, }, }, @@ -570,6 +649,7 @@ return { "Adds 6 to 10 Cold Damage", "Bonded: 30% increased Freeze Buildup", statOrder = { 824, 990 }, + tradeHashes = { 1037193709 }, rank = { 15 }, }, ["caster"] = { @@ -577,6 +657,7 @@ return { "Gain 8% of Damage as Extra Cold Damage", "Bonded: 30% increased Freeze Buildup", statOrder = { 849, 990 }, + tradeHashes = { 2505884597 }, rank = { 15 }, }, ["armour"] = { @@ -585,6 +666,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 959, 869, 871 }, + tradeHashes = { 4220027924 }, rank = { 15 }, }, }, @@ -594,6 +676,7 @@ return { "Adds 1 to 20 Lightning Damage", "Bonded: 30% increased Magnitude of Shock you inflict", statOrder = { 825, 9248 }, + tradeHashes = { 3336890334 }, rank = { 15 }, }, ["caster"] = { @@ -601,6 +684,7 @@ return { "Gain 8% of Damage as Extra Lightning Damage", "Bonded: 30% increased Magnitude of Shock you inflict", statOrder = { 851, 9248 }, + tradeHashes = { 3278136794 }, rank = { 15 }, }, ["armour"] = { @@ -609,6 +693,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 960, 869, 871 }, + tradeHashes = { 1671376347 }, rank = { 15 }, }, }, @@ -618,6 +703,7 @@ return { "16% increased Physical Damage", "Bonded: 20% increased effect of Fully Broken Armour", statOrder = { 821, 4868 }, + tradeHashes = { 1805374733 }, rank = { 15 }, }, ["caster"] = { @@ -625,6 +711,7 @@ return { "25% increased Spell Damage", "Bonded: Break Armour on Critical Hit with Spells equal to 12% of Physical Damage dealt", statOrder = { 853, 4287 }, + tradeHashes = { 2974417149 }, rank = { 15 }, }, ["armour"] = { @@ -633,6 +720,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 840, 869, 871 }, + tradeHashes = { 3523867985 }, rank = { 15 }, }, }, @@ -642,6 +730,7 @@ return { "Leeches 2.5% of Physical Damage as Life", "Bonded: 5% increased maximum Life", statOrder = { 972, 870 }, + tradeHashes = { 55876295 }, rank = { 15 }, }, ["caster"] = { @@ -649,6 +738,7 @@ return { "+30 to maximum Energy Shield", "Bonded: 5% increased maximum Life", statOrder = { 867, 870 }, + tradeHashes = { 3489782002 }, rank = { 15 }, }, ["armour"] = { @@ -657,6 +747,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 869, 869, 871 }, + tradeHashes = { 3299347043 }, rank = { 15 }, }, }, @@ -666,6 +757,7 @@ return { "Leeches 2% of Physical Damage as Mana", "Bonded: 5% increased maximum Mana", statOrder = { 978, 872 }, + tradeHashes = { 669069897 }, rank = { 15 }, }, ["caster"] = { @@ -673,6 +765,7 @@ return { "+40 to maximum Mana", "Bonded: 5% increased maximum Mana", statOrder = { 871, 872 }, + tradeHashes = { 1050105434 }, rank = { 15 }, }, ["armour"] = { @@ -681,6 +774,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 871, 869, 871 }, + tradeHashes = { 1050105434 }, rank = { 15 }, }, }, @@ -690,6 +784,7 @@ return { "Gain 20 Life per enemy killed", "Bonded: Regenerate 0.4% of maximum Life per second", statOrder = { 975, 1617 }, + tradeHashes = { 3695891184 }, rank = { 15 }, }, ["caster"] = { @@ -697,6 +792,7 @@ return { "15% increased Energy Shield Recharge Rate", "Bonded: 8% of Damage taken Recouped as Life", statOrder = { 966, 970 }, + tradeHashes = { 2339757871 }, rank = { 15 }, }, ["armour"] = { @@ -705,6 +801,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 1617, 869, 871 }, + tradeHashes = { 836936635 }, rank = { 15 }, }, }, @@ -714,6 +811,7 @@ return { "Gain 16 Mana per enemy killed", "Bonded: 12% of Skill Mana Costs Converted to Life Costs", statOrder = { 980, 4605 }, + tradeHashes = { 1368271171 }, rank = { 15 }, }, ["caster"] = { @@ -721,6 +819,7 @@ return { "20% increased Mana Regeneration Rate", "Bonded: 16% increased Mana Cost Efficiency", statOrder = { 976, 4582 }, + tradeHashes = { 789117908 }, rank = { 15 }, }, ["armour"] = { @@ -729,6 +828,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 976, 869, 871 }, + tradeHashes = { 789117908 }, rank = { 15 }, }, }, @@ -738,6 +838,7 @@ return { "Causes 25% increased Stun Buildup", "Bonded: 40% increased Damage against Immobilised Enemies", statOrder = { 985, 5564 }, + tradeHashes = { 791928121 }, rank = { 15 }, }, ["caster"] = { @@ -745,6 +846,7 @@ return { "Gain additional Stun Threshold equal to 12% of maximum Energy Shield", "Bonded: 30% increased Immobilisation buildup", statOrder = { 9531, 6748 }, + tradeHashes = { 416040624 }, rank = { 15 }, }, ["armour"] = { @@ -753,6 +855,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 994, 869, 871 }, + tradeHashes = { 915769802 }, rank = { 15 }, }, }, @@ -762,6 +865,7 @@ return { "+80 to Accuracy Rating", "Bonded: Attacks have +1% to Critical Hit Chance", statOrder = { 826, 4335 }, + tradeHashes = { 691932474 }, rank = { 15 }, }, ["caster"] = { @@ -769,6 +873,7 @@ return { "20% increased Critical Hit Chance for Spells", "Bonded: 25% increased Critical Damage Bonus", statOrder = { 935, 937 }, + tradeHashes = { 737908626 }, rank = { 15 }, }, ["armour"] = { @@ -777,6 +882,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 6220, 869, 871 }, + tradeHashes = { 2310741722 }, rank = { 15 }, }, }, @@ -786,6 +892,7 @@ return { "Adds 4 to 6 Fire Damage", "Bonded: 25% increased Ignite Magnitude", statOrder = { 823, 1009 }, + tradeHashes = { 709508406 }, rank = { 0 }, }, ["caster"] = { @@ -793,6 +900,7 @@ return { "Gain 6% of Damage as Extra Fire Damage", "Bonded: 25% increased Ignite Magnitude", statOrder = { 847, 1009 }, + tradeHashes = { 3015669065 }, rank = { 0 }, }, ["armour"] = { @@ -801,6 +909,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 958, 869, 871 }, + tradeHashes = { 3372524247 }, rank = { 0 }, }, }, @@ -810,6 +919,7 @@ return { "Adds 3 to 5 Cold Damage", "Bonded: 30% increased Freeze Buildup", statOrder = { 824, 990 }, + tradeHashes = { 1037193709 }, rank = { 0 }, }, ["caster"] = { @@ -817,6 +927,7 @@ return { "Gain 6% of Damage as Extra Cold Damage", "Bonded: 30% increased Freeze Buildup", statOrder = { 849, 990 }, + tradeHashes = { 2505884597 }, rank = { 0 }, }, ["armour"] = { @@ -825,6 +936,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 959, 869, 871 }, + tradeHashes = { 4220027924 }, rank = { 0 }, }, }, @@ -834,6 +946,7 @@ return { "Adds 1 to 10 Lightning Damage", "Bonded: 30% increased Magnitude of Shock you inflict", statOrder = { 825, 9248 }, + tradeHashes = { 3336890334 }, rank = { 0 }, }, ["caster"] = { @@ -841,6 +954,7 @@ return { "Gain 6% of Damage as Extra Lightning Damage", "Bonded: 30% increased Magnitude of Shock you inflict", statOrder = { 851, 9248 }, + tradeHashes = { 3278136794 }, rank = { 0 }, }, ["armour"] = { @@ -849,6 +963,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 960, 869, 871 }, + tradeHashes = { 1671376347 }, rank = { 0 }, }, }, @@ -858,6 +973,7 @@ return { "14% increased Physical Damage", "Bonded: 20% increased effect of Fully Broken Armour", statOrder = { 821, 4868 }, + tradeHashes = { 1805374733 }, rank = { 0 }, }, ["caster"] = { @@ -865,6 +981,7 @@ return { "20% increased Spell Damage", "Bonded: Break Armour on Critical Hit with Spells equal to 12% of Physical Damage dealt", statOrder = { 853, 4287 }, + tradeHashes = { 2974417149 }, rank = { 0 }, }, ["armour"] = { @@ -873,6 +990,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 840, 869, 871 }, + tradeHashes = { 3523867985 }, rank = { 0 }, }, }, @@ -882,6 +1000,7 @@ return { "Leeches 2% of Physical Damage as Life", "Bonded: 5% increased maximum Life", statOrder = { 972, 870 }, + tradeHashes = { 55876295 }, rank = { 0 }, }, ["caster"] = { @@ -889,6 +1008,7 @@ return { "+25 to maximum Energy Shield", "Bonded: 5% increased maximum Life", statOrder = { 867, 870 }, + tradeHashes = { 3489782002 }, rank = { 0 }, }, ["armour"] = { @@ -897,6 +1017,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 869, 869, 871 }, + tradeHashes = { 3299347043 }, rank = { 0 }, }, }, @@ -906,6 +1027,7 @@ return { "Leeches 1.5% of Physical Damage as Mana", "Bonded: 5% increased maximum Mana", statOrder = { 978, 872 }, + tradeHashes = { 669069897 }, rank = { 0 }, }, ["caster"] = { @@ -913,6 +1035,7 @@ return { "+30 to maximum Mana", "Bonded: 5% increased maximum Mana", statOrder = { 871, 872 }, + tradeHashes = { 1050105434 }, rank = { 0 }, }, ["armour"] = { @@ -921,6 +1044,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 871, 869, 871 }, + tradeHashes = { 1050105434 }, rank = { 0 }, }, }, @@ -930,6 +1054,7 @@ return { "Gain 10 Life per enemy killed", "Bonded: Regenerate 0.4% of maximum Life per second", statOrder = { 975, 1617 }, + tradeHashes = { 3695891184 }, rank = { 0 }, }, ["caster"] = { @@ -937,6 +1062,7 @@ return { "12% increased Energy Shield Recharge Rate", "Bonded: 8% of Damage taken Recouped as Life", statOrder = { 966, 970 }, + tradeHashes = { 2339757871 }, rank = { 0 }, }, ["armour"] = { @@ -945,6 +1071,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 1617, 869, 871 }, + tradeHashes = { 836936635 }, rank = { 0 }, }, }, @@ -954,6 +1081,7 @@ return { "Gain 8 Mana per enemy killed", "Bonded: 12% of Skill Mana Costs Converted to Life Costs", statOrder = { 980, 4605 }, + tradeHashes = { 1368271171 }, rank = { 0 }, }, ["caster"] = { @@ -961,6 +1089,7 @@ return { "16% increased Mana Regeneration Rate", "Bonded: 16% increased Mana Cost Efficiency", statOrder = { 976, 4582 }, + tradeHashes = { 789117908 }, rank = { 0 }, }, ["armour"] = { @@ -969,6 +1098,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 976, 869, 871 }, + tradeHashes = { 789117908 }, rank = { 0 }, }, }, @@ -978,6 +1108,7 @@ return { "Causes 20% increased Stun Buildup", "Bonded: 40% increased Damage against Immobilised Enemies", statOrder = { 985, 5564 }, + tradeHashes = { 791928121 }, rank = { 0 }, }, ["caster"] = { @@ -985,6 +1116,7 @@ return { "Gain additional Stun Threshold equal to 10% of maximum Energy Shield", "Bonded: 30% increased Immobilisation buildup", statOrder = { 9531, 6748 }, + tradeHashes = { 416040624 }, rank = { 0 }, }, ["armour"] = { @@ -993,6 +1125,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 994, 869, 871 }, + tradeHashes = { 915769802 }, rank = { 0 }, }, }, @@ -1002,6 +1135,7 @@ return { "+50 to Accuracy Rating", "Bonded: Attacks have +1% to Critical Hit Chance", statOrder = { 826, 4335 }, + tradeHashes = { 691932474 }, rank = { 0 }, }, ["caster"] = { @@ -1009,6 +1143,7 @@ return { "16% increased Critical Hit Chance for Spells", "Bonded: 25% increased Critical Damage Bonus", statOrder = { 935, 937 }, + tradeHashes = { 737908626 }, rank = { 0 }, }, ["armour"] = { @@ -1017,6 +1152,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 6220, 869, 871 }, + tradeHashes = { 2310741722 }, rank = { 0 }, }, }, @@ -1026,6 +1162,7 @@ return { "Adds 13 to 16 Fire Damage", "Bonded: 25% increased Ignite Magnitude", statOrder = { 823, 1009 }, + tradeHashes = { 709508406 }, rank = { 30 }, }, ["caster"] = { @@ -1033,6 +1170,7 @@ return { "Gain 10% of Damage as Extra Fire Damage", "Bonded: 25% increased Ignite Magnitude", statOrder = { 847, 1009 }, + tradeHashes = { 3015669065 }, rank = { 30 }, }, ["armour"] = { @@ -1041,6 +1179,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 958, 869, 871 }, + tradeHashes = { 3372524247 }, rank = { 30 }, }, }, @@ -1050,6 +1189,7 @@ return { "Adds 9 to 15 Cold Damage", "Bonded: 30% increased Freeze Buildup", statOrder = { 824, 990 }, + tradeHashes = { 1037193709 }, rank = { 30 }, }, ["caster"] = { @@ -1057,6 +1197,7 @@ return { "Gain 10% of Damage as Extra Cold Damage", "Bonded: 30% increased Freeze Buildup", statOrder = { 849, 990 }, + tradeHashes = { 2505884597 }, rank = { 30 }, }, ["armour"] = { @@ -1065,6 +1206,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 959, 869, 871 }, + tradeHashes = { 4220027924 }, rank = { 30 }, }, }, @@ -1074,6 +1216,7 @@ return { "Adds 1 to 30 Lightning Damage", "Bonded: 30% increased Magnitude of Shock you inflict", statOrder = { 825, 9248 }, + tradeHashes = { 3336890334 }, rank = { 30 }, }, ["caster"] = { @@ -1081,6 +1224,7 @@ return { "Gain 10% of Damage as Extra Lightning Damage", "Bonded: 30% increased Magnitude of Shock you inflict", statOrder = { 851, 9248 }, + tradeHashes = { 3278136794 }, rank = { 30 }, }, ["armour"] = { @@ -1089,6 +1233,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 960, 869, 871 }, + tradeHashes = { 1671376347 }, rank = { 30 }, }, }, @@ -1098,6 +1243,7 @@ return { "18% increased Physical Damage", "Bonded: 20% increased effect of Fully Broken Armour", statOrder = { 821, 4868 }, + tradeHashes = { 1805374733 }, rank = { 30 }, }, ["caster"] = { @@ -1105,6 +1251,7 @@ return { "30% increased Spell Damage", "Bonded: Break Armour on Critical Hit with Spells equal to 12% of Physical Damage dealt", statOrder = { 853, 4287 }, + tradeHashes = { 2974417149 }, rank = { 30 }, }, ["armour"] = { @@ -1113,6 +1260,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 840, 869, 871 }, + tradeHashes = { 3523867985 }, rank = { 30 }, }, }, @@ -1122,6 +1270,7 @@ return { "Leeches 3% of Physical Damage as Life", "Bonded: 5% increased maximum Life", statOrder = { 972, 870 }, + tradeHashes = { 55876295 }, rank = { 30 }, }, ["caster"] = { @@ -1129,6 +1278,7 @@ return { "+35 to maximum Energy Shield", "Bonded: 5% increased maximum Life", statOrder = { 867, 870 }, + tradeHashes = { 3489782002 }, rank = { 30 }, }, ["armour"] = { @@ -1137,6 +1287,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 869, 869, 871 }, + tradeHashes = { 3299347043 }, rank = { 30 }, }, }, @@ -1146,6 +1297,7 @@ return { "Leeches 2.5% of Physical Damage as Mana", "Bonded: 5% increased maximum Mana", statOrder = { 978, 872 }, + tradeHashes = { 669069897 }, rank = { 30 }, }, ["caster"] = { @@ -1153,6 +1305,7 @@ return { "+50 to maximum Mana", "Bonded: 5% increased maximum Mana", statOrder = { 871, 872 }, + tradeHashes = { 1050105434 }, rank = { 30 }, }, ["armour"] = { @@ -1161,6 +1314,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 871, 869, 871 }, + tradeHashes = { 1050105434 }, rank = { 30 }, }, }, @@ -1170,6 +1324,7 @@ return { "Gain 30 Life per enemy killed", "Bonded: Regenerate 0.4% of maximum Life per second", statOrder = { 975, 1617 }, + tradeHashes = { 3695891184 }, rank = { 30 }, }, ["caster"] = { @@ -1177,6 +1332,7 @@ return { "18% increased Energy Shield Recharge Rate", "Bonded: 8% of Damage taken Recouped as Life", statOrder = { 966, 970 }, + tradeHashes = { 2339757871 }, rank = { 30 }, }, ["armour"] = { @@ -1185,6 +1341,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 1617, 869, 871 }, + tradeHashes = { 836936635 }, rank = { 30 }, }, }, @@ -1194,6 +1351,7 @@ return { "Gain 24 Mana per enemy killed", "Bonded: 12% of Skill Mana Costs Converted to Life Costs", statOrder = { 980, 4605 }, + tradeHashes = { 1368271171 }, rank = { 30 }, }, ["caster"] = { @@ -1201,6 +1359,7 @@ return { "24% increased Mana Regeneration Rate", "Bonded: 16% increased Mana Cost Efficiency", statOrder = { 976, 4582 }, + tradeHashes = { 789117908 }, rank = { 30 }, }, ["armour"] = { @@ -1209,6 +1368,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 976, 869, 871 }, + tradeHashes = { 789117908 }, rank = { 30 }, }, }, @@ -1218,6 +1378,7 @@ return { "Causes 30% increased Stun Buildup", "Bonded: 40% increased Damage against Immobilised Enemies", statOrder = { 985, 5564 }, + tradeHashes = { 791928121 }, rank = { 30 }, }, ["caster"] = { @@ -1225,6 +1386,7 @@ return { "Gain additional Stun Threshold equal to 14% of maximum Energy Shield", "Bonded: 30% increased Immobilisation buildup", statOrder = { 9531, 6748 }, + tradeHashes = { 416040624 }, rank = { 30 }, }, ["armour"] = { @@ -1233,6 +1395,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 994, 869, 871 }, + tradeHashes = { 915769802 }, rank = { 30 }, }, }, @@ -1242,6 +1405,7 @@ return { "+110 to Accuracy Rating", "Bonded: Attacks have +1% to Critical Hit Chance", statOrder = { 826, 4335 }, + tradeHashes = { 691932474 }, rank = { 30 }, }, ["caster"] = { @@ -1249,6 +1413,7 @@ return { "24% increased Critical Hit Chance for Spells", "Bonded: 25% increased Critical Damage Bonus", statOrder = { 935, 937 }, + tradeHashes = { 737908626 }, rank = { 30 }, }, ["armour"] = { @@ -1257,6 +1422,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 6220, 869, 871 }, + tradeHashes = { 2310741722 }, rank = { 30 }, }, }, @@ -1265,18 +1431,21 @@ return { type = "Rune", "+6 to Strength", statOrder = { 947 }, + tradeHashes = { 4080418644 }, rank = { 0 }, }, ["armour"] = { type = "Rune", "+6 to Strength", statOrder = { 947 }, + tradeHashes = { 4080418644 }, rank = { 0 }, }, ["caster"] = { type = "Rune", "+6 to Strength", statOrder = { 947 }, + tradeHashes = { 4080418644 }, rank = { 0 }, }, }, @@ -1285,18 +1454,21 @@ return { type = "Rune", "+8 to Strength", statOrder = { 947 }, + tradeHashes = { 4080418644 }, rank = { 15 }, }, ["armour"] = { type = "Rune", "+8 to Strength", statOrder = { 947 }, + tradeHashes = { 4080418644 }, rank = { 15 }, }, ["caster"] = { type = "Rune", "+8 to Strength", statOrder = { 947 }, + tradeHashes = { 4080418644 }, rank = { 15 }, }, }, @@ -1305,18 +1477,21 @@ return { type = "Rune", "+10 to Strength", statOrder = { 947 }, + tradeHashes = { 4080418644 }, rank = { 30 }, }, ["armour"] = { type = "Rune", "+10 to Strength", statOrder = { 947 }, + tradeHashes = { 4080418644 }, rank = { 30 }, }, ["caster"] = { type = "Rune", "+10 to Strength", statOrder = { 947 }, + tradeHashes = { 4080418644 }, rank = { 30 }, }, }, @@ -1325,18 +1500,21 @@ return { type = "Rune", "+6 to Dexterity", statOrder = { 948 }, + tradeHashes = { 3261801346 }, rank = { 0 }, }, ["armour"] = { type = "Rune", "+6 to Dexterity", statOrder = { 948 }, + tradeHashes = { 3261801346 }, rank = { 0 }, }, ["caster"] = { type = "Rune", "+6 to Dexterity", statOrder = { 948 }, + tradeHashes = { 3261801346 }, rank = { 0 }, }, }, @@ -1345,18 +1523,21 @@ return { type = "Rune", "+8 to Dexterity", statOrder = { 948 }, + tradeHashes = { 3261801346 }, rank = { 15 }, }, ["armour"] = { type = "Rune", "+8 to Dexterity", statOrder = { 948 }, + tradeHashes = { 3261801346 }, rank = { 15 }, }, ["caster"] = { type = "Rune", "+8 to Dexterity", statOrder = { 948 }, + tradeHashes = { 3261801346 }, rank = { 15 }, }, }, @@ -1365,18 +1546,21 @@ return { type = "Rune", "+10 to Dexterity", statOrder = { 948 }, + tradeHashes = { 3261801346 }, rank = { 30 }, }, ["armour"] = { type = "Rune", "+10 to Dexterity", statOrder = { 948 }, + tradeHashes = { 3261801346 }, rank = { 30 }, }, ["caster"] = { type = "Rune", "+10 to Dexterity", statOrder = { 948 }, + tradeHashes = { 3261801346 }, rank = { 30 }, }, }, @@ -1385,18 +1569,21 @@ return { type = "Rune", "+6 to Intelligence", statOrder = { 949 }, + tradeHashes = { 328541901 }, rank = { 0 }, }, ["armour"] = { type = "Rune", "+6 to Intelligence", statOrder = { 949 }, + tradeHashes = { 328541901 }, rank = { 0 }, }, ["caster"] = { type = "Rune", "+6 to Intelligence", statOrder = { 949 }, + tradeHashes = { 328541901 }, rank = { 0 }, }, }, @@ -1405,18 +1592,21 @@ return { type = "Rune", "+8 to Intelligence", statOrder = { 949 }, + tradeHashes = { 328541901 }, rank = { 15 }, }, ["armour"] = { type = "Rune", "+8 to Intelligence", statOrder = { 949 }, + tradeHashes = { 328541901 }, rank = { 15 }, }, ["caster"] = { type = "Rune", "+8 to Intelligence", statOrder = { 949 }, + tradeHashes = { 328541901 }, rank = { 15 }, }, }, @@ -1425,18 +1615,21 @@ return { type = "Rune", "+10 to Intelligence", statOrder = { 949 }, + tradeHashes = { 328541901 }, rank = { 30 }, }, ["armour"] = { type = "Rune", "+10 to Intelligence", statOrder = { 949 }, + tradeHashes = { 328541901 }, rank = { 30 }, }, ["caster"] = { type = "Rune", "+10 to Intelligence", statOrder = { 949 }, + tradeHashes = { 328541901 }, rank = { 30 }, }, }, @@ -1445,12 +1638,14 @@ return { type = "Rune", "Adds 3 to 4 Physical Damage", statOrder = { 822 }, + tradeHashes = { 1940865751 }, rank = { 0 }, }, ["armour"] = { type = "Rune", "6 to 9 Physical Thorns damage", statOrder = { 9653 }, + tradeHashes = { 2881298780 }, rank = { 0 }, }, }, @@ -1459,12 +1654,14 @@ return { type = "Rune", "Adds 6 to 9 Physical Damage", statOrder = { 822 }, + tradeHashes = { 1940865751 }, rank = { 15 }, }, ["armour"] = { type = "Rune", "14 to 21 Physical Thorns damage", statOrder = { 9653 }, + tradeHashes = { 2881298780 }, rank = { 15 }, }, }, @@ -1473,12 +1670,14 @@ return { type = "Rune", "Adds 9 to 12 Physical Damage", statOrder = { 822 }, + tradeHashes = { 1940865751 }, rank = { 30 }, }, ["armour"] = { type = "Rune", "31 to 52 Physical Thorns damage", statOrder = { 9653 }, + tradeHashes = { 2881298780 }, rank = { 30 }, }, }, @@ -1488,6 +1687,7 @@ return { "Minions gain 10% of their Physical Damage as Extra Lightning Damage", "Bonded: Minions deal 20% increased Damage", statOrder = { 8518, 1646 }, + tradeHashes = { 1433756169 }, rank = { 0 }, }, ["armour"] = { @@ -1495,6 +1695,7 @@ return { "Minions take 10% of Physical Damage as Lightning Damage", "Bonded: Minions have +10% to all Elemental Resistances", statOrder = { 8519, 2558 }, + tradeHashes = { 889552744 }, rank = { 0 }, }, }, @@ -1504,6 +1705,7 @@ return { "Meta Skills gain 10% increased Energy", "Bonded: Invocated Spells have 25% chance to consume half as much Energy", statOrder = { 5987, 6924 }, + tradeHashes = { 4236566306 }, rank = { 0 }, }, ["armour"] = { @@ -1511,6 +1713,7 @@ return { "1 to 100 Lightning Thorns damage", "Bonded: 15% increased Thorns damage", statOrder = { 9652, 9646 }, + tradeHashes = { 757050353 }, rank = { 0 }, }, }, @@ -1520,6 +1723,7 @@ return { "8% increased Skill Speed", "Bonded: 15% increased Reservation Efficiency of Herald Skills", statOrder = { 828, 9179 }, + tradeHashes = { 970213192 }, rank = { 0 }, }, ["armour"] = { @@ -1527,6 +1731,7 @@ return { "Debuffs on you expire 8% faster", "Bonded: 15% increased Elemental Ailment Threshold", statOrder = { 5703, 4147 }, + tradeHashes = { 1238227257 }, rank = { 0 }, }, }, @@ -1536,6 +1741,7 @@ return { "Attacks with this Weapon have 10% chance to inflict Exposure", "Bonded: 20% increased Exposure Effect", statOrder = { 7269, 6106 }, + tradeHashes = { 3678845069 }, rank = { 0 }, }, ["armour"] = { @@ -1543,6 +1749,7 @@ return { "10% reduced effect of Shock on you", "Bonded: 10% reduced Shock duration on you", statOrder = { 9261, 999 }, + tradeHashes = { 3801067695 }, rank = { 0 }, }, }, @@ -1552,6 +1759,7 @@ return { "+1 to Level of all Spell Skills", "Bonded: Archon recovery period expires 30% faster", statOrder = { 922, 4221 }, + tradeHashes = { 124131830 }, rank = { 50 }, }, }, @@ -1561,6 +1769,7 @@ return { "Gain 5% of Damage as Extra Damage of all Elements", "Bonded: 8% chance to gain an additional random Charge when you gain a Charge", statOrder = { 8691, 5146 }, + tradeHashes = { 731403740 }, rank = { 50 }, }, ["caster"] = { @@ -1569,6 +1778,7 @@ return { "Bonded: 12% chance when collecting an Elemental Infusion to gain an", "Bonded: additional Elemental Infusion of the same type", statOrder = { 8691, 4077, 4077.1 }, + tradeHashes = { 731403740 }, rank = { 50 }, }, }, @@ -1578,6 +1788,7 @@ return { "Gain 13% of Damage as Extra Chaos Damage", "Bonded: Gain 8% of Damage as Extra Physical Damage", statOrder = { 1602, 1601 }, + tradeHashes = { 3398787959 }, rank = { 50 }, }, ["caster"] = { @@ -1585,6 +1796,7 @@ return { "Gain 13% of Damage as Extra Chaos Damage", "Bonded: Gain 8% of Damage as Extra Physical Damage", statOrder = { 1602, 1601 }, + tradeHashes = { 3398787959 }, rank = { 50 }, }, }, @@ -1594,6 +1806,7 @@ return { "8% increased Deflection Rating while moving", "Bonded: Prevent +3% of Damage from Deflected Hits", statOrder = { 5722, 4541 }, + tradeHashes = { 1382805233 }, rank = { 50 }, }, }, @@ -1603,6 +1816,7 @@ return { "5% increased Movement Speed", "Bonded: 10% increased Cooldown Recovery Rate", statOrder = { 827, 4539 }, + tradeHashes = { 2250533757 }, rank = { 50 }, }, }, @@ -1612,6 +1826,7 @@ return { "50% reduced effect of Curses on you", "Bonded: 8% increased Curse Magnitudes", statOrder = { 1835, 2266 }, + tradeHashes = { 3407849389 }, rank = { 50 }, }, }, @@ -1621,6 +1836,7 @@ return { "2% increased Experience gain", "Bonded: +10% to all Elemental Resistances", statOrder = { 1397, 957 }, + tradeHashes = { 3666934677 }, rank = { 50 }, }, }, @@ -1630,6 +1846,7 @@ return { "25% increased Exposure Effect", "Bonded: 15% increased Magnitude of Non-Damaging Ailments you inflict", statOrder = { 6106, 8659 }, + tradeHashes = { 2074866941 }, rank = { 50 }, }, }, @@ -1639,6 +1856,7 @@ return { "50% increased Attack Damage against Rare or Unique Enemies", "Bonded: +1 to Level of all Attack Skills", statOrder = { 4382, 929 }, + tradeHashes = { 2077615515 }, rank = { 50 }, }, }, @@ -1648,6 +1866,7 @@ return { "50% increased Energy Shield Recharge Rate", "Bonded: 20% faster start of Energy Shield Recharge", statOrder = { 966, 967 }, + tradeHashes = { 2339757871 }, rank = { 50 }, }, }, @@ -1657,6 +1876,7 @@ return { "20% increased Magnitude of Damaging Ailments you inflict", "Bonded: 15% increased Duration of Damaging Ailments on Enemies", statOrder = { 5670, 5668 }, + tradeHashes = { 1381474422 }, rank = { 50 }, }, }, @@ -1666,6 +1886,7 @@ return { "30% increased Magnitude of Non-Damaging Ailments you inflict", "Bonded: 15% increased Duration of Elemental Ailments on Enemies", statOrder = { 8659, 1544 }, + tradeHashes = { 782230869 }, rank = { 50 }, }, }, @@ -1675,6 +1896,7 @@ return { "8% increased Cast Speed", "Bonded: 20% increased Mana Cost Efficiency while on Low Mana", statOrder = { 942, 4586 }, + tradeHashes = { 2891184298 }, rank = { 50 }, }, }, @@ -1684,6 +1906,7 @@ return { "Bow Attacks fire an additional Arrow", "Bonded: 20% increased Projectile Speed", statOrder = { 945, 875 }, + tradeHashes = { 3885405204 }, rank = { 50 }, }, }, @@ -1693,6 +1916,7 @@ return { "25% chance for Spell Skills to fire 2 additional Projectiles", "Bonded: Every Rage also grants 1% increased Spell Damage", statOrder = { 9431, 9405 }, + tradeHashes = { 2910761524 }, rank = { 50 }, }, }, @@ -1702,6 +1926,7 @@ return { "20% increased Withered Magnitude", "Bonded: +7% to Chaos Resistance", statOrder = { 9915, 961 }, + tradeHashes = { 3973629633 }, rank = { 50 }, }, }, @@ -1711,6 +1936,7 @@ return { "Adds 23 to 34 Fire Damage", "Bonded: +2% to Maximum Fire Resistance", statOrder = { 823, 953 }, + tradeHashes = { 709508406 }, rank = { 50 }, }, }, @@ -1720,6 +1946,7 @@ return { "Adds 19 to 28 Cold Damage", "Bonded: +2% to Maximum Cold Resistance", statOrder = { 824, 954 }, + tradeHashes = { 1037193709 }, rank = { 50 }, }, }, @@ -1729,6 +1956,7 @@ return { "Adds 1 to 60 Lightning Damage", "Bonded: +2% to Maximum Lightning Resistance", statOrder = { 825, 955 }, + tradeHashes = { 3336890334 }, rank = { 50 }, }, }, @@ -1738,6 +1966,7 @@ return { "Adds 5 to 12 Physical Damage to Attacks", "Bonded: Fissure Skills have +2 to Limit", statOrder = { 843, 6192 }, + tradeHashes = { 3032590688 }, rank = { 50 }, }, }, @@ -1747,6 +1976,7 @@ return { "15% of Damage is taken from Mana before Life", "Bonded: 8% of Maximum Life Converted to Energy Shield", statOrder = { 2362, 8332 }, + tradeHashes = { 458438597 }, rank = { 50 }, }, }, @@ -1756,6 +1986,7 @@ return { "8% increased Attack Speed", "Bonded: 15% reduced Slowing Potency of Debuffs on You", statOrder = { 941, 4608 }, + tradeHashes = { 681332047 }, rank = { 50 }, }, }, @@ -1766,6 +1997,7 @@ return { "Targets can be affected by +1 of your Poisons at the same time", "Bonded: Gain 13% of Elemental Damage as Extra Chaos Damage", statOrder = { 2786, 8749, 1614 }, + tradeHashes = { 1755296234, 2011656677, 1755296234, 2011656677 }, rank = { 50 }, }, }, @@ -1775,6 +2007,7 @@ return { "20% increased total Power counted by Warcries", "Bonded: 20% increased Glory generation", statOrder = { 9889, 6473 }, + tradeHashes = { 2663359259 }, rank = { 50 }, }, }, @@ -1784,6 +2017,7 @@ return { "12% increased Cost Efficiency", "Bonded: Meta Skills have 12% increased Reservation Efficiency", statOrder = { 4604, 9180 }, + tradeHashes = { 263495202 }, rank = { 50 }, }, }, @@ -1793,6 +2027,7 @@ return { "Enemies you Curse take 6% increased Damage", "Bonded: 20% increased Area of Effect of Curses", statOrder = { 3327, 1875 }, + tradeHashes = { 1984310483 }, rank = { 50 }, }, }, @@ -1802,6 +2037,7 @@ return { "+1 Charm Slot", "Bonded: Storm Skills have +1 to Limit", statOrder = { 8739, 9505 }, + tradeHashes = { 554899692 }, rank = { 50 }, }, }, @@ -1811,6 +2047,7 @@ return { "8% increased Reservation Efficiency of Minion Skills", "Bonded: Minions Revive 8% faster", statOrder = { 8524, 8529 }, + tradeHashes = { 1805633363 }, rank = { 50 }, }, }, @@ -1820,6 +2057,7 @@ return { "5% increased Curse Magnitudes", "Bonded: Remnants have 10% increased effect", statOrder = { 2266, 9151 }, + tradeHashes = { 2353576063 }, rank = { 0 }, }, ["sceptre"] = { @@ -1827,6 +2065,7 @@ return { "Allies in your Presence have 8% increased Attack Speed", "Bonded: 10% increased Skill Speed while Shapeshifted", statOrder = { 893, 9317 }, + tradeHashes = { 1998951374 }, rank = { 0 }, }, }, @@ -1836,6 +2075,7 @@ return { "Minions have 12% increased maximum Life", "Bonded: Remnants can be collected from 20% further away", statOrder = { 962, 9153 }, + tradeHashes = { 770672621 }, rank = { 0 }, }, ["sceptre"] = { @@ -1843,6 +2083,7 @@ return { "Allies in your Presence deal 30% increased Damage", "Bonded: 40% increased Damage while Shapeshifted", statOrder = { 881, 5567 }, + tradeHashes = { 1798257884 }, rank = { 0 }, }, }, @@ -1852,6 +2093,7 @@ return { "10% increased Cooldown Recovery Rate", "Bonded: 15% increased effect of Archon Buffs on you", statOrder = { 4539, 4223 }, + tradeHashes = { 1004011302 }, rank = { 0 }, }, ["sceptre"] = { @@ -1859,6 +2101,7 @@ return { "Allies in your Presence have 8% increased Cast Speed", "Bonded: 10% increased Skill Speed while Shapeshifted", statOrder = { 894, 9317 }, + tradeHashes = { 289128254 }, rank = { 0 }, }, }, @@ -1868,6 +2111,7 @@ return { "15% increased Accuracy Rating", "Bonded: 20% increased Charm Charges gained", statOrder = { 1268, 5227 }, + tradeHashes = { 624954515 }, rank = { 0 }, }, ["sceptre"] = { @@ -1875,6 +2119,7 @@ return { "Allies in your Presence have 14% increased Critical Hit Chance", "Bonded: 25% increased Critical Hit Chance while Shapeshifted", statOrder = { 891, 5440 }, + tradeHashes = { 1250712710 }, rank = { 0 }, }, }, @@ -1884,6 +2129,7 @@ return { "10% increased Magnitude of Bleeding you inflict", "Bonded: 15% reduced Magnitude of Bleeding on You", statOrder = { 4662, 4523 }, + tradeHashes = { 3166958180 }, rank = { 0 }, }, ["sceptre"] = { @@ -1891,6 +2137,7 @@ return { "Allies in your Presence have 14% increased Critical Damage Bonus", "Bonded: 25% increased Critical Hit Chance while Shapeshifted", statOrder = { 892, 5440 }, + tradeHashes = { 3057012405 }, rank = { 0 }, }, }, @@ -1900,6 +2147,7 @@ return { "50% increased Thorns Critical Hit Chance", "Bonded: Thorns Damage has 40% chance to ignore Enemy Armour", statOrder = { 9642, 9645 }, + tradeHashes = { 915264788 }, rank = { 0 }, }, ["sceptre"] = { @@ -1907,6 +2155,7 @@ return { "Allies in your Presence deal 1 to 40 added Attack Lightning Damage", "Bonded: 40% increased Attack Damage while Shapeshifted", statOrder = { 885, 4387 }, + tradeHashes = { 2854751904 }, rank = { 0 }, }, }, @@ -1916,6 +2165,7 @@ return { "Gain 1 Rage on Melee Hit", "Bonded: 15% increased Warcry Cooldown Recovery Rate", statOrder = { 6431, 2929 }, + tradeHashes = { 2709367754 }, rank = { 0 }, }, ["sceptre"] = { @@ -1923,6 +2173,7 @@ return { "Allies in your Presence Regenerate 8 Life per second", "Bonded: 25% increased Life Regeneration rate while Shapeshifted", statOrder = { 896, 7037 }, + tradeHashes = { 4010677958 }, rank = { 0 }, }, }, @@ -1932,6 +2183,7 @@ return { "8% increased Area of Effect", "Bonded: 10% increased Reservation Efficiency of Companion Skills", statOrder = { 1557, 9178 }, + tradeHashes = { 280731498 }, rank = { 0 }, }, ["sceptre"] = { @@ -1939,6 +2191,7 @@ return { "Allies in your Presence deal 12 to 18 added Attack Physical Damage", "Bonded: 40% increased Attack Damage while Shapeshifted", statOrder = { 882, 4387 }, + tradeHashes = { 1574590649 }, rank = { 0 }, }, }, @@ -1948,6 +2201,7 @@ return { "10% increased Block chance", "Bonded: 10% chance for Damage of Enemies Hitting you to be Unlucky", statOrder = { 830, 5981 }, + tradeHashes = { 2481353198 }, rank = { 0 }, }, ["sceptre"] = { @@ -1955,6 +2209,7 @@ return { "Allies in your Presence have +8% to all Elemental Resistances", "Bonded: +20% of Armour also applies to Elemental Damage while Shapeshifted", statOrder = { 895, 9922 }, + tradeHashes = { 3850614073 }, rank = { 0 }, }, }, @@ -1964,6 +2219,7 @@ return { "5% increased Rarity of Items found", "Bonded: 5% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 916, 6476 }, + tradeHashes = { 3917489142 }, rank = { 0 }, }, ["sceptre"] = { @@ -1971,6 +2227,7 @@ return { "10% increased Spirit", "Bonded: Minions have 30% increased Cooldown Recovery Rate for Command Skills", statOrder = { 842, 8471 }, + tradeHashes = { 3984865854 }, rank = { 0 }, }, }, @@ -1980,6 +2237,7 @@ return { "+2% to Quality of all Skills", "Bonded: +4 to all Attributes", statOrder = { 4167, 946 }, + tradeHashes = { 3655769732 }, rank = { 0 }, }, ["sceptre"] = { @@ -1987,6 +2245,7 @@ return { "30% increased Presence Area of Effect", "Bonded: Minions have 20% increased Area of Effect", statOrder = { 1002, 2649 }, + tradeHashes = { 101878827 }, rank = { 0 }, }, }, diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index 0e85ad9182..e36901f51b 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -7394,263 +7394,272 @@ return { }, }, ["Corrupted"] = { - ["1001_ChanceToPierce"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["1004011302"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2321178454", - ["text"] = "#% chance to Pierce an Enemy", + ["id"] = "enchant.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", ["type"] = "enchant", }, }, - ["1087_AllDamage"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, + ["1011760251"] = { + ["Boots"] = { + ["max"] = 3, + ["min"] = 1, }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, + }, + ["101878827"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2154246560", - ["text"] = "#% increased Damage", + ["id"] = "enchant.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", ["type"] = "enchant", }, }, - ["1227_LocalChaosDamage"] = { + ["1037193709"] = { ["1HMace"] = { - ["max"] = 14.5, - ["min"] = 9.5, + ["max"] = 15.5, + ["min"] = 10.5, }, ["1HWeapon"] = { - ["max"] = 14.5, - ["min"] = 9.5, + ["max"] = 15.5, + ["min"] = 10.5, }, ["2HMace"] = { - ["max"] = 20.5, - ["min"] = 13.5, + ["max"] = 21.5, + ["min"] = 14.5, }, ["2HWeapon"] = { - ["max"] = 20.5, - ["min"] = 9.5, + ["max"] = 21.5, + ["min"] = 10.5, }, ["Bow"] = { - ["max"] = 14.5, - ["min"] = 9.5, + ["max"] = 15.5, + ["min"] = 10.5, }, ["Crossbow"] = { - ["max"] = 20.5, - ["min"] = 13.5, + ["max"] = 21.5, + ["min"] = 14.5, }, ["Flail"] = { - ["max"] = 14.5, - ["min"] = 9.5, + ["max"] = 15.5, + ["min"] = 10.5, }, ["Quarterstaff"] = { - ["max"] = 20.5, - ["min"] = 13.5, + ["max"] = 21.5, + ["min"] = 14.5, }, ["Spear"] = { - ["max"] = 14.5, - ["min"] = 9.5, + ["max"] = 15.5, + ["min"] = 10.5, }, ["Talisman"] = { - ["max"] = 20.5, - ["min"] = 13.5, + ["max"] = 21.5, + ["min"] = 14.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", + ["id"] = "enchant.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", ["type"] = "enchant", }, }, - ["1402_GlobalIncreasePhysicalSpellSkillGemLevel"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["1050105434"] = { + ["Focus"] = { + ["max"] = 25, + ["min"] = 20, }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, + ["Quiver"] = { + ["max"] = 25, + ["min"] = 20, }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, + ["Ring"] = { + ["max"] = 25, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1600707273", - ["text"] = "# to Level of all Physical Spell Skills", + ["id"] = "enchant.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["1445_GainLifeOnBlock"] = { - ["Shield"] = { + ["1062208444"] = { + ["Boots"] = { ["max"] = 25, - ["min"] = 20, + ["min"] = 15, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_762600725", - ["text"] = "# Life gained when you Block", - ["type"] = "enchant", + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, }, - }, - ["1446_GainManaOnBlock"] = { ["Shield"] = { - ["max"] = 15, - ["min"] = 10, + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2122183138", - ["text"] = "# Mana gained when you Block", + ["id"] = "enchant.stat_1062208444", + ["text"] = "#% increased Armour (Local)", ["type"] = "enchant", }, }, - ["1486_MaximumEnduranceCharges"] = { - ["Belt"] = { - ["max"] = 1, - ["min"] = 1, + ["1102738251"] = { + ["Amulet"] = { + ["max"] = 0.17, + ["min"] = 0.08, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1515657623", - ["text"] = "# to Maximum Endurance Charges", + ["id"] = "enchant.stat_1102738251", + ["text"] = "Life Flasks gain # charges per Second", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["1491_MaximumFrenzyCharges"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, + ["124859000"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_4078695", - ["text"] = "# to Maximum Frenzy Charges", - ["type"] = "enchant", + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, }, - ["usePositiveSign"] = true, - }, - ["1496_MaximumPowerCharges"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 25, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_227523295", - ["text"] = "# to Maximum Power Charges", + ["id"] = "enchant.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["1554_AreaOfEffect"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["1315743832"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["Shield"] = { + ["max"] = 50, + ["min"] = 40, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_280731498", - ["text"] = "#% increased Area of Effect", + ["id"] = "enchant.stat_1315743832", + ["text"] = "#% increased Thorns damage", ["type"] = "enchant", }, }, - ["1569_SkillEffectDuration"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["1316278494"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", + ["id"] = "enchant.stat_1316278494", + ["text"] = "#% increased Warcry Speed", ["type"] = "enchant", }, }, - ["1599_DamageGainedAsChaos"] = { - ["Helmet"] = { - ["max"] = 8, - ["min"] = 5, + ["1368271171"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Wand"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3398787959", - ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["id"] = "enchant.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", ["type"] = "enchant", }, }, - ["1617_LifeRegenerationRatePercentage"] = { + ["1436284579"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_836936635", - ["text"] = "Regenerate #% of maximum Life per second", + ["id"] = "enchant.stat_1436284579", + ["text"] = "Cannot be Blinded", ["type"] = "enchant", }, }, - ["1659_MaximumBlockChance"] = { - ["Shield"] = { - ["max"] = 3, - ["min"] = 3, + ["1444556985"] = { + ["Chest"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_480796730", - ["text"] = "#% to maximum Block chance", + ["id"] = "enchant.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["1937_BlindingHit"] = { - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 10, - ["min"] = 5, + ["1515657623"] = { + ["Belt"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2301191210", - ["text"] = "#% chance to Blind Enemies on hit", + ["id"] = "enchant.stat_1515657623", + ["text"] = "# to Maximum Endurance Charges", ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["2153_LocalChanceToBleed"] = { + ["1519615863"] = { ["1HMace"] = { ["max"] = 15, ["min"] = 10, @@ -7679,133 +7688,123 @@ return { ["type"] = "enchant", }, }, - ["2258_CurseEffectiveness"] = { - ["Helmet"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { + ["1545858329"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", - ["type"] = "enchant", - }, - }, - ["2599_ImmunityToBlind"] = { - ["AnyJewel"] = { + ["2HWeapon"] = { ["max"] = 1, ["min"] = 1, }, - ["BaseJewel"] = { + ["Staff"] = { ["max"] = 1, ["min"] = 1, }, - ["RadiusJewel"] = { + ["Wand"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1436284579", - ["text"] = "Cannot be Blinded", + ["id"] = "enchant.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skills", ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["2613_FireResistancePenetration"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 10, + ["1600707273"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", - ["type"] = "enchant", + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["2614_ColdResistancePenetration"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 10, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", + ["id"] = "enchant.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skills", ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["2615_LightningResistancePenetration"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["1658498488"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", + ["id"] = "enchant.stat_1658498488", + ["text"] = "Corrupted Blood cannot be inflicted on you", ["type"] = "enchant", }, }, - ["2875_WarcrySpeed"] = { - ["Helmet"] = { + ["1671376347"] = { + ["Belt"] = { ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1316278494", - ["text"] = "#% increased Warcry Speed", - ["type"] = "enchant", + ["min"] = 20, }, - }, - ["2878_IncreasedStunThreshold"] = { ["Boots"] = { - ["max"] = 30, + ["max"] = 25, ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_680068163", - ["text"] = "#% increased Stun Threshold", + ["id"] = "enchant.stat_1671376347", + ["text"] = "#% to Lightning Resistance", ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["2879_FreezeThreshold"] = { - ["Boots"] = { - ["max"] = 30, - ["min"] = 20, + ["1725749947"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3780644166", - ["text"] = "#% increased Freeze Threshold", - ["type"] = "enchant", + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - }, - ["4166_GlobalSkillGemLevel"] = { - ["Amulet"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Spear"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4283407333", - ["text"] = "# to Level of all Skills", + ["id"] = "enchant.stat_1725749947", + ["text"] = "Grants # Rage on Hit", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["4283_ArmourBreak"] = { + ["1776411443"] = { ["Gloves"] = { ["max"] = 15, ["min"] = 10, @@ -7818,77 +7817,37 @@ return { ["type"] = "enchant", }, }, - ["4509_GlobalCooldownRecovery"] = { - ["Helmet"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", - ["type"] = "enchant", - }, - }, - ["4552_SlowEffect"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3650992555", - ["text"] = "Debuffs you inflict have #% increased Slow Magnitude", - ["type"] = "enchant", - }, - }, - ["4608_SlowPotency"] = { - ["Boots"] = { - ["max"] = -20, - ["min"] = -30, + ["1782086450"] = { + ["Focus"] = { + ["max"] = 30, + ["min"] = 20, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["id"] = "enchant.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", ["type"] = "enchant", }, }, - ["4866_CorruptedBloodImmunity"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1658498488", - ["text"] = "Corrupted Blood cannot be inflicted on you", - ["type"] = "enchant", + ["1798257884"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - }, - ["5918_EnergyGeneration"] = { - ["Helmet"] = { + ["Sceptre"] = { ["max"] = 30, ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", + ["id"] = "enchant.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", ["type"] = "enchant", }, }, - ["6448_CharmChargeGeneration"] = { + ["185580205"] = { ["Amulet"] = { ["max"] = 0.17, ["min"] = 0.08, @@ -7901,413 +7860,331 @@ return { ["type"] = "enchant", }, }, - ["6451_LifeFlaskChargeGeneration"] = { + ["1978899297"] = { ["Amulet"] = { - ["max"] = 0.17, - ["min"] = 0.08, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1102738251", - ["text"] = "Life Flasks gain # charges per Second", - ["type"] = "enchant", + ["max"] = 1, + ["min"] = 1, }, - }, - ["6452_ManaFlaskChargeGeneration"] = { - ["Amulet"] = { - ["max"] = 0.17, - ["min"] = 0.08, + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2200293569", - ["text"] = "Mana Flasks gain # charges per Second", + ["id"] = "enchant.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["6476_GoldFoundIncrease"] = { - ["Gloves"] = { + ["1998951374"] = { + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Sceptre"] = { ["max"] = 10, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["id"] = "enchant.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", ["type"] = "enchant", }, }, - ["6752_ImmuneToMaim"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["1999113824"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3429557654", - ["text"] = "Immune to Maim", + ["id"] = "enchant.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", ["type"] = "enchant", }, }, - ["7131_LocalWeaponRangeIncrease"] = { + ["210067635"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 8, + ["min"] = 6, }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 8, + ["min"] = 6, }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 8, + ["min"] = 6, }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 8, + ["min"] = 6, + }, + ["Bow"] = { + ["max"] = 8, + ["min"] = 6, + }, + ["Crossbow"] = { + ["max"] = 8, + ["min"] = 6, }, ["Flail"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 8, + ["min"] = 6, }, ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 8, + ["min"] = 6, }, ["Spear"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 8, + ["min"] = 6, + }, + ["Talisman"] = { + ["max"] = 8, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_548198834", - ["text"] = "#% increased Melee Strike Range with this weapon", + ["id"] = "enchant.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "enchant", }, }, - ["7239_LocalRageOnHit"] = { - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Flail"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Quarterstaff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Spear"] = { - ["max"] = 1, - ["min"] = 1, + ["2106365538"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1725749947", - ["text"] = "Grants # Rage on Hit", + ["id"] = "enchant.stat_2106365538", + ["text"] = "#% increased Evasion Rating", ["type"] = "enchant", }, }, - ["7320_LocalChanceToMaim"] = { - ["2HWeapon"] = { + ["2122183138"] = { + ["Shield"] = { ["max"] = 15, ["min"] = 10, }, - ["Bow"] = { - ["max"] = 15, - ["min"] = 10, + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 15, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2122183138", + ["text"] = "# Mana gained when you Block", + ["type"] = "enchant", + }, + }, + ["2154246560"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2763429652", - ["text"] = "#% chance to Maim on Hit", + ["id"] = "enchant.stat_2154246560", + ["text"] = "#% increased Damage", ["type"] = "enchant", }, }, - ["7334_LocalChanceToPoisonOnHit"] = { - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, + ["2162097452"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "enchant.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", + ["type"] = "enchant", }, - ["Spear"] = { - ["max"] = 15, - ["min"] = 10, + ["usePositiveSign"] = true, + }, + ["2200293569"] = { + ["Amulet"] = { + ["max"] = 0.17, + ["min"] = 0.08, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3885634897", - ["text"] = "#% chance to Poison on Hit with this weapon", + ["id"] = "enchant.stat_2200293569", + ["text"] = "Mana Flasks gain # charges per Second", ["type"] = "enchant", }, }, - ["821_LocalPhysicalDamagePercent"] = { + ["2223678961"] = { ["1HMace"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 14.5, + ["min"] = 9.5, }, ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 14.5, + ["min"] = 9.5, }, ["2HMace"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 20.5, + ["min"] = 13.5, }, ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 20.5, + ["min"] = 9.5, }, ["Bow"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 14.5, + ["min"] = 9.5, }, ["Crossbow"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 20.5, + ["min"] = 13.5, }, ["Flail"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 14.5, + ["min"] = 9.5, }, ["Quarterstaff"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 20.5, + ["min"] = 13.5, }, ["Spear"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 14.5, + ["min"] = 9.5, }, ["Talisman"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 20.5, + ["min"] = 13.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "enchant.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", ["type"] = "enchant", }, }, - ["823_LocalFireDamage"] = { - ["1HMace"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["1HWeapon"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["2HMace"] = { - ["max"] = 25.5, - ["min"] = 17, - }, - ["2HWeapon"] = { - ["max"] = 25.5, - ["min"] = 12, + ["2250533757"] = { + ["Boots"] = { + ["max"] = 5, + ["min"] = 3, }, - ["Bow"] = { - ["max"] = 18, - ["min"] = 12, + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 25.5, - ["min"] = 17, + ["tradeMod"] = { + ["id"] = "enchant.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "enchant", }, - ["Flail"] = { - ["max"] = 18, - ["min"] = 12, + }, + ["2254480358"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Quarterstaff"] = { - ["max"] = 25.5, - ["min"] = 17, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Spear"] = { - ["max"] = 18, - ["min"] = 12, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Talisman"] = { - ["max"] = 25.5, - ["min"] = 17, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_709508406", - ["text"] = "Adds # to # Fire Damage", + ["id"] = "enchant.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skills", ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["824_LocalColdDamage"] = { - ["1HMace"] = { - ["max"] = 15.5, - ["min"] = 10.5, + ["227523295"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, }, - ["1HWeapon"] = { - ["max"] = 15.5, - ["min"] = 10.5, + ["specialCaseData"] = { }, - ["2HMace"] = { - ["max"] = 21.5, - ["min"] = 14.5, + ["tradeMod"] = { + ["id"] = "enchant.stat_227523295", + ["text"] = "# to Maximum Power Charges", + ["type"] = "enchant", }, + ["usePositiveSign"] = true, + }, + ["2301191210"] = { ["2HWeapon"] = { - ["max"] = 21.5, - ["min"] = 10.5, + ["max"] = 10, + ["min"] = 5, }, ["Bow"] = { - ["max"] = 15.5, - ["min"] = 10.5, + ["max"] = 10, + ["min"] = 5, }, ["Crossbow"] = { - ["max"] = 21.5, - ["min"] = 14.5, - }, - ["Flail"] = { - ["max"] = 15.5, - ["min"] = 10.5, - }, - ["Quarterstaff"] = { - ["max"] = 21.5, - ["min"] = 14.5, - }, - ["Spear"] = { - ["max"] = 15.5, - ["min"] = 10.5, - }, - ["Talisman"] = { - ["max"] = 21.5, - ["min"] = 14.5, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", + ["id"] = "enchant.stat_2301191210", + ["text"] = "#% chance to Blind Enemies on hit", ["type"] = "enchant", }, }, - ["825_LocalLightningDamage"] = { - ["1HMace"] = { - ["max"] = 22.5, - ["min"] = 15, - }, - ["1HWeapon"] = { - ["max"] = 22.5, - ["min"] = 15, - }, - ["2HMace"] = { - ["max"] = 32, - ["min"] = 21, - }, - ["2HWeapon"] = { - ["max"] = 32, - ["min"] = 15, - }, - ["Bow"] = { - ["max"] = 22.5, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 32, - ["min"] = 21, - }, - ["Flail"] = { - ["max"] = 22.5, - ["min"] = 15, - }, - ["Quarterstaff"] = { - ["max"] = 32, - ["min"] = 21, - }, - ["Spear"] = { - ["max"] = 22.5, - ["min"] = 15, - }, - ["Talisman"] = { - ["max"] = 32, - ["min"] = 21, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", - ["type"] = "enchant", - }, - }, - ["827_MovementVelocity"] = { - ["Boots"] = { - ["max"] = 5, - ["min"] = 3, + ["2321178454"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "enchant.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", ["type"] = "enchant", }, }, - ["828_IncreasedSkillSpeed"] = { - ["Quiver"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["Ring"] = { - ["max"] = 6, - ["min"] = 4, - }, + ["2353576063"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_970213192", - ["text"] = "#% increased Skill Speed", + ["id"] = "enchant.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", ["type"] = "enchant", }, }, - ["834_LocalPhysicalDamageReductionRatingPercent"] = { + ["2451402625"] = { ["Boots"] = { ["max"] = 25, ["min"] = 15, @@ -8331,376 +8208,314 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2866361420", - ["text"] = "#% increased Armour", + ["id"] = "enchant.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", ["type"] = "enchant", }, }, - ["835_LocalEvasionRatingIncreasePercent"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["2481353198"] = { ["Shield"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "enchant.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", ["type"] = "enchant", }, }, - ["836_LocalEnergyShieldPercent"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Chest"] = { + ["2482852589"] = { + ["Belt"] = { ["max"] = 25, ["min"] = 15, }, - ["Focus"] = { - ["max"] = 25, - ["min"] = 15, + ["specialCaseData"] = { }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "enchant.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", + ["type"] = "enchant", }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + }, + ["2557965901"] = { + ["Amulet"] = { + ["max"] = 3, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4015621042", - ["text"] = "#% increased Energy Shield", + ["id"] = "enchant.stat_2557965901", + ["text"] = "Leech #% of Physical Attack Damage as Life", ["type"] = "enchant", }, }, - ["837_LocalArmourAndEvasion"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, + ["2653955271"] = { ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Shield"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", + ["id"] = "enchant.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", ["type"] = "enchant", }, }, - ["838_LocalArmourAndEnergyShield"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, + ["2694482655"] = { + ["1HMace"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, + ["1HWeapon"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, + ["2HMace"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["2HWeapon"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Shield"] = { - ["max"] = 25, - ["min"] = 15, + ["Bow"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", + ["id"] = "enchant.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["839_LocalEvasionAndEnergyShield"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, + ["2763429652"] = { + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 10, }, - ["Gloves"] = { - ["max"] = 25, - ["min"] = 15, + ["Bow"] = { + ["max"] = 15, + ["min"] = 10, }, - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["Crossbow"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", + ["id"] = "enchant.stat_2763429652", + ["text"] = "#% chance to Maim on Hit", ["type"] = "enchant", }, }, - ["842_LocalIncreasedSpiritPercent"] = { - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 15, + ["280731498"] = { + ["specialCaseData"] = { }, - ["Sceptre"] = { + ["tradeMod"] = { + ["id"] = "enchant.stat_280731498", + ["text"] = "#% increased Area of Effect", + ["type"] = "enchant", + }, + }, + ["2866361420"] = { + ["Belt"] = { ["max"] = 25, ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3984865854", - ["text"] = "#% increased Spirit", + ["id"] = "enchant.stat_2866361420", + ["text"] = "#% increased Armour", ["type"] = "enchant", }, }, - ["853_WeaponSpellDamage"] = { + ["2891184298"] = { ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 15, + ["min"] = 10, }, ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 40, - }, - ["Focus"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 15, + ["min"] = 10, }, ["Staff"] = { - ["max"] = 60, - ["min"] = 40, + ["max"] = 15, + ["min"] = 10, }, ["Wand"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "enchant.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "enchant", }, }, - ["859_IncreasedWeaponElementalDamagePercent"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["289128254"] = { ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["2HMace"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["Bow"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Crossbow"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["Flail"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["Spear"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 10, + ["min"] = 5, }, - ["Talisman"] = { - ["max"] = 50, - ["min"] = 40, + ["Sceptre"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attacks", + ["id"] = "enchant.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", ["type"] = "enchant", }, }, - ["862_IncreasedAccuracy"] = { - ["Helmet"] = { - ["max"] = 100, - ["min"] = 50, + ["2901986750"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Quiver"] = { - ["max"] = 100, - ["min"] = 50, + ["Ring"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_803737631", - ["text"] = "# to Accuracy Rating", + ["id"] = "enchant.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["864_GlobalPhysicalDamageReductionRatingPercent"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2866361420", - ["text"] = "#% increased Armour", - ["type"] = "enchant", + ["2923486259"] = { + ["Chest"] = { + ["max"] = 19, + ["min"] = 13, }, - }, - ["866_GlobalEvasionRatingPercent"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 15, + ["Ring"] = { + ["max"] = 19, + ["min"] = 13, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "enchant.stat_2923486259", + ["text"] = "#% to Chaos Resistance", ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["868_GlobalEnergyShieldPercent"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { + ["293638271"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", - ["type"] = "enchant", + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - }, - ["869_IncreasedLife"] = { - ["Belt"] = { - ["max"] = 40, - ["min"] = 30, + ["Staff"] = { + ["max"] = 30, + ["min"] = 20, }, - ["Chest"] = { - ["max"] = 40, - ["min"] = 30, + ["Wand"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3299347043", - ["text"] = "# to maximum Life", + ["id"] = "enchant.stat_293638271", + ["text"] = "#% increased chance to Shock", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["871_IncreasedMana"] = { - ["Focus"] = { - ["max"] = 25, + ["2968503605"] = { + ["1HWeapon"] = { + ["max"] = 30, ["min"] = 20, }, - ["Quiver"] = { - ["max"] = 25, + ["2HWeapon"] = { + ["max"] = 30, ["min"] = 20, }, - ["Ring"] = { - ["max"] = 25, + ["Staff"] = { + ["max"] = 30, ["min"] = 20, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, - ["874_BaseSpirit"] = { - ["Helmet"] = { + ["Wand"] = { ["max"] = 30, ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3981240776", - ["text"] = "# to Spirit", + ["id"] = "enchant.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["881_AlliesInPresenceAllDamage"] = { + ["2974417149"] = { ["1HWeapon"] = { ["max"] = 30, ["min"] = 20, }, - ["Sceptre"] = { + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["Focus"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 40, + }, + ["Wand"] = { ["max"] = 30, ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", + ["id"] = "enchant.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "enchant", }, }, - ["892_AlliesInPresenceCriticalStrikeMultiplier"] = { + ["3057012405"] = { ["1HWeapon"] = { ["max"] = 15, ["min"] = 10, @@ -8717,58 +8532,59 @@ return { ["type"] = "enchant", }, }, - ["893_AlliesInPresenceIncreasedAttackSpeed"] = { - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["Sceptre"] = { + ["3175163625"] = { + ["Gloves"] = { ["max"] = 10, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1998951374", - ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["id"] = "enchant.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", ["type"] = "enchant", }, }, - ["894_AlliesInPresenceIncreasedCastSpeed"] = { - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["3233599707"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_289128254", - ["text"] = "Allies in your Presence have #% increased Cast Speed", + ["id"] = "enchant.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", ["type"] = "enchant", }, }, - ["8959_ChainFromTerrain"] = { - ["Quiver"] = { - ["max"] = 20, + ["3261801346"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 15, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4081947835", - ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["id"] = "enchant.stat_3261801346", + ["text"] = "# to Dexterity", ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["916_ItemFoundRarityIncrease"] = { + ["328541901"] = { ["Amulet"] = { ["max"] = 15, ["min"] = 10, }, + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, + }, ["Ring"] = { ["max"] = 15, ["min"] = 10, @@ -8776,62 +8592,184 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", + ["id"] = "enchant.stat_328541901", + ["text"] = "# to Intelligence", ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["918_LocalCriticalStrikeMultiplier"] = { - ["1HMace"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, + ["3299347043"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 30, }, - ["2HMace"] = { - ["max"] = 10, - ["min"] = 5, + ["Chest"] = { + ["max"] = 40, + ["min"] = 30, }, - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 5, + ["specialCaseData"] = { }, - ["Bow"] = { - ["max"] = 10, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "enchant", }, - ["Crossbow"] = { - ["max"] = 10, - ["min"] = 5, + ["usePositiveSign"] = true, + }, + ["3321629045"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", + ["type"] = "enchant", + }, + }, + ["3336890334"] = { + ["1HMace"] = { + ["max"] = 22.5, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 22.5, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 32, + ["min"] = 21, + }, + ["2HWeapon"] = { + ["max"] = 32, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 22.5, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 32, + ["min"] = 21, }, ["Flail"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 22.5, + ["min"] = 15, }, ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 32, + ["min"] = 21, }, ["Spear"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 22.5, + ["min"] = 15, }, ["Talisman"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 32, + ["min"] = 21, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", + ["id"] = "enchant.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", + ["type"] = "enchant", + }, + }, + ["3372524247"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Boots"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3372524247", + ["text"] = "#% to Fire Resistance", ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["921_LocalAttributeRequirements"] = { + ["3377888098"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", + ["type"] = "enchant", + }, + }, + ["3398787959"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", + ["type"] = "enchant", + }, + }, + ["3417711605"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", + ["type"] = "enchant", + }, + }, + ["3429557654"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3429557654", + ["text"] = "Immune to Maim", + ["type"] = "enchant", + }, + }, + ["3556824919"] = { + ["Quiver"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", + ["type"] = "enchant", + }, + }, + ["3639275092"] = { ["1HMace"] = { ["max"] = -10, ["min"] = -20, @@ -8917,181 +8855,152 @@ return { ["type"] = "enchant", }, }, - ["924_GlobalIncreaseFireSpellSkillGemLevel"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["3650992555"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_591105508", - ["text"] = "# to Level of all Fire Spell Skills", + ["id"] = "enchant.stat_3650992555", + ["text"] = "Debuffs you inflict have #% increased Slow Magnitude", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["925_GlobalIncreaseColdSpellSkillGemLevel"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 1, + ["3676141501"] = { + ["Helmet"] = { + ["max"] = 3, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2254480358", - ["text"] = "# to Level of all Cold Spell Skills", + ["id"] = "enchant.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["926_GlobalIncreaseLightningSpellSkillGemLevel"] = { + ["3695891184"] = { ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 25, + ["min"] = 20, }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1545858329", - ["text"] = "# to Level of all Lightning Spell Skills", - ["type"] = "enchant", - }, - ["usePositiveSign"] = true, - }, - ["927_GlobalIncreaseChaosSpellSkillGemLevel"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 25, + ["min"] = 20, }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["Quiver"] = { + ["max"] = 25, + ["min"] = 20, }, ["Staff"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 25, + ["min"] = 20, }, ["Wand"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 25, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4226189338", - ["text"] = "# to Level of all Chaos Spell Skills", + ["id"] = "enchant.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["928_GlobalIncreaseMeleeSkillGemLevel"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, + ["3771516363"] = { + ["Chest"] = { + ["max"] = 5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_9187492", - ["text"] = "# to Level of all Melee Skills", + ["id"] = "enchant.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["931_GlobalIncreaseMinionSpellSkillGemLevel"] = { - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, + ["3780644166"] = { + ["Boots"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2162097452", - ["text"] = "# to Level of all Minion Skills", + ["id"] = "enchant.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["935_SpellCriticalStrikeChance"] = { - ["1HWeapon"] = { + ["387439868"] = { + ["1HMace"] = { ["max"] = 30, ["min"] = 20, }, - ["2HWeapon"] = { + ["1HWeapon"] = { ["max"] = 30, ["min"] = 20, }, - ["Staff"] = { + ["2HMace"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["Bow"] = { ["max"] = 30, ["min"] = 20, }, - ["Wand"] = { + ["Crossbow"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["Flail"] = { ["max"] = 30, ["min"] = 20, }, + ["Quarterstaff"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["Spear"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Talisman"] = { + ["max"] = 50, + ["min"] = 40, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", + ["id"] = "enchant.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", ["type"] = "enchant", }, }, - ["937_CriticalStrikeMultiplier"] = { - ["Quiver"] = { - ["max"] = 20, - ["min"] = 15, + ["3885405204"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Ring"] = { - ["max"] = 20, - ["min"] = 15, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { - ["id"] = "enchant.stat_3556824919", - ["text"] = "#% increased Critical Damage Bonus", + ["id"] = "enchant.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "enchant", }, }, - ["942_IncreasedCastSpeed"] = { + ["3885634897"] = { ["1HWeapon"] = { ["max"] = 15, ["min"] = 10, @@ -9100,124 +9009,114 @@ return { ["max"] = 15, ["min"] = 10, }, - ["Staff"] = { + ["Quarterstaff"] = { ["max"] = 15, ["min"] = 10, }, - ["Wand"] = { + ["Spear"] = { ["max"] = 15, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "enchant.stat_3885634897", + ["text"] = "#% chance to Poison on Hit with this weapon", ["type"] = "enchant", }, }, - ["943_AdditionalAmmo"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["3917489142"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, }, - ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, + ["Ring"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1967051901", - ["text"] = "Loads an additional bolt", + ["id"] = "enchant.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", ["type"] = "enchant", }, }, - ["943_Strength"] = { - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["RadiusJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["3981240776"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4080418644", - ["text"] = "# to Strength", + ["id"] = "enchant.stat_3981240776", + ["text"] = "# to Spirit", ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["944_Dexterity"] = { - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["3984865854"] = { + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["Sceptre"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3261801346", - ["text"] = "# to Dexterity", + ["id"] = "enchant.stat_3984865854", + ["text"] = "#% increased Spirit", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["945_AdditionalArrows"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["4015621042"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 15, }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, + ["Chest"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Focus"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { - ["id"] = "enchant.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", + ["id"] = "enchant.stat_4015621042", + ["text"] = "#% increased Energy Shield", ["type"] = "enchant", }, }, - ["945_Intelligence"] = { - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["RadiusJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["4078695"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_328541901", - ["text"] = "# to Intelligence", + ["id"] = "enchant.stat_4078695", + ["text"] = "# to Maximum Frenzy Charges", ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["947_Strength"] = { + ["4080418644"] = { ["Amulet"] = { ["max"] = 15, ["min"] = 10, @@ -9239,432 +9138,362 @@ return { }, ["usePositiveSign"] = true, }, - ["948_Dexterity"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Ring"] = { - ["max"] = 15, + ["4081947835"] = { + ["Quiver"] = { + ["max"] = 20, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3261801346", - ["text"] = "# to Dexterity", + ["id"] = "enchant.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["949_Intelligence"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, + ["4095671657"] = { ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 10, + ["max"] = 3, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_328541901", - ["text"] = "# to Intelligence", + ["id"] = "enchant.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["951_ReducedPhysicalDamageTaken"] = { - ["Chest"] = { - ["max"] = 5, - ["min"] = 3, + ["4220027924"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Boots"] = { + ["max"] = 25, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", + ["id"] = "enchant.stat_4220027924", + ["text"] = "#% to Cold Resistance", ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["952_MaximumElementalResistance"] = { - ["Amulet"] = { + ["4226189338"] = { + ["1HWeapon"] = { ["max"] = 1, ["min"] = 1, }, - ["Chest"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", + ["id"] = "enchant.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skills", ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["953_MaximumFireResist"] = { - ["Belt"] = { - ["max"] = 3, - ["min"] = 1, - }, + ["4236566306"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", + ["id"] = "enchant.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["954_FireResistance"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["4283407333"] = { + ["Amulet"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["id"] = "enchant.stat_4283407333", + ["text"] = "# to Level of all Skills", ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["954_MaximumColdResist"] = { + ["44972811"] = { ["Helmet"] = { - ["max"] = 3, - ["min"] = 1, + ["max"] = 25, + ["min"] = 15, + }, + ["Ring"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3676141501", - ["text"] = "#% to Maximum Cold Resistance", + ["id"] = "enchant.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["955_ColdResistance"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["472520716"] = { + ["Chest"] = { + ["max"] = 20, + ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["specialCaseData"] = { }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "enchant.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", + ["type"] = "enchant", + }, + }, + ["473429811"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["id"] = "enchant.stat_473429811", + ["text"] = "#% increased Freeze Buildup", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["955_MaximumLightningResistance"] = { - ["Boots"] = { + ["480796730"] = { + ["Shield"] = { ["max"] = 3, - ["min"] = 1, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", + ["id"] = "enchant.stat_480796730", + ["text"] = "#% to maximum Block chance", ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["956_LightningResistance"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["548198834"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["2HMace"] = { + ["max"] = 20, + ["min"] = 10, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "enchant", + ["Flail"] = { + ["max"] = 20, + ["min"] = 10, }, - ["usePositiveSign"] = true, - }, - ["957_AllResistances"] = { - ["Amulet"] = { - ["max"] = 10, - ["min"] = 5, + ["Quarterstaff"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Ring"] = { - ["max"] = 10, - ["min"] = 5, + ["Spear"] = { + ["max"] = 20, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", + ["id"] = "enchant.stat_548198834", + ["text"] = "#% increased Melee Strike Range with this weapon", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["957_ChaosResistance"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["591105508"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2923486259", - ["text"] = "#% to Chaos Resistance", + ["id"] = "enchant.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skills", ["type"] = "enchant", }, ["usePositiveSign"] = true, }, - ["958_FireResistance"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 20, - }, + ["680068163"] = { ["Boots"] = { - ["max"] = 25, + ["max"] = 30, ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["id"] = "enchant.stat_680068163", + ["text"] = "#% increased Stun Threshold", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["959_ColdResistance"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Boots"] = { - ["max"] = 25, - ["min"] = 20, + ["707457662"] = { + ["Amulet"] = { + ["max"] = 2, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_4220027924", - ["text"] = "#% to Cold Resistance", + ["id"] = "enchant.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["960_LightningResistance"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 20, + ["709508406"] = { + ["1HMace"] = { + ["max"] = 18, + ["min"] = 12, }, - ["Boots"] = { - ["max"] = 25, - ["min"] = 20, + ["1HWeapon"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["2HMace"] = { + ["max"] = 25.5, + ["min"] = 17, + }, + ["2HWeapon"] = { + ["max"] = 25.5, + ["min"] = 12, + }, + ["Bow"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Crossbow"] = { + ["max"] = 25.5, + ["min"] = 17, + }, + ["Flail"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Quarterstaff"] = { + ["max"] = 25.5, + ["min"] = 17, + }, + ["Spear"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Talisman"] = { + ["max"] = 25.5, + ["min"] = 17, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["id"] = "enchant.stat_709508406", + ["text"] = "Adds # to # Fire Damage", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["961_ChaosResistance"] = { - ["Chest"] = { - ["max"] = 19, - ["min"] = 13, - }, - ["Ring"] = { - ["max"] = 19, - ["min"] = 13, - }, + ["721014846"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2923486259", - ["text"] = "#% to Chaos Resistance", + ["id"] = "enchant.stat_721014846", + ["text"] = "You cannot be Hindered", ["type"] = "enchant", }, - ["usePositiveSign"] = true, }, - ["9646_ThornsDamageIncrease"] = { - ["Chest"] = { - ["max"] = 50, - ["min"] = 40, + ["737908626"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["Shield"] = { - ["max"] = 50, - ["min"] = 40, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Staff"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1315743832", - ["text"] = "#% increased Thorns damage", + ["id"] = "enchant.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", ["type"] = "enchant", }, }, - ["967_EnergyShieldDelay"] = { - ["Focus"] = { - ["max"] = 30, + ["762600725"] = { + ["Shield"] = { + ["max"] = 25, ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", + ["id"] = "enchant.stat_762600725", + ["text"] = "# Life gained when you Block", ["type"] = "enchant", }, }, - ["969_LifeRegenerationRate"] = { + ["789117908"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 30, + ["min"] = 20, }, ["Ring"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", - ["type"] = "enchant", - }, - }, - ["970_DamageTakenGainedAsLife"] = { - ["Chest"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "enchant", - }, - }, - ["971_LifeLeechPermyriad"] = { - ["Amulet"] = { - ["max"] = 3, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_2557965901", - ["text"] = "Leech #% of Physical Attack Damage as Life", - ["type"] = "enchant", - }, - }, - ["975_LifeGainedFromEnemyDeath"] = { - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Quiver"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Staff"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Wand"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", - ["type"] = "enchant", - }, - }, - ["9764_YouCannotBeHindered"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_721014846", - ["text"] = "You cannot be Hindered", - ["type"] = "enchant", - }, - }, - ["976_ManaRegeneration"] = { - ["Helmet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, @@ -9674,62 +9503,7 @@ return { ["type"] = "enchant", }, }, - ["977_PercentDamageGoesToMana"] = { - ["Chest"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", - ["type"] = "enchant", - }, - }, - ["979_ManaLeechPermyriad"] = { - ["Amulet"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_707457662", - ["text"] = "Leech #% of Physical Attack Damage as Mana", - ["type"] = "enchant", - }, - }, - ["980_ManaGainedFromEnemyDeath"] = { - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Quiver"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Wand"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "enchant.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", - ["type"] = "enchant", - }, - }, - ["985_LocalStunDamageIncrease"] = { + ["791928121"] = { ["1HMace"] = { ["max"] = 30, ["min"] = 20, @@ -9766,100 +9540,88 @@ return { ["type"] = "enchant", }, }, - ["988_IgniteChanceIncrease"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Staff"] = { - ["max"] = 30, - ["min"] = 20, + ["803737631"] = { + ["Helmet"] = { + ["max"] = 100, + ["min"] = 50, }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 20, + ["Quiver"] = { + ["max"] = 100, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", + ["id"] = "enchant.stat_803737631", + ["text"] = "# to Accuracy Rating", ["type"] = "enchant", }, + ["usePositiveSign"] = true, }, - ["9897_WeaponSwapSpeed"] = { + ["818778753"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_3233599707", - ["text"] = "#% increased Weapon Swap Speed", + ["id"] = "enchant.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", ["type"] = "enchant", }, }, - ["990_FreezeDamageIncrease"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Staff"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 20, - }, + ["836936635"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_473429811", - ["text"] = "#% increased Freeze Buildup", + ["id"] = "enchant.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", ["type"] = "enchant", }, }, - ["992_ShockChanceIncrease"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["9187492"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["specialCaseData"] = { }, - ["Staff"] = { - ["max"] = 30, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "enchant.stat_9187492", + ["text"] = "# to Level of all Melee Skills", + ["type"] = "enchant", }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 20, + ["usePositiveSign"] = true, + }, + ["924253255"] = { + ["Boots"] = { + ["max"] = -20, + ["min"] = -30, }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_293638271", - ["text"] = "#% increased chance to Shock", + ["id"] = "enchant.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "enchant", }, }, - ["998_PresenceRadius"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, + ["970213192"] = { + ["Quiver"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "enchant.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", + ["id"] = "enchant.stat_970213192", + ["text"] = "#% increased Skill Speed", ["type"] = "enchant", }, }, @@ -9867,71 +9629,87 @@ return { ["Enchant"] = { }, ["Explicit"] = { - ["1000_ReducedPoisonDuration"] = { - ["Chest"] = { - ["max"] = -36, - ["min"] = -60, + ["1002362373"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3301100256", - ["text"] = "#% increased Poison Duration on you", + ["id"] = "explicit.stat_1002362373", + ["text"] = "#% increased Melee Damage", ["type"] = "explicit", }, }, - ["1001_ChanceToPierce"] = { + ["1004011302"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 5, + ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 5, + ["min"] = 3, }, - ["Quiver"] = { - ["max"] = 26, - ["min"] = 12, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2321178454", - ["text"] = "#% chance to Pierce an Enemy", + ["id"] = "explicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", ["type"] = "explicit", }, }, - ["1001_ChanceToPierceRadius"] = { + ["1011760251"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 1, + ["min"] = 1, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Shield"] = { + ["max"] = 3, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1800303440", - ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", + ["id"] = "explicit.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1002_PresenceRadius"] = { + ["101878827"] = { ["1HWeapon"] = { ["max"] = 80, ["min"] = 36, }, ["AnyJewel"] = { ["max"] = 25, - ["min"] = 15, + ["min"] = 8, }, ["BaseJewel"] = { ["max"] = 25, ["min"] = 15, }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, ["Sceptre"] = { ["max"] = 80, ["min"] = 36, @@ -9944,156 +9722,181 @@ return { ["type"] = "explicit", }, }, - ["1002_PresenceRadiusRadius"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["1037193709"] = { + ["1HMace"] = { + ["max"] = 102, + ["min"] = 2, }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["1HWeapon"] = { + ["max"] = 102, + ["min"] = 2, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 156.5, + ["min"] = 3, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4032352472", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 156.5, + ["min"] = 2, }, - }, - ["1003_LightRadiusAndAccuracy"] = { - ["Helmet"] = { - ["max"] = 15, - ["min"] = 5, + ["Bow"] = { + ["max"] = 102, + ["min"] = 2, + }, + ["Crossbow"] = { + ["max"] = 156.5, + ["min"] = 3, + }, + ["Flail"] = { + ["max"] = 102, + ["min"] = 2, + }, + ["Quarterstaff"] = { + ["max"] = 156.5, + ["min"] = 3, + }, + ["Spear"] = { + ["max"] = 102, + ["min"] = 2, + }, + ["Talisman"] = { + ["max"] = 156.5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1263695895", - ["text"] = "#% increased Light Radius", + ["id"] = "explicit.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", ["type"] = "explicit", }, }, - ["1003_LightRadiusAndManaRegeneration"] = { + ["1050105434"] = { ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 164, + ["min"] = 10, }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 328, + ["min"] = 20, + }, + ["Amulet"] = { + ["max"] = 189, + ["min"] = 10, + }, + ["Belt"] = { + ["max"] = 124, + ["min"] = 10, + }, + ["Boots"] = { + ["max"] = 124, + ["min"] = 10, + }, + ["Focus"] = { + ["max"] = 164, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 124, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 149, + ["min"] = 10, }, ["Ring"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 179, + ["min"] = 10, }, ["Sceptre"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 164, + ["min"] = 10, }, ["Staff"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 328, + ["min"] = 20, }, ["Wand"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 164, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1263695895", - ["text"] = "#% increased Light Radius", + ["id"] = "explicit.stat_1050105434", + ["text"] = "# to maximum Mana", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1003_LocalLightRadiusAndAccuracy"] = { - ["1HMace"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 15, - ["min"] = 5, + ["1060572482"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["Talisman"] = { - ["max"] = 15, - ["min"] = 5, + ["RadiusJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1263695895", - ["text"] = "#% increased Light Radius", + ["id"] = "explicit.stat_1060572482", + ["text"] = "#% increased Effect of Small Passive Skills in Radius", ["type"] = "explicit", }, }, - ["1004_FlaskChanceRechargeOnKill"] = { - ["specialCaseData"] = { + ["1062208444"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_828533480", - ["text"] = "#% Chance to gain a Charge when you kill an enemy", - ["type"] = "explicit", + ["Chest"] = { + ["max"] = 110, + ["min"] = 15, }, - }, - ["1005_FlaskIncreasedChargesAdded"] = { - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 100, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3196823591", - ["text"] = "#% increased Charges gained", - ["type"] = "explicit", + ["Helmet"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 15, }, - }, - ["1006_FlaskChargesUsed"] = { - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_388617051", - ["text"] = "#% increased Charges per use", + ["id"] = "explicit.stat_1062208444", + ["text"] = "#% increased Armour (Local)", ["type"] = "explicit", }, }, - ["1008_FlaskIncreasedMaxCharges"] = { + ["1062710370"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1366840608", - ["text"] = "#% increased Charges", + ["id"] = "explicit.stat_1062710370", + ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", ["type"] = "explicit", }, }, - ["1009_IgniteEffect"] = { + ["1104825894"] = { ["AnyJewel"] = { ["max"] = 15, ["min"] = 5, @@ -10105,111 +9908,118 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3791899485", - ["text"] = "#% increased Ignite Magnitude", + ["id"] = "explicit.stat_1104825894", + ["text"] = "#% faster Curse Activation", ["type"] = "explicit", }, }, - ["1009_IgniteEffectRadius"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["1120862500"] = { + ["Charm"] = { + ["max"] = 300, + ["min"] = 16, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_253641217", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", + ["id"] = "explicit.stat_1120862500", + ["text"] = "Recover # Mana when Used", ["type"] = "explicit", }, }, - ["1064_IncreasedBlockChance"] = { + ["1135928777"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 4, + ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 4, + ["min"] = 2, }, - ["specialCaseData"] = { + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4147897060", - ["text"] = "#% increased Block chance", + ["id"] = "explicit.stat_1135928777", + ["text"] = "#% increased Attack Speed with Crossbows", ["type"] = "explicit", }, }, - ["1064_IncreasedBlockChanceRadius"] = { + ["1165163804"] = { ["AnyJewel"] = { - ["max"] = 3, + ["max"] = 4, ["min"] = 1, }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, ["RadiusJewel"] = { - ["max"] = 3, + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3821543413", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", + ["id"] = "explicit.stat_1165163804", + ["text"] = "#% increased Attack Speed with Spears", ["type"] = "explicit", }, }, - ["1080_PercentageStrength"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_734614379", - ["text"] = "#% increased Strength", - ["type"] = "explicit", + ["1181419800"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 1, }, - }, - ["1081_PercentageDexterity"] = { - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4139681126", - ["text"] = "#% increased Dexterity", - ["type"] = "explicit", + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - }, - ["1082_PercentageIntelligence"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_656461285", - ["text"] = "#% increased Intelligence", + ["id"] = "explicit.stat_1181419800", + ["text"] = "#% increased Damage with Maces", ["type"] = "explicit", }, }, - ["1089_TotemDamageForJewel"] = { + ["1181501418"] = { ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3851254963", - ["text"] = "#% increased Totem Damage", + ["id"] = "explicit.stat_1181501418", + ["text"] = "# to Maximum Rage", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1089_TotemDamageForJewelRadius"] = { + ["1200678966"] = { ["AnyJewel"] = { - ["max"] = 3, + ["max"] = 6, ["min"] = 2, }, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, ["RadiusJewel"] = { ["max"] = 3, ["min"] = 2, @@ -10217,169 +10027,207 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2108821127", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", + ["id"] = "explicit.stat_1200678966", + ["text"] = "#% increased bonuses gained from Equipped Quiver", ["type"] = "explicit", }, }, - ["1093_AttackDamage"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["1202301673"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, }, - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 3, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2843214518", - ["text"] = "#% increased Attack Damage", - ["type"] = "explicit", + ["Bow"] = { + ["max"] = 5, + ["min"] = 1, }, - }, - ["1093_AttackDamageRadius"] = { - ["AnyJewel"] = { + ["Crossbow"] = { + ["max"] = 7, + ["min"] = 2, + }, + ["Quiver"] = { ["max"] = 2, ["min"] = 1, }, - ["RadiusJewel"] = { - ["max"] = 2, + ["Spear"] = { + ["max"] = 5, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1426522529", - ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", + ["id"] = "explicit.stat_1202301673", + ["text"] = "# to Level of all Projectile Skills", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1122_PhysicalDamagePercent"] = { + ["1238227257"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 10, + ["min"] = 3, }, ["BaseJewel"] = { - ["max"] = 15, + ["max"] = 10, ["min"] = 5, }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1310194496", - ["text"] = "#% increased Global Physical Damage", + ["id"] = "explicit.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", ["type"] = "explicit", }, }, - ["1122_PhysicalDamagePercentRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, + ["124131830"] = { + ["1HWeapon"] = { + ["max"] = 4, ["min"] = 1, }, - ["RadiusJewel"] = { + ["2HWeapon"] = { + ["max"] = 6, + ["min"] = 2, + }, + ["Amulet"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["Focus"] = { ["max"] = 2, ["min"] = 1, }, + ["Staff"] = { + ["max"] = 6, + ["min"] = 2, + }, + ["Wand"] = { + ["max"] = 4, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1417267954", - ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", + ["id"] = "explicit.stat_124131830", + ["text"] = "# to Level of all Spell Skills", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1124_MeleeDamage"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["1241625305"] = { + ["Quiver"] = { + ["max"] = 59, + ["min"] = 11, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1002362373", - ["text"] = "#% increased Melee Damage", + ["id"] = "explicit.stat_1241625305", + ["text"] = "#% increased Damage with Bow Skills", ["type"] = "explicit", }, }, - ["1124_MeleeDamageRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["124859000"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Chest"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1337740333", - ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", + ["id"] = "explicit.stat_124859000", + ["text"] = "#% increased Evasion Rating (Local)", ["type"] = "explicit", }, }, - ["1175_IncreasedStaffDamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["1250712710"] = { + ["1HWeapon"] = { + ["max"] = 38, + ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["Sceptre"] = { + ["max"] = 38, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4045894391", - ["text"] = "#% increased Damage with Quarterstaves", + ["id"] = "explicit.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", ["type"] = "explicit", }, }, - ["1175_IncreasedStaffDamageForJewelRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, + ["1301765461"] = { + ["Shield"] = { + ["max"] = 3, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_821948283", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", + ["id"] = "explicit.stat_1301765461", + ["text"] = "#% to Maximum Chaos Resistance", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1186_IncreasedMaceDamageForJewel"] = { + ["1303248024"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["max"] = 15, + ["min"] = 3, }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["max"] = 15, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1181419800", - ["text"] = "#% increased Damage with Maces", + ["id"] = "explicit.stat_1303248024", + ["text"] = "#% increased Magnitude of Ailments you inflict", ["type"] = "explicit", }, }, - ["1186_IncreasedMaceDamageForJewelRadius"] = { + ["1310194496"] = { ["AnyJewel"] = { - ["max"] = 2, + ["max"] = 15, ["min"] = 1, }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, ["RadiusJewel"] = { ["max"] = 2, ["min"] = 1, @@ -10387,162 +10235,171 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1852184471", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", + ["id"] = "explicit.stat_1310194496", + ["text"] = "#% increased Global Physical Damage", ["type"] = "explicit", }, }, - ["1190_IncreasedBowDamageForJewel"] = { + ["1315743832"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["max"] = 20, + ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["max"] = 20, + ["min"] = 10, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4188894176", - ["text"] = "#% increased Damage with Bows", + ["id"] = "explicit.stat_1315743832", + ["text"] = "#% increased Thorns damage", ["type"] = "explicit", }, }, - ["1190_IncreasedBowDamageForJewelRadius"] = { + ["1316278494"] = { ["AnyJewel"] = { - ["max"] = 3, + ["max"] = 20, ["min"] = 2, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_945774314", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", + ["id"] = "explicit.stat_1316278494", + ["text"] = "#% increased Warcry Speed", ["type"] = "explicit", }, }, - ["1204_SpearDamage"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, + ["1366840608"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2696027455", - ["text"] = "#% increased Damage with Spears", + ["id"] = "explicit.stat_1366840608", + ["text"] = "#% increased Charges", ["type"] = "explicit", }, }, - ["1204_SpearDamageRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["1368271171"] = { + ["1HMace"] = { + ["max"] = 45, + ["min"] = 2, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["1HWeapon"] = { + ["max"] = 45, + ["min"] = 2, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 45, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2809428780", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 45, + ["min"] = 2, }, - }, - ["1225_ChaosDamage"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 45, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_674553446", - ["text"] = "Adds # to # Chaos Damage to Attacks", - ["type"] = "explicit", + ["Crossbow"] = { + ["max"] = 45, + ["min"] = 2, }, - }, - ["1227_LocalChaosDamage"] = { - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 45, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", - ["type"] = "explicit", + ["Gloves"] = { + ["max"] = 45, + ["min"] = 2, }, - }, - ["1227_LocalChaosDamageTwoHand"] = { - ["specialCaseData"] = { + ["Quarterstaff"] = { + ["max"] = 45, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", - ["type"] = "explicit", + ["Quiver"] = { + ["max"] = 27, + ["min"] = 2, }, - }, - ["1256_StaffAttackSpeedForJewel"] = { - ["AnyJewel"] = { - ["max"] = 4, + ["Ring"] = { + ["max"] = 27, ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 4, + ["Spear"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Staff"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Talisman"] = { + ["max"] = 45, + ["min"] = 2, + }, + ["Wand"] = { + ["max"] = 45, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3283482523", - ["text"] = "#% increased Attack Speed with Quarterstaves", + ["id"] = "explicit.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", ["type"] = "explicit", }, }, - ["1256_StaffAttackSpeedForJewelRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["1379411836"] = { + ["Amulet"] = { + ["max"] = 24, + ["min"] = 2, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Ring"] = { + ["max"] = 13, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_111835965", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", + ["id"] = "explicit.stat_1379411836", + ["text"] = "# to all Attributes", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1260_BowAttackSpeedForJewel"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["1389153006"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3759735052", - ["text"] = "#% increased Attack Speed with Bows", + ["id"] = "explicit.stat_1389153006", + ["text"] = "#% increased Global Defences", ["type"] = "explicit", }, }, - ["1260_BowAttackSpeedForJewelRadius"] = { + ["1389754388"] = { ["AnyJewel"] = { - ["max"] = 2, + ["max"] = 15, ["min"] = 1, }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Belt"] = { + ["max"] = 33, + ["min"] = 4, + }, ["RadiusJewel"] = { ["max"] = 2, ["min"] = 1, @@ -10550,67 +10407,54 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3641543553", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", + ["id"] = "explicit.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", ["type"] = "explicit", }, }, - ["1263_SpearAttackSpeed"] = { + ["1405298142"] = { ["AnyJewel"] = { - ["max"] = 4, + ["max"] = 25, ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 4, + ["max"] = 25, + ["min"] = 15, + }, + ["RadiusJewel"] = { + ["max"] = 3, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1165163804", - ["text"] = "#% increased Attack Speed with Spears", + ["id"] = "explicit.stat_1405298142", + ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", ["type"] = "explicit", }, }, - ["1263_SpearAttackSpeedRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["1412217137"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1266413530", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", + ["id"] = "explicit.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", ["type"] = "explicit", }, }, - ["1268_IncreasedAccuracyPercent"] = { + ["1423639565"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 5, + ["min"] = 1, }, ["BaseJewel"] = { ["max"] = 10, ["min"] = 5, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_624954515", - ["text"] = "#% increased Accuracy Rating", - ["type"] = "explicit", - }, - }, - ["1268_IncreasedAccuracyPercentRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["RadiusJewel"] = { ["max"] = 2, ["min"] = 1, @@ -10618,90 +10462,101 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_533892981", - ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", + ["id"] = "explicit.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1277_BowIncreasedAccuracyRating"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_169946467", - ["text"] = "#% increased Accuracy Rating with Bows", - ["type"] = "explicit", + ["1444556985"] = { + ["Amulet"] = { + ["max"] = 24, + ["min"] = 10, }, - }, - ["1277_BowIncreasedAccuracyRatingRadius"] = { ["AnyJewel"] = { - ["max"] = 2, + ["max"] = 3, ["min"] = 1, }, + ["BaseJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["RadiusJewel"] = { - ["max"] = 2, + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1285594161", - ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", ["type"] = "explicit", }, }, - ["1328_SpearCriticalDamage"] = { + ["145497481"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 32, + ["min"] = 8, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 32, + ["min"] = 18, + }, + ["RadiusJewel"] = { + ["max"] = 15, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2456523742", - ["text"] = "#% increased Critical Damage Bonus with Spears", + ["id"] = "explicit.stat_145497481", + ["text"] = "#% increased Defences from Equipped Shield", ["type"] = "explicit", }, }, - ["1328_SpearCriticalDamageRadius"] = { + ["1459321413"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 5, + ["min"] = 3, }, - ["RadiusJewel"] = { + ["BaseJewel"] = { ["max"] = 10, ["min"] = 5, }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_138421180", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", ["type"] = "explicit", }, }, - ["1402_GlobalIncreasePhysicalSpellSkillGemLevel"] = { + ["153777645"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["RadiusJewel"] = { + ["max"] = 6, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1600707273", - ["text"] = "# to Level of all Physical Spell Skills", + ["id"] = "explicit.stat_153777645", + ["text"] = "#% increased Area of Effect of Curses", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1402_GlobalIncreasePhysicalSpellSkillGemLevelWeapon"] = { + ["1545858329"] = { ["1HWeapon"] = { ["max"] = 5, ["min"] = 1, @@ -10721,247 +10576,314 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1600707273", - ["text"] = "# to Level of all Physical Spell Skills", + ["id"] = "explicit.stat_1545858329", + ["text"] = "# to Level of all Lightning Spell Skills", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["1437_MaximumLifeOnKillPercent"] = { + ["1569101201"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 20, + ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 20, + ["min"] = 10, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2023107756", - ["text"] = "Recover #% of maximum Life on Kill", + ["id"] = "explicit.stat_1569101201", + ["text"] = "Empowered Attacks deal #% increased Damage", ["type"] = "explicit", }, }, - ["1437_MaximumLifeOnKillPercentRadius"] = { + ["1569159338"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 25, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2726713579", - ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", + ["id"] = "explicit.stat_1569159338", + ["text"] = "#% increased Parry Damage", ["type"] = "explicit", }, }, - ["1443_ManaGainedOnKillPercentage"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, + ["1570501432"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1030153674", - ["text"] = "Recover #% of maximum Mana on Kill", + ["id"] = "explicit.stat_1570501432", + ["text"] = "Leech Life #% faster", ["type"] = "explicit", }, }, - ["1443_ManaGainedOnKillPercentageRadius"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["1570770415"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_525523040", - ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", + ["id"] = "explicit.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", ["type"] = "explicit", }, }, - ["1446_GainManaOnBlock"] = { + ["1573130764"] = { + ["Gloves"] = { + ["max"] = 37, + ["min"] = 2, + }, + ["Quiver"] = { + ["max"] = 37, + ["min"] = 2, + }, + ["Ring"] = { + ["max"] = 37, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2122183138", - ["text"] = "# Mana gained when you Block", + ["id"] = "explicit.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", ["type"] = "explicit", }, }, - ["1459_IncreasedTotemLife"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["1574590649"] = { + ["1HWeapon"] = { + ["max"] = 25.5, + ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Sceptre"] = { + ["max"] = 25.5, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_686254215", - ["text"] = "#% increased Totem Life", + ["id"] = "explicit.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", ["type"] = "explicit", }, }, - ["1459_IncreasedTotemLifeRadius"] = { + ["1585769763"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 10, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_442393998", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", + ["id"] = "explicit.stat_1585769763", + ["text"] = "#% increased Blind Effect", ["type"] = "explicit", }, }, - ["1466_BaseCurseDuration"] = { + ["1589917703"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 15, + ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 15, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3824372849", - ["text"] = "#% increased Curse Duration", + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", ["type"] = "explicit", }, }, - ["1466_BaseCurseDurationRadius"] = { + ["1594812856"] = { ["AnyJewel"] = { - ["max"] = 4, + ["max"] = 20, ["min"] = 2, }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, ["RadiusJewel"] = { - ["max"] = 4, + ["max"] = 3, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1087108135", - ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", + ["id"] = "explicit.stat_1594812856", + ["text"] = "#% increased Damage with Warcries", ["type"] = "explicit", }, }, - ["1539_IncreasedChillDuration"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["1600707273"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3485067555", - ["text"] = "#% increased Chill Duration on Enemies", + ["id"] = "explicit.stat_1600707273", + ["text"] = "# to Level of all Physical Spell Skills", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1539_IncreasedChillDurationRadius"] = { + ["1604736568"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["max"] = 2, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_61644361", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", + ["id"] = "explicit.stat_1604736568", + ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", ["type"] = "explicit", }, }, - ["1540_ShockDuration"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["1671376347"] = { + ["Amulet"] = { + ["max"] = 45, + ["min"] = 6, }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["Belt"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 45, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3668351662", - ["text"] = "#% increased Shock Duration", + ["id"] = "explicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1540_ShockDurationRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["1692879867"] = { + ["Chest"] = { + ["max"] = -36, + ["min"] = -60, }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3513818125", - ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", + ["id"] = "explicit.stat_1692879867", + ["text"] = "#% increased Duration of Bleeding on You", ["type"] = "explicit", }, }, - ["1557_AreaOfEffect"] = { + ["1697447343"] = { ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["max"] = 20, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["max"] = 20, + ["min"] = 10, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_280731498", - ["text"] = "#% increased Area of Effect", + ["id"] = "explicit.stat_1697447343", + ["text"] = "#% increased Freeze Buildup with Quarterstaves", ["type"] = "explicit", }, }, - ["1557_AreaOfEffectRadius"] = { + ["1697951953"] = { ["AnyJewel"] = { - ["max"] = 3, + ["max"] = 20, ["min"] = 2, }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, ["RadiusJewel"] = { ["max"] = 3, ["min"] = 2, @@ -10969,110 +10891,139 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3391917254", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", + ["id"] = "explicit.stat_1697951953", + ["text"] = "#% increased Hazard Damage", ["type"] = "explicit", }, }, - ["1572_SkillEffectDuration"] = { + ["169946467"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 15, + ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 5, }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", + ["id"] = "explicit.stat_169946467", + ["text"] = "#% increased Accuracy Rating with Bows", ["type"] = "explicit", }, }, - ["1572_SkillEffectDurationRadius"] = { + ["1714971114"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 15, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3113764475", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", + ["id"] = "explicit.stat_1714971114", + ["text"] = "Mark Skills have #% increased Use Speed", ["type"] = "explicit", }, }, - ["1601_DamageasExtraPhysical"] = { + ["1718147982"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4019237939", - ["text"] = "Gain #% of Damage as Extra Physical Damage", + ["id"] = "explicit.stat_1718147982", + ["text"] = "#% increased Minion Accuracy Rating", ["type"] = "explicit", }, }, - ["1646_MinionDamage"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["173226756"] = { + ["LifeFlask"] = { + ["max"] = 70, + ["min"] = 41, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["ManaFlask"] = { + ["max"] = 70, + ["min"] = 41, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["id"] = "explicit.stat_173226756", + ["text"] = "#% increased Recovery rate", ["type"] = "explicit", }, }, - ["1646_MinionDamageRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["1742651309"] = { + ["specialCaseData"] = { }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["tradeMod"] = { + ["id"] = "explicit.stat_1742651309", + ["text"] = "#% of Fire Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["1754445556"] = { + ["Gloves"] = { + ["max"] = 37.5, + ["min"] = 2.5, + }, + ["Quiver"] = { + ["max"] = 37.5, + ["min"] = 2.5, + }, + ["Ring"] = { + ["max"] = 37.5, + ["min"] = 2.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2954360902", - ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", + ["id"] = "explicit.stat_1754445556", + ["text"] = "Adds # to # Lightning damage to Attacks", ["type"] = "explicit", }, }, - ["1651_ElementalDamagePercent"] = { + ["1772247089"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 3, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3141070085", - ["text"] = "#% increased Elemental Damage", + ["id"] = "explicit.stat_1772247089", + ["text"] = "#% increased chance to inflict Ailments", ["type"] = "explicit", }, }, - ["1651_ElementalDamagePercentRadius"] = { + ["1776411443"] = { ["AnyJewel"] = { - ["max"] = 2, + ["max"] = 15, ["min"] = 1, }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, ["RadiusJewel"] = { ["max"] = 2, ["min"] = 1, @@ -11080,110 +11031,154 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3222402650", - ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", + ["id"] = "explicit.stat_1776411443", + ["text"] = "Break #% increased Armour", ["type"] = "explicit", }, }, - ["1663_ProjectileDamage"] = { + ["1782086450"] = { ["AnyJewel"] = { ["max"] = 15, ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 55, + ["min"] = 26, + }, + ["Focus"] = { + ["max"] = 55, + ["min"] = 26, + }, + ["RadiusJewel"] = { + ["max"] = 7, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", + ["id"] = "explicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", ["type"] = "explicit", }, }, - ["1663_ProjectileDamageRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["1798257884"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Sceptre"] = { + ["max"] = 119, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_455816363", - ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", + ["id"] = "explicit.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", ["type"] = "explicit", }, }, - ["1669_KnockbackDistance"] = { + ["1805182458"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 20, + ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 20, + ["min"] = 10, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_565784293", - ["text"] = "#% increased Knockback Distance", + ["id"] = "explicit.stat_1805182458", + ["text"] = "Companions have #% increased maximum Life", ["type"] = "explicit", }, }, - ["1669_KnockbackDistanceRadius"] = { + ["1829102168"] = { ["AnyJewel"] = { - ["max"] = 7, + ["max"] = 10, ["min"] = 3, }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["RadiusJewel"] = { - ["max"] = 7, + ["max"] = 5, ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2976476845", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", + ["id"] = "explicit.stat_1829102168", + ["text"] = "#% increased Duration of Damaging Ailments on Enemies", ["type"] = "explicit", }, }, - ["1706_AttackAndCastSpeed"] = { + ["1836676211"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2672805335", - ["text"] = "#% increased Attack and Cast Speed", + ["id"] = "explicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", ["type"] = "explicit", }, }, - ["1719_GlobalFlaskLifeRecovery"] = { + ["1839076647"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 1, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", ["type"] = "explicit", }, }, - ["1719_GlobalFlaskLifeRecoveryRadius"] = { + ["1852872083"] = { ["AnyJewel"] = { - ["max"] = 3, + ["max"] = 20, ["min"] = 2, }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, ["RadiusJewel"] = { ["max"] = 3, ["min"] = 2, @@ -11191,332 +11186,390 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_980177976", - ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", + ["id"] = "explicit.stat_1852872083", + ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", ["type"] = "explicit", }, }, - ["1720_FlaskManaRecovery"] = { + ["1854213750"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 25, + ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 25, + ["min"] = 15, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2222186378", - ["text"] = "#% increased Mana Recovery from Flasks", + ["id"] = "explicit.stat_1854213750", + ["text"] = "Minions have #% increased Critical Damage Bonus", ["type"] = "explicit", }, }, - ["1720_FlaskManaRecoveryRadius"] = { + ["1869147066"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 20, + ["min"] = 8, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 15, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 12, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3774951878", - ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", + ["id"] = "explicit.stat_1869147066", + ["text"] = "#% increased Glory generation for Banner Skills", ["type"] = "explicit", }, }, - ["1820_LifeLeechAmount"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["1873752457"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2112395885", - ["text"] = "#% increased amount of Life Leeched", + ["id"] = "explicit.stat_1873752457", + ["text"] = "Gains # Charges per Second", ["type"] = "explicit", }, }, - ["1820_LifeLeechAmountRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["1874553720"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 36, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3666476747", - ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", + ["id"] = "explicit.stat_1874553720", + ["text"] = "#% reduced Chill Duration on you", ["type"] = "explicit", }, }, - ["1821_IncreasedLifeLeechRate"] = { + ["1881230714"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1570501432", - ["text"] = "Leech Life #% faster", + ["id"] = "explicit.stat_1881230714", + ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", ["type"] = "explicit", }, }, - ["1822_ManaLeechAmount"] = { + ["1911237468"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 25, + ["min"] = 8, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 25, + ["min"] = 15, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2839066308", - ["text"] = "#% increased amount of Mana Leeched", + ["id"] = "explicit.stat_1911237468", + ["text"] = "#% increased Stun Threshold while Parrying", ["type"] = "explicit", }, }, - ["1822_ManaLeechAmountRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["1940865751"] = { + ["1HMace"] = { + ["max"] = 52.5, + ["min"] = 2.5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["1HWeapon"] = { + ["max"] = 52.5, + ["min"] = 2.5, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 74.5, + ["min"] = 3.5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3700202631", - ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 74.5, + ["min"] = 2.5, }, - }, - ["1871_MarkCastSpeed"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Bow"] = { + ["max"] = 52.5, + ["min"] = 2.5, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Crossbow"] = { + ["max"] = 74.5, + ["min"] = 3.5, + }, + ["Flail"] = { + ["max"] = 52.5, + ["min"] = 2.5, + }, + ["Quarterstaff"] = { + ["max"] = 74.5, + ["min"] = 3.5, + }, + ["Spear"] = { + ["max"] = 52.5, + ["min"] = 2.5, + }, + ["Talisman"] = { + ["max"] = 74.5, + ["min"] = 3.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1714971114", - ["text"] = "Mark Skills have #% increased Use Speed", + ["id"] = "explicit.stat_1940865751", + ["text"] = "Adds # to # Physical Damage", ["type"] = "explicit", }, }, - ["1871_MarkCastSpeedRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["1978899297"] = { + ["Shield"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2202308025", - ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", + ["id"] = "explicit.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["1875_CurseAreaOfEffect"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["1998951374"] = { + ["1HWeapon"] = { + ["max"] = 16, + ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["Sceptre"] = { + ["max"] = 16, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_153777645", - ["text"] = "#% increased Area of Effect of Curses", + ["id"] = "explicit.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", ["type"] = "explicit", }, }, - ["1875_CurseAreaOfEffectRadius"] = { - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 3, + ["1999113824"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 6, - ["min"] = 3, + ["Chest"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 101, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3859848445", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", + ["id"] = "explicit.stat_1999113824", + ["text"] = "#% increased Evasion and Energy Shield", ["type"] = "explicit", }, }, - ["1946_MinionPhysicalDamageReduction"] = { + ["2011656677"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["max"] = 10, + ["min"] = 3, }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3119612865", - ["text"] = "Minions have #% additional Physical Damage Reduction", + ["id"] = "explicit.stat_2011656677", + ["text"] = "#% increased Poison Duration", ["type"] = "explicit", }, }, - ["1946_MinionPhysicalDamageReductionRadius"] = { + ["2023107756"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, }, - ["RadiusJewel"] = { + ["BaseJewel"] = { ["max"] = 2, ["min"] = 1, }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_30438393", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", + ["id"] = "explicit.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", ["type"] = "explicit", }, }, - ["2124_PhysicalDamageTakenAsChaos"] = { + ["2081918629"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4129825612", - ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["id"] = "explicit.stat_2081918629", + ["text"] = "#% increased effect of Socketed Items", ["type"] = "explicit", }, }, - ["2250_SummonTotemCastSpeed"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["210067635"] = { + ["1HMace"] = { + ["max"] = 28, + ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["1HWeapon"] = { + ["max"] = 28, + ["min"] = 5, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 28, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3374165039", - ["text"] = "#% increased Totem Placement speed", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 28, + ["min"] = 5, }, - }, - ["2250_SummonTotemCastSpeedRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Bow"] = { + ["max"] = 19, + ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Crossbow"] = { + ["max"] = 19, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 28, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1145481685", - ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", - ["type"] = "explicit", + ["Quarterstaff"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 28, + ["min"] = 5, }, - }, - ["2266_CurseEffectiveness"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", ["type"] = "explicit", }, }, - ["2266_CurseEffectivenessForJewel"] = { + ["2106365538"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 4, + ["max"] = 20, ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 4, + ["max"] = 20, + ["min"] = 10, + }, + ["RadiusJewel"] = { + ["max"] = 3, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", ["type"] = "explicit", }, }, - ["2266_CurseEffectivenessForJewelRadius"] = { + ["21071013"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 25, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2770044702", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", + ["id"] = "explicit.stat_21071013", + ["text"] = "Herald Skills deal #% increased Damage", ["type"] = "explicit", }, }, - ["2268_MarkEffect"] = { + ["2112395885"] = { ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 4, + ["max"] = 15, + ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, + ["max"] = 15, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_712554801", - ["text"] = "#% increased Effect of your Mark Skills", + ["id"] = "explicit.stat_2112395885", + ["text"] = "#% increased amount of Life Leeched", ["type"] = "explicit", }, }, - ["2268_MarkEffectRadius"] = { + ["2118708619"] = { ["AnyJewel"] = { - ["max"] = 3, + ["max"] = 20, ["min"] = 2, }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, ["RadiusJewel"] = { ["max"] = 3, ["min"] = 2, @@ -11524,140 +11577,128 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_179541474", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", + ["id"] = "explicit.stat_2118708619", + ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", ["type"] = "explicit", }, }, - ["2362_DamageRemovedFromManaBeforeLife"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["2122183138"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", + ["id"] = "explicit.stat_2122183138", + ["text"] = "# Mana gained when you Block", ["type"] = "explicit", }, }, - ["2362_DamageRemovedFromManaBeforeLifeRadius"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2709646369", - ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", - ["type"] = "explicit", + ["2144192055"] = { + ["Ring"] = { + ["max"] = 203, + ["min"] = 8, }, - }, - ["2472_AuraEffectForJewel"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_315791320", - ["text"] = "Aura Skills have #% increased Magnitudes", + ["id"] = "explicit.stat_2144192055", + ["text"] = "# to Evasion Rating", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["2472_AuraEffectForJewelRadius"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3243034867", - ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", - ["type"] = "explicit", + ["2160282525"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 36, }, - }, - ["2472_EssenceAuraEffect"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_315791320", - ["text"] = "Aura Skills have #% increased Magnitudes", + ["id"] = "explicit.stat_2160282525", + ["text"] = "#% reduced Freeze Duration on you", ["type"] = "explicit", }, }, - ["2486_AllDefences"] = { - ["specialCaseData"] = { + ["2162097452"] = { + ["1HWeapon"] = { + ["max"] = 4, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1389153006", - ["text"] = "#% increased Global Defences", - ["type"] = "explicit", + ["Amulet"] = { + ["max"] = 3, + ["min"] = 1, }, - }, - ["2558_MinionElementalResistance"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Helmet"] = { + ["max"] = 2, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Sceptre"] = { + ["max"] = 4, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1423639565", - ["text"] = "Minions have #% to all Elemental Resistances", + ["id"] = "explicit.stat_2162097452", + ["text"] = "# to Level of all Minion Skills", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["2558_MinionElementalResistanceRadius"] = { + ["2174054121"] = { ["AnyJewel"] = { - ["max"] = 2, + ["max"] = 7, ["min"] = 1, }, + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["RadiusJewel"] = { - ["max"] = 2, + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3225608889", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", + ["id"] = "explicit.stat_2174054121", + ["text"] = "#% chance to inflict Bleeding on Hit", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["2559_MinionChaosResistance"] = { + ["2194114101"] = { ["AnyJewel"] = { - ["max"] = 13, - ["min"] = 7, + ["max"] = 16, + ["min"] = 3, }, ["BaseJewel"] = { - ["max"] = 13, - ["min"] = 7, + ["max"] = 16, + ["min"] = 6, + }, + ["Quiver"] = { + ["max"] = 38, + ["min"] = 10, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3837707023", - ["text"] = "Minions have #% to Chaos Resistance", + ["id"] = "explicit.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["2559_MinionChaosResistanceRadius"] = { + ["2222186378"] = { ["AnyJewel"] = { - ["max"] = 2, + ["max"] = 15, ["min"] = 1, }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, ["RadiusJewel"] = { ["max"] = 2, ["min"] = 1, @@ -11665,349 +11706,445 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1756380435", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", + ["id"] = "explicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["2613_FireResistancePenetration"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["2223678961"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", + ["id"] = "explicit.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", ["type"] = "explicit", }, }, - ["2613_FireResistancePenetrationRadius"] = { + ["2231156303"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, + }, ["AnyJewel"] = { - ["max"] = 2, + ["max"] = 15, ["min"] = 1, }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, + }, ["RadiusJewel"] = { ["max"] = 2, ["min"] = 1, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1432756708", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", - ["type"] = "explicit", + ["Ring"] = { + ["max"] = 30, + ["min"] = 3, }, - }, - ["2614_ColdResistancePenetration"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3417711605", - ["text"] = "Damage Penetrates #% Cold Resistance", + ["id"] = "explicit.stat_2231156303", + ["text"] = "#% increased Lightning Damage", ["type"] = "explicit", }, }, - ["2614_ColdResistancePenetrationRadius"] = { + ["2250533757"] = { ["AnyJewel"] = { ["max"] = 2, ["min"] = 1, }, - ["RadiusJewel"] = { + ["BaseJewel"] = { ["max"] = 2, ["min"] = 1, }, + ["Boots"] = { + ["max"] = 35, + ["min"] = 10, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1896066427", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", + ["id"] = "explicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", ["type"] = "explicit", }, }, - ["2615_LightningResistancePenetration"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["2254480358"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_818778753", - ["text"] = "Damage Penetrates #% Lightning Resistance", + ["id"] = "explicit.stat_2254480358", + ["text"] = "# to Level of all Cold Spell Skills", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["2615_LightningResistancePenetrationRadius"] = { + ["2301718443"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 25, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_868556494", - ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", + ["id"] = "explicit.stat_2301718443", + ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", ["type"] = "explicit", }, }, - ["2649_MinionAreaOfEffect"] = { + ["2321178454"] = { ["AnyJewel"] = { - ["max"] = 8, + ["max"] = 20, ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 8, + ["max"] = 20, + ["min"] = 10, + }, + ["Quiver"] = { + ["max"] = 26, + ["min"] = 12, + }, + ["RadiusJewel"] = { + ["max"] = 10, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3811191316", - ["text"] = "Minions have #% increased Area of Effect", + ["id"] = "explicit.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", ["type"] = "explicit", }, }, - ["2649_MinionAreaOfEffectRadius"] = { + ["2339757871"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 20, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["Boots"] = { + ["max"] = 45, + ["min"] = 26, + }, + ["Focus"] = { + ["max"] = 55, + ["min"] = 26, + }, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 26, + }, + ["Helmet"] = { + ["max"] = 45, + ["min"] = 26, }, ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 3, + ["min"] = 2, + }, + ["Shield"] = { + ["max"] = 55, + ["min"] = 26, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2534359663", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", + ["id"] = "explicit.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", ["type"] = "explicit", }, }, - ["2786_PoisonDuration"] = { + ["234296660"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 20, + ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 20, + ["min"] = 10, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", + ["id"] = "explicit.stat_234296660", + ["text"] = "Companions deal #% increased Damage", ["type"] = "explicit", }, }, - ["2786_PoisonDurationChaosDamage"] = { + ["2347036682"] = { + ["1HWeapon"] = { + ["max"] = 30.5, + ["min"] = 2, + }, + ["Sceptre"] = { + ["max"] = 30.5, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2011656677", - ["text"] = "#% increased Poison Duration", + ["id"] = "explicit.stat_2347036682", + ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", ["type"] = "explicit", }, }, - ["2786_PoisonDurationRadius"] = { + ["2353576063"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 4, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_221701169", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", + ["id"] = "explicit.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", ["type"] = "explicit", }, }, - ["2789_BaseChanceToPoison"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["2365392475"] = { + ["Charm"] = { + ["max"] = 350, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_795138349", - ["text"] = "#% chance to Poison on Hit", + ["id"] = "explicit.stat_2365392475", + ["text"] = "Recover # Life when Used", ["type"] = "explicit", }, }, - ["2789_BaseChanceToPoisonRadius"] = { + ["239367161"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 20, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2840989393", - ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", + ["id"] = "explicit.stat_239367161", + ["text"] = "#% increased Stun Buildup", ["type"] = "explicit", }, }, - ["2821_DamageVsRareOrUnique"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["2416869319"] = { + ["LifeFlask"] = { + ["max"] = 80, + ["min"] = 51, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1852872083", - ["text"] = "#% increased Damage with Hits against Rare and Unique Enemies", + ["id"] = "explicit.stat_2416869319", + ["text"] = "Grants #% of Life Recovery to Minions", ["type"] = "explicit", }, }, - ["2821_DamageVsRareOrUniqueRadius"] = { + ["2440073079"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 15, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_147764878", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", + ["id"] = "explicit.stat_2440073079", + ["text"] = "#% increased Damage while Shapeshifted", ["type"] = "explicit", }, }, - ["2878_IncreasedStunThreshold"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["2451402625"] = { + ["Boots"] = { + ["max"] = 100, + ["min"] = 15, }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["Chest"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", + ["id"] = "explicit.stat_2451402625", + ["text"] = "#% increased Armour and Evasion", ["type"] = "explicit", }, }, - ["2878_IncreasedStunThresholdRadius"] = { + ["2456523742"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 20, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_484792219", - ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", + ["id"] = "explicit.stat_2456523742", + ["text"] = "#% increased Critical Damage Bonus with Spears", ["type"] = "explicit", }, }, - ["2879_FreezeThreshold"] = { - ["AnyJewel"] = { - ["max"] = 32, - ["min"] = 18, + ["2463230181"] = { + ["2HWeapon"] = { + ["max"] = 200, + ["min"] = 25, }, - ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, + ["Bow"] = { + ["max"] = 200, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3780644166", - ["text"] = "#% increased Freeze Threshold", + ["id"] = "explicit.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["2879_FreezeThresholdRadius"] = { + ["2480498143"] = { ["AnyJewel"] = { - ["max"] = 4, + ["max"] = 6, ["min"] = 2, }, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, ["RadiusJewel"] = { - ["max"] = 4, + ["max"] = 3, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_830345042", - ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", + ["id"] = "explicit.stat_2480498143", + ["text"] = "#% of Skill Mana Costs Converted to Life Costs", ["type"] = "explicit", }, }, - ["2884_WarcrySpeed"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["2481353198"] = { + ["Shield"] = { + ["max"] = 30, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1316278494", - ["text"] = "#% increased Warcry Speed", + ["id"] = "explicit.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", ["type"] = "explicit", }, }, - ["2884_WarcrySpeedRadius"] = { + ["2482852589"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 3, + ["max"] = 20, ["min"] = 2, }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, ["RadiusJewel"] = { ["max"] = 3, ["min"] = 2, @@ -12015,33 +12152,20 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1602294220", - ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", + ["id"] = "explicit.stat_2482852589", + ["text"] = "#% increased maximum Energy Shield", ["type"] = "explicit", }, }, - ["2929_WarcryCooldownSpeed"] = { + ["2487305362"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 3, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4159248054", - ["text"] = "#% increased Warcry Cooldown Recovery Rate", - ["type"] = "explicit", - }, - }, - ["2929_WarcryCooldownSpeedRadius"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["RadiusJewel"] = { ["max"] = 7, ["min"] = 3, @@ -12049,212 +12173,196 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2056107438", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", + ["id"] = "explicit.stat_2487305362", + ["text"] = "#% increased Magnitude of Poison you inflict", ["type"] = "explicit", }, }, - ["2967_CannotBePoisoned"] = { + ["2503377690"] = { + ["LifeFlask"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["ManaFlask"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3835551335", - ["text"] = "Cannot be Poisoned", + ["id"] = "explicit.stat_2503377690", + ["text"] = "#% of Recovery applied Instantly", ["type"] = "explicit", }, }, - ["3802_DamageIfConsumedCorpse"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["2505884597"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 13, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 13, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2118708619", - ["text"] = "#% increased Damage if you have Consumed a Corpse Recently", + ["id"] = "explicit.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", ["type"] = "explicit", }, }, - ["3802_DamageIfConsumedCorpseRadius"] = { + ["2518900926"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 15, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1892122971", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", + ["id"] = "explicit.stat_2518900926", + ["text"] = "#% increased Damage with Plant Skills", ["type"] = "explicit", }, }, - ["3849_CrossbowDamage"] = { + ["2527686725"] = { ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_427684353", - ["text"] = "#% increased Damage with Crossbows", - ["type"] = "explicit", - }, - }, - ["3849_CrossbowDamageRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 15, + ["min"] = 10, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 7, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_517664839", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", + ["id"] = "explicit.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", ["type"] = "explicit", }, }, - ["3853_CrossbowSpeed"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["2541588185"] = { + ["Charm"] = { + ["max"] = 40, + ["min"] = 16, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1135928777", - ["text"] = "#% increased Attack Speed with Crossbows", + ["id"] = "explicit.stat_2541588185", + ["text"] = "#% increased Duration (Charm)", ["type"] = "explicit", }, }, - ["3853_CrossbowSpeedRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["2557965901"] = { + ["Gloves"] = { + ["max"] = 9.9, + ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Ring"] = { + ["max"] = 7.9, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_715957346", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", + ["id"] = "explicit.stat_2557965901", + ["text"] = "Leech #% of Physical Attack Damage as Life", ["type"] = "explicit", }, }, - ["4136_AilmentChance"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, + ["2582079000"] = { ["specialCaseData"] = { + ["overrideModLinePlural"] = "+# Charm Slots", }, ["tradeMod"] = { - ["id"] = "explicit.stat_1772247089", - ["text"] = "#% increased chance to inflict Ailments", + ["id"] = "explicit.stat_2582079000", + ["text"] = "# Charm Slot", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["4136_AilmentChanceRadius"] = { + ["2594634307"] = { ["AnyJewel"] = { - ["max"] = 7, + ["max"] = 32, ["min"] = 3, }, + ["BaseJewel"] = { + ["max"] = 32, + ["min"] = 18, + }, ["RadiusJewel"] = { - ["max"] = 7, + ["max"] = 4, ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_412709880", - ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", + ["id"] = "explicit.stat_2594634307", + ["text"] = "Mark Skills have #% increased Skill Effect Duration", ["type"] = "explicit", }, }, - ["4140_AilmentEffect"] = { + ["2637470878"] = { ["AnyJewel"] = { - ["max"] = 15, + ["max"] = 20, ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 15, + ["max"] = 20, + ["min"] = 10, + }, + ["RadiusJewel"] = { + ["max"] = 10, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1303248024", - ["text"] = "#% increased Magnitude of Ailments you inflict", + ["id"] = "explicit.stat_2637470878", + ["text"] = "#% increased Armour Break Duration", ["type"] = "explicit", }, }, - ["4140_AilmentEffectRadius"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, + ["2639966148"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1321104829", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", + ["id"] = "explicit.stat_2639966148", + ["text"] = "Minions Revive #% faster", ["type"] = "explicit", }, }, - ["4146_AilmentThresholdfromEnergyShield"] = { + ["2653955271"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 10, + ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 15, + ["max"] = 10, ["min"] = 5, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3398301358", - ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["4146_AilmentThresholdfromEnergyShieldRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["RadiusJewel"] = { ["max"] = 2, ["min"] = 1, @@ -12262,132 +12370,110 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_693237939", - ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["id"] = "explicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", ["type"] = "explicit", }, }, - ["4147_IncreasedAilmentThreshold"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["2672805335"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3544800472", - ["text"] = "#% increased Elemental Ailment Threshold", + ["id"] = "explicit.stat_2672805335", + ["text"] = "#% increased Attack and Cast Speed", ["type"] = "explicit", }, }, - ["4147_IncreasedAilmentThresholdRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["2676834156"] = { + ["Charm"] = { + ["max"] = 500, + ["min"] = 44, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3409275777", - ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", + ["id"] = "explicit.stat_2676834156", + ["text"] = "Also grants # Guard", ["type"] = "explicit", }, }, - ["4283_ArmourBreak"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["2694482655"] = { + ["1HMace"] = { + ["max"] = 25, + ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 10, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 25, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1776411443", - ["text"] = "Break #% increased Armour", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 10, }, - }, - ["4283_ArmourBreakRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Bow"] = { + ["max"] = 25, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Crossbow"] = { + ["max"] = 25, + ["min"] = 10, }, - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 25, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4089835882", - ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", - ["type"] = "explicit", + ["Quarterstaff"] = { + ["max"] = 25, + ["min"] = 10, }, - }, - ["4285_ArmourBreakDuration"] = { - ["AnyJewel"] = { - ["max"] = 20, + ["Spear"] = { + ["max"] = 25, ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 20, + ["Talisman"] = { + ["max"] = 25, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2637470878", - ["text"] = "#% increased Armour Break Duration", + ["id"] = "explicit.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["4285_ArmourBreakDurationRadius"] = { + ["2696027455"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 16, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, }, ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_504915064", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", + ["id"] = "explicit.stat_2696027455", + ["text"] = "#% increased Damage with Spears", ["type"] = "explicit", }, }, - ["4453_AttacksBlindOnHitChance"] = { + ["2709367754"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 1, + ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_318953428", - ["text"] = "#% chance to Blind Enemies on Hit with Attacks", - ["type"] = "explicit", - }, - }, - ["4453_AttacksBlindOnHitChanceRadius"] = { - ["AnyJewel"] = { ["max"] = 1, ["min"] = 1, }, @@ -12398,624 +12484,783 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2610562860", - ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", + ["id"] = "explicit.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", ["type"] = "explicit", }, }, - ["4495_BannerArea"] = { + ["2720982137"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 25, + ["min"] = 3, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 25, + ["min"] = 15, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_429143663", - ["text"] = "Banner Skills have #% increased Area of Effect", + ["id"] = "explicit.stat_2720982137", + ["text"] = "Banner Skills have #% increased Duration", ["type"] = "explicit", }, }, - ["4495_BannerAreaRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["274716455"] = { + ["1HWeapon"] = { + ["max"] = 39, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4142814612", - ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 59, + ["min"] = 15, }, - }, - ["4497_BannerDuration"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 20, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 25, + ["max"] = 20, + ["min"] = 10, + }, + ["Focus"] = { + ["max"] = 34, + ["min"] = 10, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 59, ["min"] = 15, }, + ["Wand"] = { + ["max"] = 39, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2720982137", - ["text"] = "Banner Skills have #% increased Duration", + ["id"] = "explicit.stat_274716455", + ["text"] = "#% increased Critical Spell Damage Bonus", ["type"] = "explicit", }, }, - ["4497_BannerDurationRadius"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 4, + ["2748665614"] = { + ["Amulet"] = { + ["max"] = 8, ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2690740379", - ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", + ["id"] = "explicit.stat_2748665614", + ["text"] = "#% increased maximum Mana", ["type"] = "explicit", }, }, - ["4522_BleedDuration"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["2768835289"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, }, - ["specialCaseData"] = { + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", - ["type"] = "explicit", + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, }, - }, - ["4522_BleedDurationRadius"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1505023559", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", + ["id"] = "explicit.stat_2768835289", + ["text"] = "#% increased Spell Physical Damage", ["type"] = "explicit", }, }, - ["4532_BaseChanceToBleed"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["2797971005"] = { + ["Gloves"] = { + ["max"] = 5, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2174054121", - ["text"] = "#% chance to inflict Bleeding on Hit", + ["id"] = "explicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", ["type"] = "explicit", }, }, - ["4532_BaseChanceToBleedRadius"] = { + ["280731498"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 6, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, }, ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_944643028", - ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", + ["id"] = "explicit.stat_280731498", + ["text"] = "#% increased Area of Effect", ["type"] = "explicit", }, }, - ["4539_GlobalCooldownRecovery"] = { + ["2839066308"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 15, + ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 15, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", + ["id"] = "explicit.stat_2839066308", + ["text"] = "#% increased amount of Mana Leeched", ["type"] = "explicit", }, }, - ["4539_GlobalCooldownRecoveryRadius"] = { + ["2843214518"] = { ["AnyJewel"] = { - ["max"] = 3, + ["max"] = 15, ["min"] = 1, }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, ["RadiusJewel"] = { - ["max"] = 3, + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2149603090", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + ["id"] = "explicit.stat_2843214518", + ["text"] = "#% increased Attack Damage", ["type"] = "explicit", }, }, - ["4582_ManaCostEfficiency"] = { + ["2854751904"] = { + ["1HWeapon"] = { + ["max"] = 37.5, + ["min"] = 3, + }, + ["Sceptre"] = { + ["max"] = 37.5, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4101445926", - ["text"] = "#% increased Mana Cost Efficiency", + ["id"] = "explicit.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", ["type"] = "explicit", }, }, - ["4605_LifeCost"] = { + ["2866361420"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["max"] = 20, + ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, + ["max"] = 20, + ["min"] = 10, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2480498143", - ["text"] = "#% of Skill Mana Costs Converted to Life Costs", + ["id"] = "explicit.stat_2866361420", + ["text"] = "#% increased Armour", ["type"] = "explicit", }, }, - ["4605_LifeCostRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, + ["2881298780"] = { + ["Belt"] = { + ["max"] = 185.5, ["min"] = 2, }, - ["RadiusJewel"] = { - ["max"] = 3, + ["Chest"] = { + ["max"] = 185.5, + ["min"] = 2, + }, + ["Shield"] = { + ["max"] = 185.5, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3386297724", - ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", + ["id"] = "explicit.stat_2881298780", + ["text"] = "# to # Physical Thorns damage", ["type"] = "explicit", }, }, - ["4608_SlowPotency"] = { + ["2891184298"] = { + ["1HWeapon"] = { + ["max"] = 35, + ["min"] = 9, + }, + ["2HWeapon"] = { + ["max"] = 52, + ["min"] = 14, + }, + ["Amulet"] = { + ["max"] = 28, + ["min"] = 9, + }, ["AnyJewel"] = { - ["max"] = -5, - ["min"] = -10, + ["max"] = 4, + ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = -5, - ["min"] = -10, + ["max"] = 4, + ["min"] = 2, }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 32, + ["min"] = 9, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", - ["type"] = "explicit", + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, - }, - ["4608_SlowPotencyRadius"] = { - ["AnyJewel"] = { - ["max"] = -2, - ["min"] = -5, + ["Ring"] = { + ["max"] = 24, + ["min"] = 9, }, - ["RadiusJewel"] = { - ["max"] = -2, - ["min"] = -5, + ["Staff"] = { + ["max"] = 52, + ["min"] = 14, + }, + ["Wand"] = { + ["max"] = 35, + ["min"] = 9, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2580617872", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", + ["id"] = "explicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "explicit", }, }, - ["4662_BleedDotMultiplier"] = { - ["AnyJewel"] = { - ["max"] = 15, + ["289128254"] = { + ["1HWeapon"] = { + ["max"] = 20, ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 15, + ["Sceptre"] = { + ["max"] = 20, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3166958180", - ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["id"] = "explicit.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", ["type"] = "explicit", }, }, - ["4662_BleedDotMultiplierRadius"] = { - ["AnyJewel"] = { - ["max"] = 7, + ["2901986750"] = { + ["Amulet"] = { + ["max"] = 18, ["min"] = 3, }, - ["RadiusJewel"] = { - ["max"] = 7, + ["Ring"] = { + ["max"] = 16, + ["min"] = 3, + }, + ["Shield"] = { + ["max"] = 18, ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_391602279", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", + ["id"] = "explicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["4781_BlindEffect"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["2923486259"] = { + ["Amulet"] = { + ["max"] = 27, + ["min"] = 4, }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["Belt"] = { + ["max"] = 27, + ["min"] = 4, }, - ["specialCaseData"] = { + ["Boots"] = { + ["max"] = 27, + ["min"] = 4, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1585769763", - ["text"] = "#% increased Blind Effect", - ["type"] = "explicit", + ["Chest"] = { + ["max"] = 27, + ["min"] = 4, }, - }, - ["4781_BlindEffectRadius"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["Focus"] = { + ["max"] = 27, + ["min"] = 4, }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["Gloves"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Helmet"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 27, + ["min"] = 4, + }, + ["Shield"] = { + ["max"] = 27, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2912416697", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", + ["id"] = "explicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["5137_AdditionalArrowChanceCanExceed100%"] = { + ["293638271"] = { + ["1HWeapon"] = { + ["max"] = 100, + ["min"] = 51, + }, ["2HWeapon"] = { - ["max"] = 200, - ["min"] = 25, + ["max"] = 100, + ["min"] = 51, }, - ["Bow"] = { - ["max"] = 200, - ["min"] = 25, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["Staff"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["Wand"] = { + ["max"] = 100, + ["min"] = 51, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2463230181", - ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["id"] = "explicit.stat_293638271", + ["text"] = "#% increased chance to Shock", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["5139_ForkingProjectiles"] = { + ["2957407601"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, + ["max"] = 25, + ["min"] = 6, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, + ["max"] = 25, + ["min"] = 15, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3003542304", - ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", + ["id"] = "explicit.stat_2957407601", + ["text"] = "Offering Skills have #% increased Duration", ["type"] = "explicit", }, }, - ["5139_ForkingProjectilesRadius"] = { + ["2968503605"] = { + ["1HWeapon"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["2HWeapon"] = { + ["max"] = 100, + ["min"] = 51, + }, ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 5, + ["max"] = 20, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 5, + ["max"] = 3, + ["min"] = 2, + }, + ["Staff"] = { + ["max"] = 100, + ["min"] = 51, + }, + ["Wand"] = { + ["max"] = 100, + ["min"] = 51, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4258720395", - ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", + ["id"] = "explicit.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", ["type"] = "explicit", }, }, - ["5227_BeltIncreasedCharmChargesGained"] = { - ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, + ["2970621759"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", + ["id"] = "explicit.stat_2970621759", + ["text"] = "#% of Lightning Damage taken Recouped as Life", ["type"] = "explicit", }, }, - ["5227_CharmChargesGained"] = { + ["2974417149"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Amulet"] = { + ["max"] = 30, + ["min"] = 3, + }, ["AnyJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 1, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", + ["id"] = "explicit.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "explicit", }, }, - ["5227_CharmChargesGainedRadius"] = { + ["3003542304"] = { ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 15, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, }, ["RadiusJewel"] = { ["max"] = 7, - ["min"] = 3, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2320654813", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", + ["id"] = "explicit.stat_3003542304", + ["text"] = "Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "explicit", }, }, - ["5229_BeltReducedCharmChargesUsed"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 8, + ["300723956"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1570770415", - ["text"] = "#% reduced Charm Charges used", + ["id"] = "explicit.stat_300723956", + ["text"] = "Attack Hits apply Incision", ["type"] = "explicit", }, }, - ["5307_EssenceColdRecoupLife"] = { + ["3015669065"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 13, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3679418014", - ["text"] = "#% of Cold Damage taken Recouped as Life", + ["id"] = "explicit.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", ["type"] = "explicit", }, }, - ["5339_CompanionDamage"] = { + ["3028809864"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 2, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_234296660", - ["text"] = "Companions deal #% increased Damage", + ["id"] = "explicit.stat_3028809864", + ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", ["type"] = "explicit", }, }, - ["5339_CompanionDamageRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, + ["3032590688"] = { + ["Gloves"] = { + ["max"] = 25.5, ["min"] = 2, }, - ["RadiusJewel"] = { - ["max"] = 3, + ["Quiver"] = { + ["max"] = 25.5, + ["min"] = 2, + }, + ["Ring"] = { + ["max"] = 25.5, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1494950893", - ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", + ["id"] = "explicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", ["type"] = "explicit", }, }, - ["5342_CompanionLife"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["3033371881"] = { + ["Boots"] = { + ["max"] = 23, + ["min"] = 8, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 26, + ["min"] = 8, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1805182458", - ["text"] = "Companions have #% increased maximum Life", - ["type"] = "explicit", + ["Gloves"] = { + ["max"] = 23, + ["min"] = 8, }, - }, - ["5342_CompanionLifeRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Helmet"] = { + ["max"] = 23, + ["min"] = 8, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Shield"] = { + ["max"] = 26, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2638756573", - ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", + ["id"] = "explicit.stat_3033371881", + ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", ["type"] = "explicit", }, }, - ["5424_CriticalAilmentEffect"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["3035140377"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_440490623", - ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["id"] = "explicit.stat_3035140377", + ["text"] = "# to Level of all Attack Skills", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["5424_CriticalAilmentEffectRadius"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + ["3037553757"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4092130601", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", + ["id"] = "explicit.stat_3037553757", + ["text"] = "#% increased Warcry Buff Effect", ["type"] = "explicit", }, }, - ["5530_CurseDelay"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["3057012405"] = { + ["1HWeapon"] = { + ["max"] = 39, + ["min"] = 10, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Sceptre"] = { + ["max"] = 39, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1104825894", - ["text"] = "#% faster Curse Activation", + ["id"] = "explicit.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", ["type"] = "explicit", }, }, - ["5553_DamagevsArmourBrokenEnemies"] = { + ["3067892458"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 18, + ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 18, + ["min"] = 10, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2301718443", - ["text"] = "#% increased Damage against Enemies with Fully Broken Armour", + ["id"] = "explicit.stat_3067892458", + ["text"] = "Triggered Spells deal #% increased Spell Damage", ["type"] = "explicit", }, }, - ["5553_DamagevsArmourBrokenEnemiesRadius"] = { + ["3091578504"] = { ["AnyJewel"] = { ["max"] = 4, - ["min"] = 2, + ["min"] = 1, }, - ["RadiusJewel"] = { + ["BaseJewel"] = { ["max"] = 4, ["min"] = 2, }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1834658952", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", + ["id"] = "explicit.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", ["type"] = "explicit", }, }, - ["5567_ShapeshiftDamageForJewel"] = { + ["3119612865"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 16, + ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 16, + ["min"] = 6, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2440073079", - ["text"] = "#% increased Damage while Shapeshifted", + ["id"] = "explicit.stat_3119612865", + ["text"] = "Minions have #% additional Physical Damage Reduction", ["type"] = "explicit", }, }, - ["5567_ShapeshiftDamageForJewelRadius"] = { + ["3141070085"] = { ["AnyJewel"] = { - ["max"] = 2, + ["max"] = 15, ["min"] = 1, }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, ["RadiusJewel"] = { ["max"] = 2, ["min"] = 1, @@ -13023,392 +13268,407 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_266564538", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", + ["id"] = "explicit.stat_3141070085", + ["text"] = "#% increased Elemental Damage", ["type"] = "explicit", }, }, - ["5627_CharmDamageWhileUsing"] = { + ["3146310524"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_627767961", - ["text"] = "#% increased Damage while you have an active Charm", + ["id"] = "explicit.stat_3146310524", + ["text"] = "Dazes on Hit", ["type"] = "explicit", }, }, - ["5627_CharmDamageWhileUsingRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, + ["315791320"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3752589831", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", + ["id"] = "explicit.stat_315791320", + ["text"] = "Aura Skills have #% increased Magnitudes", ["type"] = "explicit", }, }, - ["5632_HeraldDamage"] = { + ["3166958180"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 15, + ["min"] = 3, }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 15, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_21071013", - ["text"] = "Herald Skills deal #% increased Damage", + ["id"] = "explicit.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", ["type"] = "explicit", }, }, - ["5632_HeraldDamageRadius"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["3169585282"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3065378291", - ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", + ["id"] = "explicit.stat_3169585282", + ["text"] = "Allies in your Presence have # to Accuracy Rating", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["5668_DamagingAilmentDuration"] = { + ["3174700878"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 50, + ["min"] = 15, }, ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 50, + ["min"] = 30, + }, + ["RadiusJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1829102168", - ["text"] = "#% increased Duration of Damaging Ailments on Enemies", + ["id"] = "explicit.stat_3174700878", + ["text"] = "#% increased Energy Shield from Equipped Focus", ["type"] = "explicit", }, }, - ["5668_DamagingAilmentDurationRadius"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["3175163625"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2272980012", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", + ["id"] = "explicit.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", ["type"] = "explicit", }, }, - ["5671_FasterAilmentDamageForJewel"] = { + ["318953428"] = { ["AnyJewel"] = { ["max"] = 7, - ["min"] = 3, + ["min"] = 1, }, ["BaseJewel"] = { ["max"] = 7, ["min"] = 3, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_538241406", - ["text"] = "Damaging Ailments deal damage #% faster", - ["type"] = "explicit", - }, - }, - ["5671_FasterAilmentDamageForJewelRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3173882956", - ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", + ["id"] = "explicit.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", ["type"] = "explicit", }, }, - ["5703_DebuffTimePassed"] = { + ["3192728503"] = { ["AnyJewel"] = { - ["max"] = 10, + ["max"] = 15, ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 10, + ["max"] = 15, + ["min"] = 10, + }, + ["RadiusJewel"] = { + ["max"] = 7, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1238227257", - ["text"] = "Debuffs on you expire #% faster", + ["id"] = "explicit.stat_3192728503", + ["text"] = "#% increased Crossbow Reload Speed", ["type"] = "explicit", }, }, - ["5703_DebuffTimePassedRadius"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, + ["3196823591"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2256120736", - ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", + ["id"] = "explicit.stat_3196823591", + ["text"] = "#% increased Charges gained", ["type"] = "explicit", }, }, - ["5912_ExertedAttackDamage"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["3233599707"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1569101201", - ["text"] = "Empowered Attacks deal #% increased Damage", + ["id"] = "explicit.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", ["type"] = "explicit", }, }, - ["5912_ExertedAttackDamageRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["3261801346"] = { + ["1HWeapon"] = { + ["max"] = 33, + ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["2HWeapon"] = { + ["max"] = 33, + ["min"] = 5, }, - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 33, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3395186672", - ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", - ["type"] = "explicit", + ["Boots"] = { + ["max"] = 33, + ["min"] = 5, }, - }, - ["5987_EnergyGeneration"] = { - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 4, + ["Bow"] = { + ["max"] = 33, + ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, + ["Chest"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 36, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Quiver"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 33, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", + ["id"] = "explicit.stat_3261801346", + ["text"] = "# to Dexterity", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["5987_EnergyGenerationRadius"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["3276224428"] = { + ["ManaFlask"] = { + ["max"] = 100, + ["min"] = 51, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2849546516", - ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", + ["id"] = "explicit.stat_3276224428", + ["text"] = "#% more Recovery if used while on Low Mana", ["type"] = "explicit", }, }, - ["6002_FocusEnergyShield"] = { - ["AnyJewel"] = { - ["max"] = 50, - ["min"] = 30, + ["3278136794"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 13, }, - ["BaseJewel"] = { - ["max"] = 50, - ["min"] = 30, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Staff"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 13, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3174700878", - ["text"] = "#% increased Energy Shield from Equipped Focus", + ["id"] = "explicit.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", ["type"] = "explicit", }, }, - ["6002_FocusEnergyShieldRadius"] = { + ["3283482523"] = { ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 4, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3419203492", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", + ["id"] = "explicit.stat_3283482523", + ["text"] = "#% increased Attack Speed with Quarterstaves", ["type"] = "explicit", }, }, - ["6048_AbyssTargetMod"] = { - ["specialCaseData"] = { + ["328541901"] = { + ["1HWeapon"] = { + ["max"] = 33, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_335885735", - ["text"] = "Bears the Mark of the Abyssal Lord", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 33, + ["min"] = 5, }, - }, - ["610_FlaskGainChargePerMinute"] = { - ["specialCaseData"] = { + ["Amulet"] = { + ["max"] = 33, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1873752457", - ["text"] = "Gains # Charges per Second", - ["type"] = "explicit", + ["Boots"] = { + ["max"] = 33, + ["min"] = 5, }, - }, - ["6150_EssenceFireRecoupLife"] = { - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 33, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1742651309", - ["text"] = "#% of Fire Damage taken Recouped as Life", - ["type"] = "explicit", + ["Flail"] = { + ["max"] = 33, + ["min"] = 5, }, - }, - ["6216_BeltIncreasedFlaskChargesGained"] = { - ["Belt"] = { - ["max"] = 40, + ["Focus"] = { + ["max"] = 33, ["min"] = 5, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 33, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1836676211", - ["text"] = "#% increased Flask Charges gained", - ["type"] = "explicit", + ["Helmet"] = { + ["max"] = 36, + ["min"] = 5, }, - }, - ["6216_IncreasedFlaskChargesGained"] = { - ["AnyJewel"] = { - ["max"] = 10, + ["Quarterstaff"] = { + ["max"] = 33, ["min"] = 5, }, - ["BaseJewel"] = { - ["max"] = 10, + ["Ring"] = { + ["max"] = 33, ["min"] = 5, }, - ["specialCaseData"] = { + ["Sceptre"] = { + ["max"] = 33, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1836676211", - ["text"] = "#% increased Flask Charges gained", - ["type"] = "explicit", + ["Shield"] = { + ["max"] = 33, + ["min"] = 5, }, - }, - ["6216_IncreasedFlaskChargesGainedRadius"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["Staff"] = { + ["max"] = 33, + ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 33, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2066964205", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", + ["id"] = "explicit.stat_328541901", + ["text"] = "# to Intelligence", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["6431_RageOnHit"] = { + ["3291658075"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, + }, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, + }, ["AnyJewel"] = { - ["max"] = 1, + ["max"] = 15, ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2709367754", - ["text"] = "Gain # Rage on Melee Hit", - ["type"] = "explicit", + ["max"] = 15, + ["min"] = 5, }, - }, - ["6431_RageOnHitRadius"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, }, ["RadiusJewel"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2969557004", - ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", + ["id"] = "explicit.stat_3291658075", + ["text"] = "#% increased Cold Damage", ["type"] = "explicit", }, }, - ["6433_GainRageWhenHit"] = { + ["3292710273"] = { ["AnyJewel"] = { ["max"] = 3, ["min"] = 1, @@ -13417,6 +13677,10 @@ return { ["max"] = 3, ["min"] = 1, }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13425,332 +13689,562 @@ return { ["type"] = "explicit", }, }, - ["6433_GainRageWhenHitRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["3299347043"] = { + ["Amulet"] = { + ["max"] = 149, + ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Belt"] = { + ["max"] = 174, + ["min"] = 10, + }, + ["Boots"] = { + ["max"] = 149, + ["min"] = 10, + }, + ["Chest"] = { + ["max"] = 214, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 149, + ["min"] = 10, + }, + ["Helmet"] = { + ["max"] = 174, + ["min"] = 10, + }, + ["Ring"] = { + ["max"] = 119, + ["min"] = 10, + }, + ["Shield"] = { + ["max"] = 189, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2131720304", - ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", + ["id"] = "explicit.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["6474_BannerValourGained"] = { - ["AnyJewel"] = { - ["max"] = 20, + ["3301100256"] = { + ["Chest"] = { + ["max"] = -36, + ["min"] = -60, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3301100256", + ["text"] = "#% increased Poison Duration on you", + ["type"] = "explicit", + }, + }, + ["3321629045"] = { + ["Boots"] = { + ["max"] = 100, ["min"] = 15, }, - ["BaseJewel"] = { - ["max"] = 20, + ["Chest"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 100, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 110, ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1869147066", - ["text"] = "#% increased Glory generation for Banner Skills", + ["id"] = "explicit.stat_3321629045", + ["text"] = "#% increased Armour and Energy Shield", ["type"] = "explicit", }, }, - ["6474_BannerValourGainedRadius"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["3325883026"] = { + ["Amulet"] = { + ["max"] = 33, + ["min"] = 1, }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 8, + ["Belt"] = { + ["max"] = 29, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 23, + ["min"] = 1, + }, + ["Chest"] = { + ["max"] = 36, + ["min"] = 1, + }, + ["Helmet"] = { + ["max"] = 23, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 18, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2907381231", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", + ["id"] = "explicit.stat_3325883026", + ["text"] = "# Life Regeneration per second", ["type"] = "explicit", }, }, - ["6476_EssenceGoldDropped"] = { + ["3336890334"] = { + ["1HMace"] = { + ["max"] = 123, + ["min"] = 2.5, + }, + ["1HWeapon"] = { + ["max"] = 123, + ["min"] = 2.5, + }, + ["2HMace"] = { + ["max"] = 188.5, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 188.5, + ["min"] = 2.5, + }, + ["Bow"] = { + ["max"] = 123, + ["min"] = 2.5, + }, + ["Crossbow"] = { + ["max"] = 188.5, + ["min"] = 4, + }, + ["Flail"] = { + ["max"] = 123, + ["min"] = 2.5, + }, + ["Quarterstaff"] = { + ["max"] = 188.5, + ["min"] = 4, + }, + ["Spear"] = { + ["max"] = 123, + ["min"] = 2.5, + }, + ["Talisman"] = { + ["max"] = 188.5, + ["min"] = 4, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["id"] = "explicit.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", ["type"] = "explicit", }, }, - ["6536_HazardDamage"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, + ["335885735"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1697951953", - ["text"] = "#% increased Hazard Damage", + ["id"] = "explicit.stat_335885735", + ["text"] = "Bears the Mark of the Abyssal Lord", ["type"] = "explicit", }, }, - ["6536_HazardDamageRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["3362812763"] = { + ["Boots"] = { + ["max"] = 43, + ["min"] = 14, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Chest"] = { + ["max"] = 50, + ["min"] = 14, + }, + ["Gloves"] = { + ["max"] = 43, + ["min"] = 14, + }, + ["Helmet"] = { + ["max"] = 43, + ["min"] = 14, + }, + ["Shield"] = { + ["max"] = 50, + ["min"] = 14, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_255840549", - ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", + ["id"] = "explicit.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["6750_PinBuildup"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["3372524247"] = { + ["Amulet"] = { + ["max"] = 45, + ["min"] = 6, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Belt"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 45, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3473929743", - ["text"] = "#% increased Pin Buildup", + ["id"] = "explicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["6750_PinBuildupRadius"] = { + ["3374165039"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 20, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1944020877", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", + ["id"] = "explicit.stat_3374165039", + ["text"] = "#% increased Totem Placement speed", ["type"] = "explicit", }, }, - ["6818_ElementalAilmentDuration"] = { + ["3377888098"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 5, + ["min"] = 3, }, ["BaseJewel"] = { ["max"] = 10, ["min"] = 5, }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1062710370", - ["text"] = "#% increased Duration of Ignite, Shock and Chill on Enemies", + ["id"] = "explicit.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", ["type"] = "explicit", }, }, - ["6818_ElementalAilmentDurationRadius"] = { + ["3398301358"] = { ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 15, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1323216174", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", + ["id"] = "explicit.stat_3398301358", + ["text"] = "Gain additional Ailment Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, }, - ["6970_LifeFlaskChargePercentGeneration"] = { + ["3401186585"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 20, + ["max"] = 15, ["min"] = 10, }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4009879772", - ["text"] = "#% increased Life Flask Charges gained", + ["id"] = "explicit.stat_3401186585", + ["text"] = "#% increased Parried Debuff Duration", ["type"] = "explicit", }, }, - ["6970_LifeFlaskChargePercentGenerationRadius"] = { + ["3417711605"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 5, + ["min"] = 1, }, - ["RadiusJewel"] = { + ["BaseJewel"] = { ["max"] = 10, ["min"] = 5, }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_942519401", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", + ["id"] = "explicit.stat_3417711605", + ["text"] = "Damage Penetrates #% Cold Resistance", ["type"] = "explicit", }, }, - ["7081_EssenceLightningRecoupLife"] = { - ["specialCaseData"] = { + ["3473929743"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2970621759", - ["text"] = "#% of Lightning Damage taken Recouped as Life", - ["type"] = "explicit", + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - }, - ["7174_EssenceOnslaughtonKill"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1881230714", - ["text"] = "#% chance to gain Onslaught on Killing Hits with this Weapon", + ["id"] = "explicit.stat_3473929743", + ["text"] = "#% increased Pin Buildup", ["type"] = "explicit", }, }, - ["7237_CorruptForTwoEnchantments"] = { + ["3484657501"] = { + ["Boots"] = { + ["max"] = 160, + ["min"] = 16, + }, + ["Chest"] = { + ["max"] = 276, + ["min"] = 16, + }, + ["Gloves"] = { + ["max"] = 160, + ["min"] = 16, + }, + ["Helmet"] = { + ["max"] = 202, + ["min"] = 16, + }, + ["Shield"] = { + ["max"] = 256, + ["min"] = 16, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4215035940", - ["text"] = "On Corruption, Item gains two Enchantments", + ["id"] = "explicit.stat_3484657501", + ["text"] = "# to Armour (Local)", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["7285_JewelRadiusLargerRadius"] = { + ["3485067555"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 25, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 12, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3891355829|2", - ["text"] = "Upgrades Radius to Large", + ["id"] = "explicit.stat_3485067555", + ["text"] = "#% increased Chill Duration on Enemies", ["type"] = "explicit", }, }, - ["7304_JewelRadiusNotableEffect"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["RadiusJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["3489782002"] = { + ["Amulet"] = { + ["max"] = 89, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4234573345", - ["text"] = "#% increased Effect of Notable Passive Skills in Radius", + ["id"] = "explicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["7308_JewelRadiusSmallNodeEffect"] = { - ["AnyJewel"] = { - ["max"] = 25, + ["3523867985"] = { + ["Boots"] = { + ["max"] = 110, ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 25, + ["Chest"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 110, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 110, ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1060572482", - ["text"] = "#% increased Effect of Small Passive Skills in Radius", + ["id"] = "explicit.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield", ["type"] = "explicit", }, }, - ["7351_LocalSocketItemsEffect"] = { + ["3544800472"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2081918629", - ["text"] = "#% increased effect of Socketed Items", + ["id"] = "explicit.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", ["type"] = "explicit", }, }, - ["7459_MaceStun"] = { + ["3556824919"] = { + ["Amulet"] = { + ["max"] = 39, + ["min"] = 10, + }, ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 20, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["max"] = 20, + ["min"] = 10, + }, + ["Gloves"] = { + ["max"] = 34, + ["min"] = 10, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_872504239", - ["text"] = "#% increased Stun Buildup with Maces", + ["id"] = "explicit.stat_3556824919", + ["text"] = "#% increased Critical Damage Bonus", ["type"] = "explicit", }, }, - ["7459_MaceStunRadius"] = { + ["3585532255"] = { ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["max"] = 15, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, }, ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2392824305", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", + ["id"] = "explicit.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", ["type"] = "explicit", }, }, - ["7491_ManaFlaskChargePercentGeneration"] = { + ["3590792340"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13759,869 +14253,827 @@ return { ["type"] = "explicit", }, }, - ["7491_ManaFlaskChargePercentGenerationRadius"] = { + ["3596695232"] = { ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 20, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3171212276", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", + ["id"] = "explicit.stat_3596695232", + ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", ["type"] = "explicit", }, }, - ["821_LocalIncreasedPhysicalDamagePercentAndAccuracyRating"] = { + ["3639275092"] = { ["1HMace"] = { - ["max"] = 79, - ["min"] = 15, + ["max"] = -15, + ["min"] = -35, }, ["1HWeapon"] = { - ["max"] = 79, - ["min"] = 15, + ["max"] = -15, + ["min"] = -35, }, ["2HMace"] = { - ["max"] = 79, - ["min"] = 15, + ["max"] = -15, + ["min"] = -35, }, ["2HWeapon"] = { - ["max"] = 79, - ["min"] = 15, + ["max"] = -15, + ["min"] = -35, + }, + ["Boots"] = { + ["max"] = -15, + ["min"] = -35, }, ["Bow"] = { - ["max"] = 79, - ["min"] = 15, + ["max"] = -15, + ["min"] = -35, + }, + ["Chest"] = { + ["max"] = -15, + ["min"] = -35, }, ["Crossbow"] = { - ["max"] = 79, - ["min"] = 15, + ["max"] = -15, + ["min"] = -35, }, ["Flail"] = { - ["max"] = 79, - ["min"] = 15, + ["max"] = -15, + ["min"] = -35, }, - ["Quarterstaff"] = { - ["max"] = 79, - ["min"] = 15, + ["Focus"] = { + ["max"] = -15, + ["min"] = -35, }, - ["Spear"] = { - ["max"] = 79, - ["min"] = 15, + ["Gloves"] = { + ["max"] = -15, + ["min"] = -35, }, - ["Talisman"] = { - ["max"] = 79, - ["min"] = 15, + ["Helmet"] = { + ["max"] = -15, + ["min"] = -35, }, - ["specialCaseData"] = { + ["Quarterstaff"] = { + ["max"] = -15, + ["min"] = -35, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", - ["type"] = "explicit", - }, - }, - ["821_LocalPhysicalDamagePercent"] = { - ["1HMace"] = { - ["max"] = 179, - ["min"] = 40, - }, - ["1HWeapon"] = { - ["max"] = 179, - ["min"] = 40, - }, - ["2HMace"] = { - ["max"] = 179, - ["min"] = 40, - }, - ["2HWeapon"] = { - ["max"] = 179, - ["min"] = 40, - }, - ["Bow"] = { - ["max"] = 179, - ["min"] = 40, - }, - ["Crossbow"] = { - ["max"] = 179, - ["min"] = 40, - }, - ["Flail"] = { - ["max"] = 179, - ["min"] = 40, + ["Sceptre"] = { + ["max"] = -15, + ["min"] = -35, }, - ["Quarterstaff"] = { - ["max"] = 179, - ["min"] = 40, + ["Shield"] = { + ["max"] = -15, + ["min"] = -35, }, ["Spear"] = { - ["max"] = 179, - ["min"] = 40, + ["max"] = -15, + ["min"] = -35, + }, + ["Staff"] = { + ["max"] = -15, + ["min"] = -35, }, ["Talisman"] = { - ["max"] = 179, - ["min"] = 40, + ["max"] = -15, + ["min"] = -35, + }, + ["Wand"] = { + ["max"] = -15, + ["min"] = -35, }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "explicit.stat_3639275092", + ["text"] = "#% increased Attribute Requirements", ["type"] = "explicit", }, }, - ["822_LocalPhysicalDamage"] = { - ["1HMace"] = { - ["max"] = 52.5, - ["min"] = 2.5, + ["3668351662"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 2, }, - ["1HWeapon"] = { - ["max"] = 52.5, - ["min"] = 2.5, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, - ["2HMace"] = { - ["max"] = 74.5, - ["min"] = 3.5, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - ["2HWeapon"] = { - ["max"] = 74.5, - ["min"] = 2.5, + ["specialCaseData"] = { }, - ["Bow"] = { - ["max"] = 52.5, - ["min"] = 2.5, + ["tradeMod"] = { + ["id"] = "explicit.stat_3668351662", + ["text"] = "#% increased Shock Duration", + ["type"] = "explicit", }, - ["Crossbow"] = { - ["max"] = 74.5, - ["min"] = 3.5, + }, + ["3676141501"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Flail"] = { - ["max"] = 52.5, - ["min"] = 2.5, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Quarterstaff"] = { - ["max"] = 74.5, - ["min"] = 3.5, + ["Shield"] = { + ["max"] = 3, + ["min"] = 1, }, - ["Spear"] = { - ["max"] = 52.5, - ["min"] = 2.5, + ["specialCaseData"] = { }, - ["Talisman"] = { - ["max"] = 74.5, - ["min"] = 3.5, + ["tradeMod"] = { + ["id"] = "explicit.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", + ["type"] = "explicit", }, + ["usePositiveSign"] = true, + }, + ["3679418014"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1940865751", - ["text"] = "Adds # to # Physical Damage", + ["id"] = "explicit.stat_3679418014", + ["text"] = "#% of Cold Damage taken Recouped as Life", ["type"] = "explicit", }, }, - ["823_LocalFireDamage"] = { + ["3695891184"] = { ["1HMace"] = { - ["max"] = 127.5, - ["min"] = 2, + ["max"] = 84, + ["min"] = 4, }, ["1HWeapon"] = { - ["max"] = 127.5, - ["min"] = 2, + ["max"] = 84, + ["min"] = 4, }, ["2HMace"] = { - ["max"] = 196, - ["min"] = 3.5, + ["max"] = 84, + ["min"] = 4, }, ["2HWeapon"] = { - ["max"] = 196, - ["min"] = 2, + ["max"] = 84, + ["min"] = 4, }, ["Bow"] = { - ["max"] = 127.5, - ["min"] = 2, + ["max"] = 84, + ["min"] = 4, }, ["Crossbow"] = { - ["max"] = 196, - ["min"] = 3.5, + ["max"] = 84, + ["min"] = 4, }, ["Flail"] = { - ["max"] = 127.5, - ["min"] = 2, + ["max"] = 84, + ["min"] = 4, + }, + ["Gloves"] = { + ["max"] = 84, + ["min"] = 4, }, ["Quarterstaff"] = { - ["max"] = 196, - ["min"] = 3.5, + ["max"] = 84, + ["min"] = 4, + }, + ["Quiver"] = { + ["max"] = 53, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 53, + ["min"] = 4, }, ["Spear"] = { - ["max"] = 127.5, - ["min"] = 2, + ["max"] = 84, + ["min"] = 4, + }, + ["Staff"] = { + ["max"] = 84, + ["min"] = 4, }, ["Talisman"] = { - ["max"] = 196, - ["min"] = 3.5, + ["max"] = 84, + ["min"] = 4, + }, + ["Wand"] = { + ["max"] = 84, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_709508406", - ["text"] = "Adds # to # Fire Damage", + ["id"] = "explicit.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", ["type"] = "explicit", }, }, - ["824_LocalColdDamage"] = { - ["1HMace"] = { - ["max"] = 102, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 102, - ["min"] = 2, + ["3714003708"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 5, }, - ["2HMace"] = { - ["max"] = 156.5, - ["min"] = 3, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["2HWeapon"] = { - ["max"] = 156.5, - ["min"] = 2, + ["Quiver"] = { + ["max"] = 39, + ["min"] = 10, }, - ["Bow"] = { - ["max"] = 102, - ["min"] = 2, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Crossbow"] = { - ["max"] = 156.5, - ["min"] = 3, + ["specialCaseData"] = { }, - ["Flail"] = { - ["max"] = 102, - ["min"] = 2, + ["tradeMod"] = { + ["id"] = "explicit.stat_3714003708", + ["text"] = "#% increased Critical Damage Bonus for Attack Damage", + ["type"] = "explicit", }, - ["Quarterstaff"] = { - ["max"] = 156.5, - ["min"] = 3, + }, + ["3741323227"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 1, }, - ["Spear"] = { - ["max"] = 102, - ["min"] = 2, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Talisman"] = { - ["max"] = 156.5, - ["min"] = 3, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", + ["id"] = "explicit.stat_3741323227", + ["text"] = "#% increased Flask Effect Duration", ["type"] = "explicit", }, }, - ["825_LocalLightningDamage"] = { - ["1HMace"] = { - ["max"] = 123, - ["min"] = 2.5, + ["3749502527"] = { + ["specialCaseData"] = { }, - ["1HWeapon"] = { - ["max"] = 123, - ["min"] = 2.5, - }, - ["2HMace"] = { - ["max"] = 188.5, - ["min"] = 4, - }, - ["2HWeapon"] = { - ["max"] = 188.5, - ["min"] = 2.5, - }, - ["Bow"] = { - ["max"] = 123, - ["min"] = 2.5, - }, - ["Crossbow"] = { - ["max"] = 188.5, - ["min"] = 4, + ["tradeMod"] = { + ["id"] = "explicit.stat_3749502527", + ["text"] = "#% chance to gain Volatility on Kill", + ["type"] = "explicit", }, - ["Flail"] = { - ["max"] = 123, - ["min"] = 2.5, + }, + ["3759663284"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 2, }, - ["Quarterstaff"] = { - ["max"] = 188.5, + ["BaseJewel"] = { + ["max"] = 8, ["min"] = 4, }, - ["Spear"] = { - ["max"] = 123, - ["min"] = 2.5, + ["Quiver"] = { + ["max"] = 46, + ["min"] = 10, }, - ["Talisman"] = { - ["max"] = 188.5, - ["min"] = 4, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", + ["id"] = "explicit.stat_3759663284", + ["text"] = "#% increased Projectile Speed", ["type"] = "explicit", }, }, - ["826_LocalAccuracyRating"] = { - ["1HMace"] = { - ["max"] = 550, - ["min"] = 11, - }, - ["1HWeapon"] = { - ["max"] = 550, - ["min"] = 11, - }, - ["2HMace"] = { - ["max"] = 550, - ["min"] = 11, - }, - ["2HWeapon"] = { - ["max"] = 650, - ["min"] = 11, - }, - ["Bow"] = { - ["max"] = 650, - ["min"] = 11, - }, - ["Crossbow"] = { - ["max"] = 650, - ["min"] = 11, - }, - ["Flail"] = { - ["max"] = 550, - ["min"] = 11, - }, - ["Quarterstaff"] = { - ["max"] = 550, - ["min"] = 11, + ["3759735052"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 1, }, - ["Spear"] = { - ["max"] = 550, - ["min"] = 11, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["Talisman"] = { - ["max"] = 550, - ["min"] = 11, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_803737631", - ["text"] = "# to Accuracy Rating", + ["id"] = "explicit.stat_3759735052", + ["text"] = "#% increased Attack Speed with Bows", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["826_LocalIncreasedPhysicalDamagePercentAndAccuracyRating"] = { - ["1HMace"] = { - ["max"] = 200, - ["min"] = 16, - }, - ["1HWeapon"] = { - ["max"] = 200, - ["min"] = 16, - }, - ["2HMace"] = { - ["max"] = 200, - ["min"] = 16, - }, - ["2HWeapon"] = { - ["max"] = 200, - ["min"] = 16, - }, - ["Bow"] = { - ["max"] = 200, - ["min"] = 16, - }, - ["Crossbow"] = { - ["max"] = 200, - ["min"] = 16, - }, - ["Flail"] = { - ["max"] = 200, - ["min"] = 16, - }, - ["Quarterstaff"] = { - ["max"] = 200, - ["min"] = 16, - }, - ["Spear"] = { - ["max"] = 200, - ["min"] = 16, - }, - ["Talisman"] = { - ["max"] = 200, - ["min"] = 16, + ["3771516363"] = { + ["Shield"] = { + ["max"] = 8, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_803737631", - ["text"] = "# to Accuracy Rating", + ["id"] = "explicit.stat_3771516363", + ["text"] = "#% additional Physical Damage Reduction", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["826_LocalLightRadiusAndAccuracy"] = { - ["1HMace"] = { - ["max"] = 60, - ["min"] = 10, - }, - ["1HWeapon"] = { - ["max"] = 60, - ["min"] = 10, - }, - ["2HMace"] = { - ["max"] = 60, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 10, - }, - ["Bow"] = { - ["max"] = 60, - ["min"] = 10, - }, - ["Crossbow"] = { - ["max"] = 60, - ["min"] = 10, - }, - ["Flail"] = { - ["max"] = 60, - ["min"] = 10, - }, - ["Quarterstaff"] = { - ["max"] = 60, - ["min"] = 10, + ["3780644166"] = { + ["AnyJewel"] = { + ["max"] = 32, + ["min"] = 2, }, - ["Spear"] = { - ["max"] = 60, - ["min"] = 10, + ["BaseJewel"] = { + ["max"] = 32, + ["min"] = 18, }, - ["Talisman"] = { - ["max"] = 60, - ["min"] = 10, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_803737631", - ["text"] = "# to Accuracy Rating", + ["id"] = "explicit.stat_3780644166", + ["text"] = "#% increased Freeze Threshold", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["8276_MarkDuration"] = { + ["3787460122"] = { ["AnyJewel"] = { - ["max"] = 32, - ["min"] = 18, + ["max"] = 25, + ["min"] = 2, }, ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, + ["max"] = 25, + ["min"] = 15, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2594634307", - ["text"] = "Mark Skills have #% increased Skill Effect Duration", + ["id"] = "explicit.stat_3787460122", + ["text"] = "Offerings have #% increased Maximum Life", ["type"] = "explicit", }, }, - ["8276_MarkDurationRadius"] = { + ["3791899485"] = { ["AnyJewel"] = { - ["max"] = 4, + ["max"] = 15, ["min"] = 3, }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, ["RadiusJewel"] = { - ["max"] = 4, + ["max"] = 7, ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4162678661", - ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", + ["id"] = "explicit.stat_3791899485", + ["text"] = "#% increased Ignite Magnitude", ["type"] = "explicit", }, }, - ["827_MovementVelocity"] = { + ["3811191316"] = { ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 8, + ["min"] = 3, }, ["BaseJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["max"] = 8, + ["min"] = 5, }, - ["Boots"] = { - ["max"] = 35, - ["min"] = 10, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "explicit.stat_3811191316", + ["text"] = "Minions have #% increased Area of Effect", ["type"] = "explicit", }, }, - ["827_MovementVelocityRadius"] = { + ["3824372849"] = { ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 25, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_844449513", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", + ["id"] = "explicit.stat_3824372849", + ["text"] = "#% increased Curse Duration", ["type"] = "explicit", }, }, - ["830_LocalIncreasedBlockPercentage"] = { - ["Shield"] = { - ["max"] = 30, - ["min"] = 15, - }, + ["3835551335"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4147897060", - ["text"] = "#% increased Block chance", + ["id"] = "explicit.stat_3835551335", + ["text"] = "Cannot be Poisoned", ["type"] = "explicit", }, }, - ["831_LocalBaseArmourAndEnergyShield"] = { - ["Boots"] = { - ["max"] = 65, - ["min"] = 8, - }, - ["Chest"] = { - ["max"] = 138, - ["min"] = 8, - }, - ["Gloves"] = { - ["max"] = 65, - ["min"] = 8, + ["3837707023"] = { + ["AnyJewel"] = { + ["max"] = 13, + ["min"] = 1, }, - ["Helmet"] = { - ["max"] = 78, - ["min"] = 8, + ["BaseJewel"] = { + ["max"] = 13, + ["min"] = 7, }, - ["Shield"] = { - ["max"] = 117, - ["min"] = 8, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_809229260", - ["text"] = "# to Armour", + ["id"] = "explicit.stat_3837707023", + ["text"] = "Minions have #% to Chaos Resistance", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["831_LocalBaseArmourAndEvasionRating"] = { - ["Boots"] = { - ["max"] = 65, - ["min"] = 8, - }, - ["Chest"] = { - ["max"] = 138, - ["min"] = 8, - }, - ["Gloves"] = { - ["max"] = 65, - ["min"] = 8, - }, - ["Helmet"] = { - ["max"] = 78, - ["min"] = 8, + ["3850614073"] = { + ["1HWeapon"] = { + ["max"] = 18, + ["min"] = 3, }, - ["Shield"] = { - ["max"] = 117, - ["min"] = 8, + ["Sceptre"] = { + ["max"] = 18, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_809229260", - ["text"] = "# to Armour", + ["id"] = "explicit.stat_3850614073", + ["text"] = "Allies in your Presence have #% to all Elemental Resistances", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["831_LocalIncreasedArmourAndBase"] = { - ["Chest"] = { - ["max"] = 86, - ["min"] = 7, - }, - ["specialCaseData"] = { + ["3851254963"] = { + ["AnyJewel"] = { + ["max"] = 18, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_809229260", - ["text"] = "# to Armour", - ["type"] = "explicit", + ["BaseJewel"] = { + ["max"] = 18, + ["min"] = 10, }, - ["usePositiveSign"] = true, - }, - ["831_LocalIncreasedArmourAndEnergyShieldAndBase"] = { - ["Chest"] = { - ["max"] = 43, - ["min"] = 4, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_809229260", - ["text"] = "# to Armour", + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["831_LocalIncreasedArmourAndEvasionAndBase"] = { - ["Chest"] = { - ["max"] = 43, - ["min"] = 4, + ["3855016469"] = { + ["Shield"] = { + ["max"] = 54, + ["min"] = 21, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_809229260", - ["text"] = "# to Armour", + ["id"] = "explicit.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["831_LocalPhysicalDamageReductionRating"] = { - ["Boots"] = { - ["max"] = 160, - ["min"] = 16, + ["387439868"] = { + ["1HMace"] = { + ["max"] = 100, + ["min"] = 19, }, - ["Chest"] = { - ["max"] = 276, - ["min"] = 16, + ["1HWeapon"] = { + ["max"] = 100, + ["min"] = 19, }, - ["Gloves"] = { - ["max"] = 160, - ["min"] = 16, + ["2HMace"] = { + ["max"] = 139, + ["min"] = 34, }, - ["Helmet"] = { - ["max"] = 202, - ["min"] = 16, + ["2HWeapon"] = { + ["max"] = 139, + ["min"] = 19, }, - ["Shield"] = { - ["max"] = 256, - ["min"] = 16, + ["Bow"] = { + ["max"] = 100, + ["min"] = 19, }, - ["specialCaseData"] = { + ["Crossbow"] = { + ["max"] = 139, + ["min"] = 34, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_809229260", - ["text"] = "# to Armour", - ["type"] = "explicit", + ["Flail"] = { + ["max"] = 100, + ["min"] = 19, }, - ["usePositiveSign"] = true, - }, - ["832_LocalBaseArmourAndEvasionRating"] = { - ["Boots"] = { - ["max"] = 57, - ["min"] = 6, + ["Quarterstaff"] = { + ["max"] = 139, + ["min"] = 34, }, - ["Chest"] = { - ["max"] = 126, - ["min"] = 6, + ["Spear"] = { + ["max"] = 100, + ["min"] = 19, }, - ["Gloves"] = { - ["max"] = 57, - ["min"] = 6, + ["Talisman"] = { + ["max"] = 139, + ["min"] = 34, }, - ["Helmet"] = { - ["max"] = 69, - ["min"] = 6, + ["specialCaseData"] = { }, - ["Shield"] = { - ["max"] = 107, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", + ["type"] = "explicit", }, + }, + ["3885405204"] = { ["specialCaseData"] = { + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "# to Evasion Rating", + ["id"] = "explicit.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["832_LocalBaseEvasionRatingAndEnergyShield"] = { - ["Boots"] = { - ["max"] = 57, + ["3917489142"] = { + ["Amulet"] = { + ["max"] = 19, ["min"] = 6, }, - ["Chest"] = { - ["max"] = 126, + ["Boots"] = { + ["max"] = 18, ["min"] = 6, }, ["Gloves"] = { - ["max"] = 57, + ["max"] = 18, ["min"] = 6, }, ["Helmet"] = { - ["max"] = 69, + ["max"] = 19, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 19, ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "# to Evasion Rating", + ["id"] = "explicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["832_LocalEvasionRating"] = { - ["Boots"] = { - ["max"] = 142, - ["min"] = 11, + ["3962278098"] = { + ["1HWeapon"] = { + ["max"] = 119, + ["min"] = 25, }, - ["Chest"] = { - ["max"] = 251, - ["min"] = 11, + ["2HWeapon"] = { + ["max"] = 238, + ["min"] = 50, }, - ["Gloves"] = { - ["max"] = 142, - ["min"] = 11, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 1, }, - ["Helmet"] = { - ["max"] = 181, - ["min"] = 11, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Shield"] = { - ["max"] = 232, - ["min"] = 11, + ["Focus"] = { + ["max"] = 89, + ["min"] = 25, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 119, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "# to Evasion Rating", + ["id"] = "explicit.stat_3962278098", + ["text"] = "#% increased Fire Damage", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["832_LocalIncreasedArmourAndEvasionAndBase"] = { - ["Chest"] = { - ["max"] = 39, + ["3973629633"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 5, ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "# to Evasion Rating", + ["id"] = "explicit.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["832_LocalIncreasedEvasionAndBase"] = { + ["3981240776"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 30, + }, ["Chest"] = { - ["max"] = 79, - ["min"] = 5, + ["max"] = 61, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "# to Evasion Rating", + ["id"] = "explicit.stat_3981240776", + ["text"] = "# to Spirit", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["832_LocalIncreasedEvasionAndEnergyShieldAndBase"] = { - ["Chest"] = { - ["max"] = 39, - ["min"] = 3, + ["3984865854"] = { + ["1HWeapon"] = { + ["max"] = 65, + ["min"] = 27, + }, + ["Sceptre"] = { + ["max"] = 65, + ["min"] = 27, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "# to Evasion Rating", + ["id"] = "explicit.stat_3984865854", + ["text"] = "#% increased Spirit", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["833_LocalBaseArmourAndEnergyShield"] = { - ["Boots"] = { - ["max"] = 25, + ["4009879772"] = { + ["AnyJewel"] = { + ["max"] = 20, ["min"] = 5, }, - ["Chest"] = { - ["max"] = 48, - ["min"] = 5, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Gloves"] = { - ["max"] = 25, + ["RadiusJewel"] = { + ["max"] = 10, ["min"] = 5, }, - ["Helmet"] = { - ["max"] = 29, - ["min"] = 5, + ["specialCaseData"] = { }, - ["Shield"] = { - ["max"] = 42, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "explicit.stat_4009879772", + ["text"] = "#% increased Life Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["4010677958"] = { + ["1HWeapon"] = { + ["max"] = 33, + ["min"] = 1, + }, + ["Sceptre"] = { + ["max"] = 33, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["id"] = "explicit.stat_4010677958", + ["text"] = "Allies in your Presence Regenerate # Life per second", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["833_LocalBaseEvasionRatingAndEnergyShield"] = { + ["4015621042"] = { ["Boots"] = { - ["max"] = 25, - ["min"] = 5, + ["max"] = 100, + ["min"] = 15, }, ["Chest"] = { - ["max"] = 48, - ["min"] = 5, + ["max"] = 110, + ["min"] = 15, + }, + ["Focus"] = { + ["max"] = 100, + ["min"] = 15, }, ["Gloves"] = { - ["max"] = 25, - ["min"] = 5, + ["max"] = 100, + ["min"] = 15, }, ["Helmet"] = { - ["max"] = 29, - ["min"] = 5, + ["max"] = 100, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 110, + ["min"] = 101, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["id"] = "explicit.stat_4015621042", + ["text"] = "#% increased Energy Shield", + ["type"] = "explicit", + }, + }, + ["4019237939"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4019237939", + ["text"] = "Gain #% of Damage as Extra Physical Damage", + ["type"] = "explicit", + }, + }, + ["4045894391"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4045894391", + ["text"] = "#% increased Damage with Quarterstaves", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["833_LocalEnergyShield"] = { + ["4052037485"] = { ["Boots"] = { ["max"] = 60, ["min"] = 10, @@ -14645,787 +15097,930 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["id"] = "explicit.stat_4052037485", + ["text"] = "# to maximum Energy Shield (Local)", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["833_LocalIncreasedArmourAndEnergyShieldAndBase"] = { - ["Chest"] = { - ["max"] = 15, - ["min"] = 2, + ["4067062424"] = { + ["Gloves"] = { + ["max"] = 30.5, + ["min"] = 1.5, + }, + ["Quiver"] = { + ["max"] = 30.5, + ["min"] = 1.5, + }, + ["Ring"] = { + ["max"] = 30.5, + ["min"] = 1.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["id"] = "explicit.stat_4067062424", + ["text"] = "Adds # to # Cold damage to Attacks", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["833_LocalIncreasedEnergyShieldAndBase"] = { + ["4080418644"] = { + ["1HMace"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["1HWeapon"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Amulet"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Belt"] = { + ["max"] = 36, + ["min"] = 5, + }, + ["Boots"] = { + ["max"] = 33, + ["min"] = 5, + }, ["Chest"] = { - ["max"] = 30, - ["min"] = 4, + ["max"] = 33, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Gloves"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 33, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["id"] = "explicit.stat_4080418644", + ["text"] = "# to Strength", ["type"] = "explicit", }, ["usePositiveSign"] = true, }, - ["833_LocalIncreasedEvasionAndEnergyShieldAndBase"] = { - ["Chest"] = { - ["max"] = 15, - ["min"] = 2, + ["4081947835"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["id"] = "explicit.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["834_LocalArmourAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 42, - ["min"] = 6, + ["4095671657"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["Shield"] = { - ["max"] = 42, - ["min"] = 6, + ["max"] = 3, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["id"] = "explicit.stat_4095671657", + ["text"] = "#% to Maximum Fire Resistance", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["834_LocalIncreasedArmourAndBase"] = { - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["4101445926"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["id"] = "explicit.stat_4101445926", + ["text"] = "#% increased Mana Cost Efficiency", ["type"] = "explicit", }, }, - ["834_LocalIncreasedArmourAndLife"] = { - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 42, - ["min"] = 6, + ["4129825612"] = { + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "explicit.stat_4129825612", + ["text"] = "#% of Physical Damage from Hits taken as Chaos Damage", + ["type"] = "explicit", }, + }, + ["4139681126"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["id"] = "explicit.stat_4139681126", + ["text"] = "#% increased Dexterity", ["type"] = "explicit", }, }, - ["834_LocalIncreasedArmourAndMana"] = { - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, + ["4147897060"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["id"] = "explicit.stat_4147897060", + ["text"] = "#% increased Block chance", ["type"] = "explicit", }, }, - ["834_LocalPhysicalDamageReductionRatingPercent"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 15, + ["4159248054"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 3, }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 15, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 15, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["id"] = "explicit.stat_4159248054", + ["text"] = "#% increased Warcry Cooldown Recovery Rate", ["type"] = "explicit", }, }, - ["835_LocalEvasionAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 42, - ["min"] = 6, + ["416040624"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 1, }, - ["Shield"] = { - ["max"] = 42, - ["min"] = 6, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "explicit.stat_416040624", + ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, }, - ["835_LocalEvasionRatingIncreasePercent"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 15, + ["4188894176"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 2, }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 15, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 15, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "explicit.stat_4188894176", + ["text"] = "#% increased Damage with Bows", ["type"] = "explicit", }, }, - ["835_LocalIncreasedEvasionAndBase"] = { - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, + ["4215035940"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "explicit.stat_4215035940", + ["text"] = "On Corruption, Item gains two Enchantments", ["type"] = "explicit", }, }, - ["835_LocalIncreasedEvasionAndLife"] = { + ["4220027924"] = { + ["Amulet"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Belt"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 45, + ["min"] = 6, + }, ["Chest"] = { - ["max"] = 42, + ["max"] = 45, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 45, ["min"] = 6, }, ["Gloves"] = { - ["max"] = 42, + ["max"] = 45, ["min"] = 6, }, ["Helmet"] = { - ["max"] = 42, + ["max"] = 45, + ["min"] = 6, + }, + ["Ring"] = { + ["max"] = 45, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 45, ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "explicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["835_LocalIncreasedEvasionAndMana"] = { - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, + ["4226189338"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "explicit.stat_4226189338", + ["text"] = "# to Level of all Chaos Spell Skills", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["8364_MeleeDamageIfProjectileHitRecently"] = { + ["4234573345"] = { ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["max"] = 25, + ["min"] = 15, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["RadiusJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3028809864", - ["text"] = "#% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["id"] = "explicit.stat_4234573345", + ["text"] = "#% increased Effect of Notable Passive Skills in Radius", ["type"] = "explicit", }, }, - ["8364_MeleeDamageIfProjectileHitRecentlyRadius"] = { + ["4236566306"] = { ["AnyJewel"] = { - ["max"] = 3, + ["max"] = 8, ["min"] = 2, }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, ["RadiusJewel"] = { - ["max"] = 3, + ["max"] = 4, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2421151933", - ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["id"] = "explicit.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", ["type"] = "explicit", }, }, - ["836_LocalEnergyShieldAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 42, + ["427684353"] = { + ["AnyJewel"] = { + ["max"] = 16, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 16, ["min"] = 6, }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4015621042", - ["text"] = "#% increased Energy Shield", + ["id"] = "explicit.stat_427684353", + ["text"] = "#% increased Damage with Crossbows", ["type"] = "explicit", }, }, - ["836_LocalEnergyShieldPercent"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["Focus"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 15, + ["429143663"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 2, }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 15, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 101, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4015621042", - ["text"] = "#% increased Energy Shield", + ["id"] = "explicit.stat_429143663", + ["text"] = "Banner Skills have #% increased Area of Effect", ["type"] = "explicit", }, }, - ["836_LocalIncreasedEnergyShieldAndBase"] = { - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, + ["440490623"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 5, }, - ["specialCaseData"] = { + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4015621042", - ["text"] = "#% increased Energy Shield", - ["type"] = "explicit", - }, - }, - ["836_LocalIncreasedEnergyShieldAndLife"] = { - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4015621042", - ["text"] = "#% increased Energy Shield", + ["id"] = "explicit.stat_440490623", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict with Critical Hits", ["type"] = "explicit", }, }, - ["836_LocalIncreasedEnergyShieldAndMana"] = { - ["Focus"] = { - ["max"] = 42, - ["min"] = 6, + ["44972811"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 3, }, - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4015621042", - ["text"] = "#% increased Energy Shield", + ["id"] = "explicit.stat_44972811", + ["text"] = "#% increased Life Regeneration rate", ["type"] = "explicit", }, }, - ["837_LocalArmourAndEvasion"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 15, + ["458438597"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 1, }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 15, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 15, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", + ["id"] = "explicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", ["type"] = "explicit", }, }, - ["837_LocalArmourAndEvasionAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 42, - ["min"] = 6, + ["472520716"] = { + ["Amulet"] = { + ["max"] = 24, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", + ["id"] = "explicit.stat_472520716", + ["text"] = "#% of Damage taken Recouped as Mana", ["type"] = "explicit", }, }, - ["837_LocalIncreasedArmourAndEvasionAndBase"] = { - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", - ["type"] = "explicit", + ["473429811"] = { + ["1HWeapon"] = { + ["max"] = 80, + ["min"] = 31, }, - }, - ["837_LocalIncreasedArmourAndEvasionAndLife"] = { - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, + ["2HWeapon"] = { + ["max"] = 80, + ["min"] = 31, }, - ["Gloves"] = { - ["max"] = 42, - ["min"] = 6, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 5, }, - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["specialCaseData"] = { + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", - ["type"] = "explicit", + ["Staff"] = { + ["max"] = 80, + ["min"] = 31, }, - }, - ["837_LocalIncreasedArmourAndEvasionAndMana"] = { - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, + ["Wand"] = { + ["max"] = 80, + ["min"] = 31, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2451402625", - ["text"] = "#% increased Armour and Evasion", + ["id"] = "explicit.stat_473429811", + ["text"] = "#% increased Freeze Buildup", ["type"] = "explicit", }, }, - ["838_LocalArmourAndEnergyShield"] = { - ["Boots"] = { - ["max"] = 100, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 100, - ["min"] = 15, + ["491450213"] = { + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 5, }, - ["Helmet"] = { - ["max"] = 100, - ["min"] = 15, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Shield"] = { - ["max"] = 110, - ["min"] = 15, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", + ["id"] = "explicit.stat_491450213", + ["text"] = "Minions have #% increased Critical Hit Chance", ["type"] = "explicit", }, }, - ["838_LocalArmourAndEnergyShieldAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 42, - ["min"] = 6, + ["518292764"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 1.01, }, - ["Shield"] = { - ["max"] = 42, - ["min"] = 6, + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1.01, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 5, + ["min"] = 1.01, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 5, + ["min"] = 1.01, }, - }, - ["838_LocalIncreasedArmourAndEnergyShieldAndBase"] = { - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, + ["Bow"] = { + ["max"] = 5, + ["min"] = 1.01, }, - ["specialCaseData"] = { + ["Crossbow"] = { + ["max"] = 5, + ["min"] = 1.01, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", - ["type"] = "explicit", + ["Flail"] = { + ["max"] = 5, + ["min"] = 1.01, }, - }, - ["838_LocalIncreasedArmourAndEnergyShieldAndLife"] = { - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, + ["Quarterstaff"] = { + ["max"] = 5, + ["min"] = 1.01, }, - ["Gloves"] = { - ["max"] = 42, - ["min"] = 6, + ["Spear"] = { + ["max"] = 5, + ["min"] = 1.01, }, - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, + ["Talisman"] = { + ["max"] = 5, + ["min"] = 1.01, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", + ["id"] = "explicit.stat_518292764", + ["text"] = "#% to Critical Hit Chance", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["838_LocalIncreasedArmourAndEnergyShieldAndMana"] = { - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, + ["51994685"] = { + ["Belt"] = { + ["max"] = 40, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3321629045", - ["text"] = "#% increased Armour and Energy Shield", + ["id"] = "explicit.stat_51994685", + ["text"] = "#% increased Flask Life Recovery rate", ["type"] = "explicit", }, }, - ["839_LocalEvasionAndEnergyShield"] = { + ["53045048"] = { ["Boots"] = { - ["max"] = 100, - ["min"] = 15, + ["max"] = 142, + ["min"] = 11, }, ["Chest"] = { - ["max"] = 110, - ["min"] = 15, + ["max"] = 251, + ["min"] = 11, }, ["Gloves"] = { - ["max"] = 100, - ["min"] = 15, + ["max"] = 142, + ["min"] = 11, }, ["Helmet"] = { - ["max"] = 100, - ["min"] = 15, + ["max"] = 181, + ["min"] = 11, }, ["Shield"] = { - ["max"] = 110, - ["min"] = 101, + ["max"] = 232, + ["min"] = 11, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", + ["id"] = "explicit.stat_53045048", + ["text"] = "# to Evasion Rating (Local)", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["839_LocalEvasionAndEnergyShieldAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 42, - ["min"] = 6, + ["538241406"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 2, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", - ["type"] = "explicit", + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - }, - ["839_LocalIncreasedEvasionAndEnergyShieldAndBase"] = { - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", + ["id"] = "explicit.stat_538241406", + ["text"] = "Damaging Ailments deal damage #% faster", ["type"] = "explicit", }, }, - ["839_LocalIncreasedEvasionAndEnergyShieldAndLife"] = { - ["Chest"] = { - ["max"] = 42, - ["min"] = 6, + ["55876295"] = { + ["1HMace"] = { + ["max"] = 9.9, + ["min"] = 5, }, - ["Gloves"] = { - ["max"] = 42, - ["min"] = 6, + ["1HWeapon"] = { + ["max"] = 9.9, + ["min"] = 5, }, - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, + ["2HMace"] = { + ["max"] = 9.9, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 9.9, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 8.9, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 9.9, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 9.9, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 9.9, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 9.9, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", + ["id"] = "explicit.stat_55876295", + ["text"] = "Leeches #% of Physical Damage as Life", ["type"] = "explicit", }, }, - ["839_LocalIncreasedEvasionAndEnergyShieldAndMana"] = { - ["Helmet"] = { - ["max"] = 42, - ["min"] = 6, + ["565784293"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1999113824", - ["text"] = "#% increased Evasion and Energy Shield", + ["id"] = "explicit.stat_565784293", + ["text"] = "#% increased Knockback Distance", ["type"] = "explicit", }, }, - ["840_LocalArmourAndEvasionAndEnergyShield"] = { - ["Boots"] = { - ["max"] = 110, - ["min"] = 15, + ["587431675"] = { + ["Amulet"] = { + ["max"] = 38, + ["min"] = 10, }, - ["Chest"] = { - ["max"] = 110, - ["min"] = 15, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 3, }, - ["Gloves"] = { - ["max"] = 110, - ["min"] = 15, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, ["Helmet"] = { - ["max"] = 110, - ["min"] = 15, + ["max"] = 34, + ["min"] = 10, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3523867985", - ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["id"] = "explicit.stat_587431675", + ["text"] = "#% increased Critical Hit Chance", ["type"] = "explicit", }, }, - ["842_LocalIncreasedSpiritAndMana"] = { + ["591105508"] = { ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 10, + ["max"] = 5, + ["min"] = 1, }, - ["Sceptre"] = { - ["max"] = 38, - ["min"] = 10, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Staff"] = { + ["max"] = 7, + ["min"] = 1, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3984865854", - ["text"] = "#% increased Spirit", + ["id"] = "explicit.stat_591105508", + ["text"] = "# to Level of all Fire Spell Skills", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["842_LocalIncreasedSpiritPercent"] = { - ["1HWeapon"] = { - ["max"] = 65, - ["min"] = 27, + ["624954515"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 1, }, - ["Sceptre"] = { - ["max"] = 65, - ["min"] = 27, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3984865854", - ["text"] = "#% increased Spirit", + ["id"] = "explicit.stat_624954515", + ["text"] = "#% increased Accuracy Rating", ["type"] = "explicit", }, }, - ["843_PhysicalDamage"] = { - ["Gloves"] = { - ["max"] = 25.5, + ["627767961"] = { + ["AnyJewel"] = { + ["max"] = 20, ["min"] = 2, }, - ["Quiver"] = { - ["max"] = 25.5, - ["min"] = 2, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, - ["Ring"] = { - ["max"] = 25.5, + ["RadiusJewel"] = { + ["max"] = 3, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", + ["id"] = "explicit.stat_627767961", + ["text"] = "#% increased Damage while you have an active Charm", ["type"] = "explicit", }, }, - ["8446_MinionAccuracyRatingForJewel"] = { + ["644456512"] = { + ["Belt"] = { + ["max"] = 25, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1718147982", - ["text"] = "#% increased Minion Accuracy Rating", + ["id"] = "explicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", ["type"] = "explicit", }, }, - ["8446_MinionAccuracyRatingForJewelRadius"] = { + ["656461285"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_793875384", - ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", + ["id"] = "explicit.stat_656461285", + ["text"] = "#% increased Intelligence", ["type"] = "explicit", }, }, - ["844_FireDamage"] = { - ["Gloves"] = { - ["max"] = 37, - ["min"] = 2, + ["669069897"] = { + ["1HMace"] = { + ["max"] = 8.9, + ["min"] = 4, }, - ["Quiver"] = { - ["max"] = 37, - ["min"] = 2, + ["1HWeapon"] = { + ["max"] = 8.9, + ["min"] = 4, }, - ["Ring"] = { - ["max"] = 37, - ["min"] = 2, + ["2HMace"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["2HWeapon"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["Bow"] = { + ["max"] = 7.9, + ["min"] = 4, + }, + ["Crossbow"] = { + ["max"] = 7.9, + ["min"] = 4, + }, + ["Flail"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["Quarterstaff"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["Spear"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["Talisman"] = { + ["max"] = 8.9, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1573130764", - ["text"] = "Adds # to # Fire damage to Attacks", + ["id"] = "explicit.stat_669069897", + ["text"] = "Leeches #% of Physical Damage as Mana", ["type"] = "explicit", }, }, - ["8453_MinionAttackSpeedAndCastSpeed"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, + ["674553446"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3091578504", - ["text"] = "Minions have #% increased Attack and Cast Speed", + ["id"] = "explicit.stat_674553446", + ["text"] = "Adds # to # Chaos Damage to Attacks", ["type"] = "explicit", }, }, - ["8453_MinionAttackSpeedAndCastSpeedRadius"] = { + ["680068163"] = { ["AnyJewel"] = { - ["max"] = 2, + ["max"] = 16, ["min"] = 1, }, + ["BaseJewel"] = { + ["max"] = 16, + ["min"] = 6, + }, ["RadiusJewel"] = { ["max"] = 2, ["min"] = 1, @@ -15433,246 +16028,225 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3106718406", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", + ["id"] = "explicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", ["type"] = "explicit", }, }, - ["845_ColdDamage"] = { - ["Gloves"] = { - ["max"] = 30.5, - ["min"] = 1.5, - }, - ["Quiver"] = { - ["max"] = 30.5, - ["min"] = 1.5, - }, - ["Ring"] = { - ["max"] = 30.5, - ["min"] = 1.5, - }, - ["specialCaseData"] = { + ["681332047"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4067062424", - ["text"] = "Adds # to # Cold damage to Attacks", - ["type"] = "explicit", + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, }, - }, - ["846_LightningDamage"] = { ["Gloves"] = { - ["max"] = 37.5, - ["min"] = 2.5, + ["max"] = 16, + ["min"] = 5, }, ["Quiver"] = { - ["max"] = 37.5, - ["min"] = 2.5, + ["max"] = 16, + ["min"] = 5, }, - ["Ring"] = { - ["max"] = 37.5, - ["min"] = 2.5, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1754445556", - ["text"] = "Adds # to # Lightning damage to Attacks", + ["id"] = "explicit.stat_681332047", + ["text"] = "#% increased Attack Speed", ["type"] = "explicit", }, }, - ["8476_MinionCriticalStrikeChanceIncrease"] = { + ["686254215"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 10, + ["min"] = 2, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_491450213", - ["text"] = "Minions have #% increased Critical Hit Chance", + ["id"] = "explicit.stat_686254215", + ["text"] = "#% increased Totem Life", ["type"] = "explicit", }, }, - ["8476_MinionCriticalStrikeChanceIncreaseRadius"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["691932474"] = { + ["1HMace"] = { + ["max"] = 550, + ["min"] = 11, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, + ["1HWeapon"] = { + ["max"] = 550, + ["min"] = 11, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 550, + ["min"] = 11, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3628935286", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 650, + ["min"] = 11, }, - }, - ["8478_MinionCriticalStrikeMultiplier"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["Bow"] = { + ["max"] = 650, + ["min"] = 11, }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["Crossbow"] = { + ["max"] = 650, + ["min"] = 11, }, - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 550, + ["min"] = 11, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1854213750", - ["text"] = "Minions have #% increased Critical Damage Bonus", - ["type"] = "explicit", + ["Quarterstaff"] = { + ["max"] = 550, + ["min"] = 11, }, - }, - ["8478_MinionCriticalStrikeMultiplierRadius"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["Spear"] = { + ["max"] = 550, + ["min"] = 11, }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["Talisman"] = { + ["max"] = 550, + ["min"] = 11, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_593241812", - ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", + ["id"] = "explicit.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["847_DamageGainedAsFire"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 26, - }, - ["Staff"] = { - ["max"] = 60, - ["min"] = 26, + ["700317374"] = { + ["LifeFlask"] = { + ["max"] = 80, + ["min"] = 41, }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 13, + ["ManaFlask"] = { + ["max"] = 80, + ["min"] = 41, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3015669065", - ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["id"] = "explicit.stat_700317374", + ["text"] = "#% increased Amount Recovered", ["type"] = "explicit", }, }, - ["847_DamageasExtraFire"] = { + ["707457662"] = { + ["Gloves"] = { + ["max"] = 8.9, + ["min"] = 4, + }, + ["Ring"] = { + ["max"] = 6.9, + ["min"] = 4, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3015669065", - ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["id"] = "explicit.stat_707457662", + ["text"] = "Leech #% of Physical Attack Damage as Mana", ["type"] = "explicit", }, }, - ["849_DamageGainedAsCold"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 13, - }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 26, - }, - ["Staff"] = { - ["max"] = 60, - ["min"] = 26, + ["709508406"] = { + ["1HMace"] = { + ["max"] = 127.5, + ["min"] = 2, }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 13, + ["1HWeapon"] = { + ["max"] = 127.5, + ["min"] = 2, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 196, + ["min"] = 3.5, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2505884597", - ["text"] = "Gain #% of Damage as Extra Cold Damage", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 196, + ["min"] = 2, }, - }, - ["849_DamageasExtraCold"] = { - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 127.5, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2505884597", - ["text"] = "Gain #% of Damage as Extra Cold Damage", - ["type"] = "explicit", + ["Crossbow"] = { + ["max"] = 196, + ["min"] = 3.5, }, - }, - ["851_DamageGainedAsLightning"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 13, + ["Flail"] = { + ["max"] = 127.5, + ["min"] = 2, }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 26, + ["Quarterstaff"] = { + ["max"] = 196, + ["min"] = 3.5, }, - ["Staff"] = { - ["max"] = 60, - ["min"] = 26, + ["Spear"] = { + ["max"] = 127.5, + ["min"] = 2, }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 13, + ["Talisman"] = { + ["max"] = 196, + ["min"] = 3.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3278136794", - ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["id"] = "explicit.stat_709508406", + ["text"] = "Adds # to # Fire Damage", ["type"] = "explicit", }, }, - ["851_DamageasExtraLightning"] = { - ["specialCaseData"] = { + ["712554801"] = { + ["AnyJewel"] = { + ["max"] = 8, + ["min"] = 2, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3278136794", - ["text"] = "Gain #% of Damage as Extra Lightning Damage", - ["type"] = "explicit", + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, - }, - ["8529_MinionReviveSpeed"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2639966148", - ["text"] = "Minions Revive #% faster", + ["id"] = "explicit.stat_712554801", + ["text"] = "#% increased Effect of your Mark Skills", ["type"] = "explicit", }, }, - ["853_SpellDamage"] = { - ["Amulet"] = { - ["max"] = 30, - ["min"] = 3, - }, + ["734614379"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_734614379", + ["text"] = "#% increased Strength", ["type"] = "explicit", }, }, - ["853_WeaponSpellDamage"] = { + ["736967255"] = { ["1HWeapon"] = { ["max"] = 119, ["min"] = 25, @@ -15682,21 +16256,29 @@ return { ["min"] = 50, }, ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 12, + ["min"] = 1, }, ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 12, + ["min"] = 6, }, ["Focus"] = { ["max"] = 89, ["min"] = 25, }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 3, + }, + ["Staff"] = { + ["max"] = 238, + ["min"] = 50, + }, ["Wand"] = { ["max"] = 119, ["min"] = 25, @@ -15704,309 +16286,290 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_736967255", + ["text"] = "#% increased Chaos Damage", ["type"] = "explicit", }, }, - ["853_WeaponSpellDamageAndMana"] = { + ["737908626"] = { ["1HWeapon"] = { - ["max"] = 49, - ["min"] = 15, + ["max"] = 73, + ["min"] = 27, }, ["2HWeapon"] = { - ["max"] = 98, - ["min"] = 30, + ["max"] = 109, + ["min"] = 40, + }, + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 59, + ["min"] = 27, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["Staff"] = { - ["max"] = 98, - ["min"] = 30, + ["max"] = 109, + ["min"] = 40, }, ["Wand"] = { - ["max"] = 49, - ["min"] = 15, + ["max"] = 73, + ["min"] = 27, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "explicit.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", ["type"] = "explicit", }, }, - ["853_WeaponSpellDamageRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["748522257"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 11, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 11, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 30, + ["min"] = 11, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1137305356", - ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", - ["type"] = "explicit", + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 11, }, - }, - ["855_FireDamagePercentage"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Flail"] = { + ["max"] = 30, + ["min"] = 11, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["Quarterstaff"] = { + ["max"] = 30, + ["min"] = 11, }, - ["Ring"] = { + ["Spear"] = { ["max"] = 30, - ["min"] = 3, + ["min"] = 11, + }, + ["Talisman"] = { + ["max"] = 30, + ["min"] = 11, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", + ["id"] = "explicit.stat_748522257", + ["text"] = "#% increased Stun Duration", ["type"] = "explicit", }, }, - ["855_FireDamagePercentageRadius"] = { + ["770672621"] = { + ["1HWeapon"] = { + ["max"] = 50, + ["min"] = 21, + }, ["AnyJewel"] = { - ["max"] = 2, + ["max"] = 15, ["min"] = 1, }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, + }, ["RadiusJewel"] = { ["max"] = 2, ["min"] = 1, }, + ["Sceptre"] = { + ["max"] = 50, + ["min"] = 21, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_139889694", - ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", + ["id"] = "explicit.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", ["type"] = "explicit", }, }, - ["855_FireDamageWeaponPrefix"] = { + ["789117908"] = { ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, + ["max"] = 69, + ["min"] = 10, }, ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["specialCaseData"] = { + ["max"] = 104, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3962278098", - ["text"] = "#% increased Fire Damage", - ["type"] = "explicit", + ["Amulet"] = { + ["max"] = 69, + ["min"] = 10, }, - }, - ["856_ColdDamagePercentage"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 1, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", - ["type"] = "explicit", - }, - }, - ["856_ColdDamagePercentageRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Focus"] = { + ["max"] = 69, + ["min"] = 10, }, ["RadiusJewel"] = { ["max"] = 2, ["min"] = 1, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2442527254", - ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", - ["type"] = "explicit", - }, - }, - ["856_ColdDamageWeaponPrefix"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, + ["Ring"] = { + ["max"] = 69, + ["min"] = 10, }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, + ["Sceptre"] = { + ["max"] = 69, + ["min"] = 10, }, ["Staff"] = { - ["max"] = 238, - ["min"] = 50, + ["max"] = 104, + ["min"] = 15, }, ["Wand"] = { - ["max"] = 119, - ["min"] = 25, + ["max"] = 69, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3291658075", - ["text"] = "#% increased Cold Damage", + ["id"] = "explicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "explicit", }, }, - ["857_LightningDamagePercentage"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["791928121"] = { + ["1HMace"] = { + ["max"] = 80, + ["min"] = 21, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["1HWeapon"] = { + ["max"] = 80, + ["min"] = 21, }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 3, + ["2HMace"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["2HWeapon"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Flail"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Quarterstaff"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Spear"] = { + ["max"] = 80, + ["min"] = 21, + }, + ["Talisman"] = { + ["max"] = 80, + ["min"] = 21, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", + ["id"] = "explicit.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", ["type"] = "explicit", }, }, - ["857_LightningDamagePercentageRadius"] = { + ["795138349"] = { ["AnyJewel"] = { - ["max"] = 2, + ["max"] = 10, ["min"] = 1, }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["RadiusJewel"] = { - ["max"] = 2, + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2768899959", - ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", + ["id"] = "explicit.stat_795138349", + ["text"] = "#% chance to Poison on Hit", ["type"] = "explicit", }, }, - ["857_LightningDamageWeaponPrefix"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, + ["803737631"] = { + ["Amulet"] = { + ["max"] = 450, + ["min"] = 11, }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, - }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2231156303", - ["text"] = "#% increased Lightning Damage", - ["type"] = "explicit", - }, - }, - ["858_ChaosDamageWeaponPrefix"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, + ["Gloves"] = { + ["max"] = 550, + ["min"] = 11, }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, + ["Helmet"] = { + ["max"] = 550, + ["min"] = 11, }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, + ["Quiver"] = { + ["max"] = 550, + ["min"] = 11, }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, + ["Ring"] = { + ["max"] = 450, + ["min"] = 11, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "explicit.stat_803737631", + ["text"] = "# to Accuracy Rating", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["858_IncreasedChaosDamage"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 3, + ["809229260"] = { + ["Belt"] = { + ["max"] = 255, + ["min"] = 12, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "explicit.stat_809229260", + ["text"] = "# to Armour", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["858_IncreasedChaosDamageRadius"] = { + ["818778753"] = { ["AnyJewel"] = { - ["max"] = 2, + ["max"] = 10, ["min"] = 1, }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["RadiusJewel"] = { ["max"] = 2, ["min"] = 1, @@ -16014,7519 +16577,1323 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1309799717", - ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", - ["type"] = "explicit", - }, - }, - ["858_PoisonDurationChaosDamage"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_736967255", - ["text"] = "#% increased Chaos Damage", + ["id"] = "explicit.stat_818778753", + ["text"] = "Damage Penetrates #% Lightning Resistance", ["type"] = "explicit", }, }, - ["859_IncreasedWeaponElementalDamagePercent"] = { + ["821021828"] = { ["1HMace"] = { - ["max"] = 100, - ["min"] = 19, + ["max"] = 5, + ["min"] = 2, }, ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 19, + ["max"] = 5, + ["min"] = 2, }, ["2HMace"] = { - ["max"] = 139, - ["min"] = 34, + ["max"] = 5, + ["min"] = 2, }, ["2HWeapon"] = { - ["max"] = 139, - ["min"] = 19, + ["max"] = 5, + ["min"] = 2, }, ["Bow"] = { - ["max"] = 100, - ["min"] = 19, + ["max"] = 5, + ["min"] = 2, }, ["Crossbow"] = { - ["max"] = 139, - ["min"] = 34, + ["max"] = 5, + ["min"] = 2, }, ["Flail"] = { - ["max"] = 100, - ["min"] = 19, + ["max"] = 5, + ["min"] = 2, }, ["Quarterstaff"] = { - ["max"] = 139, - ["min"] = 34, + ["max"] = 5, + ["min"] = 2, }, ["Spear"] = { - ["max"] = 100, - ["min"] = 19, + ["max"] = 5, + ["min"] = 2, }, ["Talisman"] = { - ["max"] = 139, - ["min"] = 34, + ["max"] = 5, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attacks", + ["id"] = "explicit.stat_821021828", + ["text"] = "Grants # Life per Enemy Hit", ["type"] = "explicit", }, }, - ["860_PhysicalSpellDamageWeaponPrefix"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 238, - ["min"] = 50, - }, - ["Focus"] = { - ["max"] = 89, - ["min"] = 25, + ["821241191"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 2, }, - ["Staff"] = { - ["max"] = 238, - ["min"] = 50, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 5, }, - ["Wand"] = { - ["max"] = 119, - ["min"] = 25, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2768835289", - ["text"] = "#% increased Spell Physical Damage", + ["id"] = "explicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", ["type"] = "explicit", }, }, - ["861_DamageWithBowSkills"] = { - ["Quiver"] = { - ["max"] = 59, - ["min"] = 11, - }, + ["828533480"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1241625305", - ["text"] = "#% increased Damage with Bow Skills", + ["id"] = "explicit.stat_828533480", + ["text"] = "#% Chance to gain a Charge when you kill an enemy", ["type"] = "explicit", }, }, - ["862_IncreasedAccuracy"] = { - ["Amulet"] = { - ["max"] = 450, - ["min"] = 11, - }, - ["Gloves"] = { - ["max"] = 550, - ["min"] = 11, - }, - ["Helmet"] = { - ["max"] = 550, - ["min"] = 11, - }, - ["Quiver"] = { - ["max"] = 550, - ["min"] = 11, + ["849987426"] = { + ["1HWeapon"] = { + ["max"] = 37, + ["min"] = 2, }, - ["Ring"] = { - ["max"] = 450, - ["min"] = 11, + ["Sceptre"] = { + ["max"] = 37, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_803737631", - ["text"] = "# to Accuracy Rating", + ["id"] = "explicit.stat_849987426", + ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["862_LightRadiusAndAccuracy"] = { - ["Helmet"] = { - ["max"] = 60, - ["min"] = 10, + ["872504239"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 6, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_803737631", - ["text"] = "# to Accuracy Rating", + ["id"] = "explicit.stat_872504239", + ["text"] = "#% increased Stun Buildup with Maces", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["863_PhysicalDamageReductionRating"] = { - ["Belt"] = { - ["max"] = 255, - ["min"] = 12, + ["886931978"] = { + ["LifeFlask"] = { + ["max"] = 100, + ["min"] = 51, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_809229260", - ["text"] = "# to Armour", + ["id"] = "explicit.stat_886931978", + ["text"] = "#% more Recovery if used while on Low Life", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["864_GlobalPhysicalDamageReductionRatingPercent"] = { - ["Amulet"] = { - ["max"] = 50, - ["min"] = 10, + ["915769802"] = { + ["Belt"] = { + ["max"] = 304, + ["min"] = 6, }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Boots"] = { + ["max"] = 352, + ["min"] = 6, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Chest"] = { + ["max"] = 304, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 304, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2866361420", - ["text"] = "#% increased Armour", + ["id"] = "explicit.stat_915769802", + ["text"] = "# to Stun Threshold", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["864_GlobalPhysicalDamageReductionRatingPercentRadius"] = { + ["918325986"] = { ["AnyJewel"] = { - ["max"] = 3, + ["max"] = 4, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 4, ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 2, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3858398337", - ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", + ["id"] = "explicit.stat_918325986", + ["text"] = "#% increased Skill Speed while Shapeshifted", ["type"] = "explicit", }, }, - ["865_EvasionRating"] = { - ["Ring"] = { - ["max"] = 203, - ["min"] = 8, + ["9187492"] = { + ["1HMace"] = { + ["max"] = 5, + ["min"] = 1, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 5, + ["min"] = 1, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2144192055", - ["text"] = "# to Evasion Rating", - ["type"] = "explicit", + ["2HMace"] = { + ["max"] = 7, + ["min"] = 2, + }, + ["2HWeapon"] = { + ["max"] = 7, + ["min"] = 2, }, - ["usePositiveSign"] = true, - }, - ["866_GlobalEvasionRatingPercent"] = { ["Amulet"] = { - ["max"] = 50, - ["min"] = 10, + ["max"] = 3, + ["min"] = 1, }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Flail"] = { + ["max"] = 5, + ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["Gloves"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 7, + ["min"] = 2, + }, + ["Spear"] = { + ["max"] = 5, + ["min"] = 1, + }, + ["Talisman"] = { + ["max"] = 7, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "explicit.stat_9187492", + ["text"] = "# to Level of all Melee Skills", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["866_GlobalEvasionRatingPercentRadius"] = { + ["924253255"] = { ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 5, + ["min"] = -10, + }, + ["BaseJewel"] = { + ["max"] = -5, + ["min"] = -10, }, ["RadiusJewel"] = { - ["max"] = 3, + ["max"] = 5, ["min"] = 2, }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1994296038", - ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", + ["id"] = "explicit.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", ["type"] = "explicit", }, }, - ["867_EnergyShield"] = { + ["983749596"] = { ["Amulet"] = { - ["max"] = 89, - ["min"] = 8, + ["max"] = 8, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["id"] = "explicit.stat_983749596", + ["text"] = "#% increased maximum Life", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["868_GlobalEnergyShieldPercent"] = { - ["Amulet"] = { - ["max"] = 50, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, + ["986397080"] = { + ["Chest"] = { + ["max"] = 60, + ["min"] = 36, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2482852589", - ["text"] = "#% increased maximum Energy Shield", + ["id"] = "explicit.stat_986397080", + ["text"] = "#% reduced Ignite Duration on you", ["type"] = "explicit", }, }, - ["868_GlobalEnergyShieldPercentRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["99927264"] = { + ["Boots"] = { + ["max"] = 60, + ["min"] = 36, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3665922113", - ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + ["id"] = "explicit.stat_99927264", + ["text"] = "#% reduced Shock duration on you", ["type"] = "explicit", }, }, - ["869_IncreasedLife"] = { - ["Amulet"] = { - ["max"] = 149, - ["min"] = 10, - }, - ["Belt"] = { - ["max"] = 174, - ["min"] = 10, - }, - ["Boots"] = { - ["max"] = 149, - ["min"] = 10, + }, + ["Implicit"] = { + ["1028592286"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["Chest"] = { - ["max"] = 214, - ["min"] = 10, + ["Bow"] = { + ["max"] = 30, + ["min"] = 20, }, - ["Gloves"] = { - ["max"] = 149, - ["min"] = 10, + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 174, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_1028592286", + ["text"] = "#% chance to Chain an additional time", + ["type"] = "implicit", }, + }, + ["1050105434"] = { ["Ring"] = { - ["max"] = 119, - ["min"] = 10, - }, - ["Shield"] = { - ["max"] = 189, - ["min"] = 10, + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "explicit", + ["id"] = "implicit.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "implicit", }, ["usePositiveSign"] = true, }, - ["869_LocalIncreasedArmourAndEnergyShieldAndLife"] = { - ["Chest"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["Gloves"] = { - ["max"] = 49, - ["min"] = 7, + ["1137147997"] = { + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Helmet"] = { - ["max"] = 49, - ["min"] = 7, + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "explicit", + ["id"] = "implicit.stat_1137147997", + ["text"] = "Unblockable", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["869_LocalIncreasedArmourAndEvasionAndLife"] = { - ["Chest"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["Gloves"] = { - ["max"] = 49, - ["min"] = 7, + ["1181501418"] = { + ["2HWeapon"] = { + ["max"] = 12, + ["min"] = 8, }, - ["Helmet"] = { - ["max"] = 49, - ["min"] = 7, + ["Talisman"] = { + ["max"] = 12, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "explicit", + ["id"] = "implicit.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "implicit", }, ["usePositiveSign"] = true, }, - ["869_LocalIncreasedArmourAndLife"] = { - ["Chest"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["Gloves"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["Helmet"] = { - ["max"] = 49, - ["min"] = 7, + ["1207554355"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "explicit", + ["id"] = "implicit.stat_1207554355", + ["text"] = "#% increased Arrow Speed", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["869_LocalIncreasedEnergyShieldAndLife"] = { - ["Chest"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["Gloves"] = { - ["max"] = 49, - ["min"] = 7, + ["1379411836"] = { + ["Amulet"] = { + ["max"] = 7, + ["min"] = 5, }, ["Helmet"] = { - ["max"] = 49, - ["min"] = 7, + ["max"] = 24, + ["min"] = 16, + }, + ["Ring"] = { + ["max"] = 12, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "explicit", + ["id"] = "implicit.stat_1379411836", + ["text"] = "# to all Attributes", + ["type"] = "implicit", }, ["usePositiveSign"] = true, }, - ["869_LocalIncreasedEvasionAndEnergyShieldAndLife"] = { - ["Chest"] = { - ["max"] = 49, - ["min"] = 7, + ["1389754388"] = { + ["Belt"] = { + ["max"] = 20, + ["min"] = 15, }, - ["Gloves"] = { - ["max"] = 49, - ["min"] = 7, + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 49, - ["min"] = 7, + ["tradeMod"] = { + ["id"] = "implicit.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", + ["type"] = "implicit", + }, + }, + ["1412682799"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "explicit", + ["id"] = "implicit.stat_1412682799", + ["text"] = "Used when you become Poisoned", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["869_LocalIncreasedEvasionAndLife"] = { - ["Chest"] = { - ["max"] = 49, - ["min"] = 7, - }, - ["Gloves"] = { - ["max"] = 49, - ["min"] = 7, + ["1434716233"] = { + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Helmet"] = { - ["max"] = 49, - ["min"] = 7, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "explicit", + ["id"] = "implicit.stat_1434716233", + ["text"] = "Warcries Empower an additional Attack", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["870_MaximumLifeIncreasePercent"] = { - ["Amulet"] = { - ["max"] = 8, - ["min"] = 3, + ["1444556985"] = { + ["Chest"] = { + ["max"] = 14, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_983749596", - ["text"] = "#% increased maximum Life", - ["type"] = "explicit", + ["id"] = "implicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "implicit", }, }, - ["871_IncreasedMana"] = { + ["1451444093"] = { ["1HWeapon"] = { - ["max"] = 164, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, }, - ["2HWeapon"] = { - ["max"] = 328, - ["min"] = 20, + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Amulet"] = { - ["max"] = 189, - ["min"] = 10, + ["specialCaseData"] = { }, - ["Belt"] = { - ["max"] = 124, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_1451444093", + ["text"] = "Bifurcates Critical Hits", + ["type"] = "implicit", }, - ["Boots"] = { - ["max"] = 124, - ["min"] = 10, + }, + ["1503146834"] = { + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Focus"] = { - ["max"] = 164, - ["min"] = 10, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Gloves"] = { - ["max"] = 124, - ["min"] = 10, + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 149, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_1503146834", + ["text"] = "Crushes Enemies on Hit", + ["type"] = "implicit", }, - ["Ring"] = { - ["max"] = 179, + }, + ["1541903247"] = { + ["2HMace"] = { + ["max"] = 10, ["min"] = 10, }, - ["Sceptre"] = { - ["max"] = 164, + ["2HWeapon"] = { + ["max"] = 10, ["min"] = 10, }, - ["Staff"] = { - ["max"] = 328, - ["min"] = 20, + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 164, + ["tradeMod"] = { + ["id"] = "implicit.stat_1541903247", + ["text"] = "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", + ["type"] = "implicit", + }, + }, + ["1570770415"] = { + ["Belt"] = { + ["max"] = 15, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "explicit", + ["id"] = "implicit.stat_1570770415", + ["text"] = "#% reduced Charm Charges used", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["871_LocalIncreasedArmourAndEnergyShieldAndMana"] = { - ["Helmet"] = { - ["max"] = 39, - ["min"] = 6, + ["1573130764"] = { + ["Quiver"] = { + ["max"] = 4, + ["min"] = 4, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "explicit", + ["id"] = "implicit.stat_1573130764", + ["text"] = "Adds # to # Fire damage to Attacks", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["871_LocalIncreasedArmourAndEvasionAndMana"] = { - ["Helmet"] = { - ["max"] = 39, - ["min"] = 6, + ["1589917703"] = { + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 30, + }, + ["Talisman"] = { + ["max"] = 50, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "explicit", + ["id"] = "implicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["871_LocalIncreasedArmourAndMana"] = { - ["Helmet"] = { - ["max"] = 39, - ["min"] = 6, + ["1671376347"] = { + ["Chest"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "explicit", + ["id"] = "implicit.stat_1671376347", + ["text"] = "#% to Lightning Resistance", + ["type"] = "implicit", }, ["usePositiveSign"] = true, }, - ["871_LocalIncreasedEnergyShieldAndMana"] = { - ["Focus"] = { - ["max"] = 39, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 39, - ["min"] = 6, + ["1691862754"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "explicit", + ["id"] = "implicit.stat_1691862754", + ["text"] = "Used when you become Frozen", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["871_LocalIncreasedEvasionAndEnergyShieldAndMana"] = { - ["Helmet"] = { - ["max"] = 39, - ["min"] = 6, + ["1702195217"] = { + ["2HWeapon"] = { + ["max"] = 18, + ["min"] = 10, + }, + ["Quarterstaff"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "explicit", + ["id"] = "implicit.stat_1702195217", + ["text"] = "#% to Block chance", + ["type"] = "implicit", }, ["usePositiveSign"] = true, }, - ["871_LocalIncreasedEvasionAndMana"] = { - ["Helmet"] = { - ["max"] = 39, - ["min"] = 6, + ["1745952865"] = { + ["Chest"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "explicit", + ["id"] = "implicit.stat_1745952865", + ["text"] = "#% reduced Elemental Ailment Duration on you", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["871_LocalIncreasedSpiritAndMana"] = { - ["1HWeapon"] = { - ["max"] = 45, - ["min"] = 17, - }, - ["Sceptre"] = { - ["max"] = 45, - ["min"] = 17, + ["1782086450"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 40, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "explicit", + ["id"] = "implicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["871_WeaponSpellDamageAndMana"] = { - ["1HWeapon"] = { - ["max"] = 45, - ["min"] = 17, - }, + ["1803308202"] = { ["2HWeapon"] = { - ["max"] = 90, - ["min"] = 34, - }, - ["Staff"] = { - ["max"] = 90, - ["min"] = 34, + ["max"] = 30, + ["min"] = 20, }, - ["Wand"] = { - ["max"] = 45, - ["min"] = 17, + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "explicit", + ["id"] = "implicit.stat_1803308202", + ["text"] = "#% increased Bolt Speed", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["871_WeaponTrapDamageAndMana"] = { + ["1810482573"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "explicit", + ["id"] = "implicit.stat_1810482573", + ["text"] = "Used when you become Stunned", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["872_MaximumManaIncreasePercent"] = { - ["Amulet"] = { - ["max"] = 8, - ["min"] = 3, + ["1836676211"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2748665614", - ["text"] = "#% increased maximum Mana", - ["type"] = "explicit", + ["id"] = "implicit.stat_1836676211", + ["text"] = "#% increased Flask Charges gained", + ["type"] = "implicit", }, }, - ["874_BaseSpirit"] = { - ["Amulet"] = { - ["max"] = 50, - ["min"] = 30, - }, + ["1978899297"] = { ["Chest"] = { - ["max"] = 61, - ["min"] = 30, + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "explicit", + ["id"] = "implicit.stat_1978899297", + ["text"] = "#% to all Maximum Elemental Resistances", + ["type"] = "implicit", }, ["usePositiveSign"] = true, }, - ["875_ProjectileSpeed"] = { - ["AnyJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["Quiver"] = { - ["max"] = 46, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - ["type"] = "explicit", - }, - }, - ["875_ProjectileSpeedRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["1980802737"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1777421941", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", - ["type"] = "explicit", + ["id"] = "implicit.stat_1980802737", + ["text"] = "Grenade Skills Fire an additional Projectile", + ["type"] = "implicit", }, }, - ["876_BeltFlaskLifeRecoveryRate"] = { - ["Belt"] = { - ["max"] = 40, - ["min"] = 5, + ["2016937536"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_51994685", - ["text"] = "#% increased Flask Life Recovery rate", - ["type"] = "explicit", + ["id"] = "implicit.stat_2016937536", + ["text"] = "Used when you take Lightning damage from a Hit", + ["type"] = "implicit", }, }, - ["8776_OfferingDuration"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["2194114101"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2957407601", - ["text"] = "Offering Skills have #% increased Duration", - ["type"] = "explicit", + ["id"] = "implicit.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", + ["type"] = "implicit", }, }, - ["8776_OfferingDurationRadius"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, + ["2222186378"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2374711847", - ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", - ["type"] = "explicit", + ["id"] = "implicit.stat_2222186378", + ["text"] = "#% increased Mana Recovery from Flasks", + ["type"] = "implicit", }, }, - ["8777_OfferingLife"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["2250533757"] = { + ["Chest"] = { + ["max"] = 5, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3787460122", - ["text"] = "Offerings have #% increased Maximum Life", - ["type"] = "explicit", + ["id"] = "implicit.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "implicit", }, }, - ["8777_OfferingLifeRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["2251279027"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2107703111", - ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", - ["type"] = "explicit", + ["id"] = "implicit.stat_2251279027", + ["text"] = "# to Level of all Corrupted Skill Gems", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["877_BeltFlaskManaRecoveryRate"] = { - ["Belt"] = { - ["max"] = 40, - ["min"] = 5, - }, - ["specialCaseData"] = { + ["2321178454"] = { + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1412217137", - ["text"] = "#% increased Flask Mana Recovery rate", - ["type"] = "explicit", + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 20, }, - }, - ["878_BeltIncreasedCharmDuration"] = { - ["Belt"] = { - ["max"] = 33, - ["min"] = 4, + ["Quiver"] = { + ["max"] = 100, + ["min"] = 100, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1389754388", - ["text"] = "#% increased Charm Effect Duration", - ["type"] = "explicit", + ["id"] = "implicit.stat_2321178454", + ["text"] = "#% chance to Pierce an Enemy", + ["type"] = "implicit", }, }, - ["878_CharmDuration"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["239367161"] = { + ["Quiver"] = { + ["max"] = 40, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1389754388", - ["text"] = "#% increased Charm Effect Duration", - ["type"] = "explicit", + ["id"] = "implicit.stat_239367161", + ["text"] = "#% increased Stun Buildup", + ["type"] = "implicit", }, }, - ["878_CharmDurationRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["2463230181"] = { + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 50, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["Bow"] = { + ["max"] = 50, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3088348485", - ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", - ["type"] = "explicit", + ["id"] = "implicit.stat_2463230181", + ["text"] = "#% Surpassing chance to fire an additional Arrow", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["8799_ParryDamage"] = { - ["AnyJewel"] = { + ["2527686725"] = { + ["2HWeapon"] = { ["max"] = 25, ["min"] = 15, }, - ["BaseJewel"] = { + ["Talisman"] = { ["max"] = 25, ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1569159338", - ["text"] = "#% increased Parry Damage", - ["type"] = "explicit", + ["id"] = "implicit.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "implicit", }, }, - ["8799_ParryDamageRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["2646093132"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1007380041", - ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", - ["type"] = "explicit", + ["id"] = "implicit.stat_2646093132", + ["text"] = "Inflict Abyssal Wasting on Hit", + ["type"] = "implicit", }, }, - ["879_FlaskDuration"] = { - ["AnyJewel"] = { + ["2694482655"] = { + ["1HMace"] = { ["max"] = 10, ["min"] = 5, }, - ["BaseJewel"] = { + ["1HWeapon"] = { ["max"] = 10, ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3741323227", - ["text"] = "#% increased Flask Effect Duration", - ["type"] = "explicit", + ["id"] = "implicit.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["879_FlaskDurationRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1773308808", - ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", - ["type"] = "explicit", - }, - }, - ["8808_ParriedDebuffDuration"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3401186585", - ["text"] = "#% increased Parried Debuff Duration", - ["type"] = "explicit", - }, - }, - ["8808_ParriedDebuffDurationRadius"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1514844108", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", - ["type"] = "explicit", - }, - }, - ["8809_StunThresholdDuringParry"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1911237468", - ["text"] = "#% increased Stun Threshold while Parrying", - ["type"] = "explicit", - }, - }, - ["8809_StunThresholdDuringParryRadius"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1495814176", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", - ["type"] = "explicit", - }, - }, - ["881_AlliesInPresenceAllDamage"] = { - ["1HWeapon"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["Sceptre"] = { - ["max"] = 119, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", - ["type"] = "explicit", - }, - }, - ["882_AlliesInPresenceAddedPhysicalDamage"] = { - ["1HWeapon"] = { - ["max"] = 25.5, - ["min"] = 2, - }, - ["Sceptre"] = { - ["max"] = 25.5, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1574590649", - ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", - ["type"] = "explicit", - }, - }, - ["883_AlliesInPresenceAddedFireDamage"] = { - ["1HWeapon"] = { - ["max"] = 37, - ["min"] = 2, - }, - ["Sceptre"] = { - ["max"] = 37, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_849987426", - ["text"] = "Allies in your Presence deal # to # added Attack Fire Damage", - ["type"] = "explicit", - }, - }, - ["884_AlliesInPresenceAddedColdDamage"] = { - ["1HWeapon"] = { - ["max"] = 30.5, - ["min"] = 2, - }, - ["Sceptre"] = { - ["max"] = 30.5, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2347036682", - ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", - ["type"] = "explicit", - }, - }, - ["885_AlliesInPresenceAddedLightningDamage"] = { - ["1HWeapon"] = { - ["max"] = 37.5, - ["min"] = 3, - }, - ["Sceptre"] = { - ["max"] = 37.5, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2854751904", - ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", - ["type"] = "explicit", - }, - }, - ["890_AlliesInPresenceIncreasedAccuracy"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3169585282", - ["text"] = "Allies in your Presence have # to Accuracy Rating", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["8914_PlantDamageForJewel"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["275498888"] = { + ["Ring"] = { + ["max"] = 40, + ["min"] = 40, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2518900926", - ["text"] = "#% increased Damage with Plant Skills", - ["type"] = "explicit", + ["id"] = "implicit.stat_275498888", + ["text"] = "Maximum Quality is #%", + ["type"] = "implicit", }, }, - ["8914_PlantDamageForJewelRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, + ["2778646494"] = { + ["Charm"] = { + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1590846356", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", - ["type"] = "explicit", - }, - }, - ["891_AlliesInPresenceCriticalStrikeChance"] = { - ["1HWeapon"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["Sceptre"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1250712710", - ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", - ["type"] = "explicit", - }, - }, - ["8925_PoisonEffect"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2487305362", - ["text"] = "#% increased Magnitude of Poison you inflict", - ["type"] = "explicit", - }, - }, - ["8925_PoisonEffectRadius"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_462424929", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", - ["type"] = "explicit", - }, - }, - ["892_AlliesInPresenceCriticalStrikeMultiplier"] = { - ["1HWeapon"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["Sceptre"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3057012405", - ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", - ["type"] = "explicit", + ["id"] = "implicit.stat_2778646494", + ["text"] = "Used when you are affected by a Slow", + ["type"] = "implicit", }, }, - ["893_AlliesInPresenceIncreasedAttackSpeed"] = { - ["1HWeapon"] = { - ["max"] = 16, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 16, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1998951374", - ["text"] = "Allies in your Presence have #% increased Attack Speed", - ["type"] = "explicit", - }, - }, - ["894_AlliesInPresenceIncreasedCastSpeed"] = { - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 20, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_289128254", - ["text"] = "Allies in your Presence have #% increased Cast Speed", - ["type"] = "explicit", - }, - }, - ["895_AlliesInPresenceAllResistances"] = { - ["1HWeapon"] = { - ["max"] = 18, - ["min"] = 3, - }, - ["Sceptre"] = { - ["max"] = 18, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3850614073", - ["text"] = "Allies in your Presence have #% to all Elemental Resistances", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["896_AlliesInPresenceLifeRegeneration"] = { - ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 1, - }, - ["Sceptre"] = { - ["max"] = 33, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4010677958", - ["text"] = "Allies in your Presence Regenerate # Life per second", - ["type"] = "explicit", - }, - }, - ["8970_ChainFromTerrain"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4081947835", - ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", - ["type"] = "explicit", - }, - }, - ["8970_ChainFromTerrainRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2334956771", - ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", - ["type"] = "explicit", - }, - }, - ["8973_ProjectileDamageIfMeleeHitRecently"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3596695232", - ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", - ["type"] = "explicit", - }, - }, - ["8973_ProjectileDamageIfMeleeHitRecentlyRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_288364275", - ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", - ["type"] = "explicit", - }, - }, - ["900_CharmGuardWhileActive"] = { - ["Charm"] = { - ["max"] = 500, - ["min"] = 44, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2676834156", - ["text"] = "Also grants # Guard", - ["type"] = "explicit", - }, - }, - ["901_CharmGainLifeOnUse"] = { - ["Charm"] = { - ["max"] = 350, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2365392475", - ["text"] = "Recover # Life when Used", - ["type"] = "explicit", - }, - }, - ["9020_QuarterstaffFreezeBuildup"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1697447343", - ["text"] = "#% increased Freeze Buildup with Quarterstaves", - ["type"] = "explicit", - }, - }, - ["9020_QuarterstaffFreezeBuildupRadius"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_127081978", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", - ["type"] = "explicit", - }, - }, - ["9028_QuiverModifierEffect"] = { - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1200678966", - ["text"] = "#% increased bonuses gained from Equipped Quiver", - ["type"] = "explicit", - }, - }, - ["9028_QuiverModifierEffectRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { + ["2797971005"] = { + ["Quiver"] = { ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4180952808", - ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", - ["type"] = "explicit", - }, - }, - ["902_CharmGainManaOnUse"] = { - ["Charm"] = { - ["max"] = 300, - ["min"] = 16, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1120862500", - ["text"] = "Recover # Mana when Used", - ["type"] = "explicit", - }, - }, - ["9032_MaximumRage"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1181501418", - ["text"] = "# to Maximum Rage", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["9032_MaximumRageRadius"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1846980580", - ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["904_FlaskIncreasedRecoveryOnLowMana"] = { - ["ManaFlask"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3276224428", - ["text"] = "#% more Recovery if used while on Low Mana", - ["type"] = "explicit", - }, - }, - ["905_FlaskFullInstantRecovery"] = { - ["LifeFlask"] = { - ["max"] = -50, - ["min"] = -50, - }, - ["ManaFlask"] = { - ["max"] = -50, - ["min"] = -50, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", - }, - }, - ["905_FlaskIncreasedRecoveryAmount"] = { - ["LifeFlask"] = { - ["max"] = 80, - ["min"] = 41, - }, - ["ManaFlask"] = { - ["max"] = 80, - ["min"] = 41, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_700317374", - ["text"] = "#% increased Amount Recovered", - ["type"] = "explicit", - }, - }, - ["906_FlaskIncreasedRecoveryOnLowLife"] = { - ["LifeFlask"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_886931978", - ["text"] = "#% more Recovery if used while on Low Life", - ["type"] = "explicit", - }, - }, - ["908_FlaskExtraLifeCostsMana"] = { - ["LifeFlask"] = { - ["max"] = 100, - ["min"] = 61, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1261982764", - ["text"] = "#% increased Life Recovered", - ["type"] = "explicit", - }, - }, - ["909_FlaskExtraManaCostsLife"] = { - ["ManaFlask"] = { - ["max"] = 100, - ["min"] = 61, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1811130680", - ["text"] = "#% increased Mana Recovered", - ["type"] = "explicit", - }, - }, - ["910_FlaskHealsMinions"] = { - ["LifeFlask"] = { - ["max"] = 80, - ["min"] = 51, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2416869319", - ["text"] = "Grants #% of Life Recovery to Minions", - ["type"] = "explicit", - }, - }, - ["911_FlaskFullInstantRecovery"] = { - ["LifeFlask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["ManaFlask"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1526933524", - ["text"] = "Instant Recovery", - ["type"] = "explicit", - }, - }, - ["912_FlaskPartialInstantRecovery"] = { - ["LifeFlask"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["ManaFlask"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2503377690", - ["text"] = "#% of Recovery applied Instantly", - ["type"] = "explicit", - }, - }, - ["913_FlaskIncreasedRecoverySpeed"] = { - ["LifeFlask"] = { - ["max"] = 70, - ["min"] = 41, - }, - ["ManaFlask"] = { - ["max"] = 70, - ["min"] = 41, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_173226756", - ["text"] = "#% increased Recovery rate", - ["type"] = "explicit", - }, - }, - ["9149_CrossbowReloadSpeed"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3192728503", - ["text"] = "#% increased Crossbow Reload Speed", - ["type"] = "explicit", - }, - }, - ["9149_CrossbowReloadSpeedRadius"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3856744003", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", - ["type"] = "explicit", - }, - }, - ["914_FlaskExtraLifeCostsMana"] = { - ["LifeFlask"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_648019518", - ["text"] = "Removes #% of Life Recovered from Mana when used", - ["type"] = "explicit", - }, - }, - ["915_FlaskExtraManaCostsLife"] = { - ["ManaFlask"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_959641748", - ["text"] = "Removes #% of Mana Recovered from Life when used", - ["type"] = "explicit", - }, - }, - ["916_ItemFoundRarityIncrease"] = { - ["Amulet"] = { - ["max"] = 18, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 18, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 18, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 18, - ["min"] = 6, - }, - ["Ring"] = { - ["max"] = 18, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "explicit", - }, - }, - ["916_ItemFoundRarityIncreasePrefix"] = { - ["Amulet"] = { - ["max"] = 19, - ["min"] = 8, - }, - ["Helmet"] = { - ["max"] = 19, - ["min"] = 8, - }, - ["Ring"] = { - ["max"] = 19, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "explicit", - }, - }, - ["917_LocalBaseCriticalStrikeChance"] = { - ["1HMace"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["2HMace"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["Bow"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["Crossbow"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["Flail"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["Talisman"] = { - ["max"] = 5, - ["min"] = 1.01, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_518292764", - ["text"] = "#% to Critical Hit Chance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["918_LocalCriticalStrikeMultiplier"] = { - ["1HMace"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["2HMace"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Bow"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Crossbow"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Flail"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Quarterstaff"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Spear"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["Talisman"] = { - ["max"] = 25, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["919_LocalIncreasedAttackSpeed"] = { - ["1HMace"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 19, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 19, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 28, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "explicit", - }, - }, - ["9209_ReducedBleedDuration"] = { - ["Chest"] = { - ["max"] = -36, - ["min"] = -60, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1692879867", - ["text"] = "#% increased Duration of Bleeding on You", - ["type"] = "explicit", - }, - }, - ["921_LocalAttributeRequirements"] = { - ["1HMace"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["1HWeapon"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["2HMace"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["2HWeapon"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Boots"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Bow"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Chest"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Crossbow"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Flail"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Focus"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Gloves"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Helmet"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Quarterstaff"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Sceptre"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Shield"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Spear"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Staff"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Talisman"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["Wand"] = { - ["max"] = -15, - ["min"] = -35, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3639275092", - ["text"] = "#% increased Attribute Requirements", - ["type"] = "explicit", - }, - }, - ["922_EssenceSpellSkillLevel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_124131830", - ["text"] = "# to Level of all Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["922_GlobalIncreaseSpellSkillGemLevel"] = { - ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["Focus"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_124131830", - ["text"] = "# to Level of all Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["922_GlobalIncreaseSpellSkillGemLevelWeapon"] = { - ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 6, - ["min"] = 2, - }, - ["Staff"] = { - ["max"] = 6, - ["min"] = 2, - }, - ["Wand"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_124131830", - ["text"] = "# to Level of all Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["9241_ShieldArmourIncrease"] = { - ["AnyJewel"] = { - ["max"] = 32, - ["min"] = 18, - }, - ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_145497481", - ["text"] = "#% increased Defences from Equipped Shield", - ["type"] = "explicit", - }, - }, - ["9241_ShieldArmourIncreaseRadius"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 8, - }, - ["RadiusJewel"] = { - ["max"] = 15, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_713216632", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Defences from Equipped Shield", - ["type"] = "explicit", - }, - }, - ["9248_ShockEffect"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2527686725", - ["text"] = "#% increased Magnitude of Shock you inflict", - ["type"] = "explicit", - }, - }, - ["9248_ShockEffectRadius"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1166140625", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", - ["type"] = "explicit", - }, - }, - ["924_GlobalIncreaseFireSpellSkillGemLevel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_591105508", - ["text"] = "# to Level of all Fire Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["924_GlobalIncreaseFireSpellSkillGemLevelWeapon"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_591105508", - ["text"] = "# to Level of all Fire Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["925_GlobalIncreaseColdSpellSkillGemLevel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2254480358", - ["text"] = "# to Level of all Cold Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["925_GlobalIncreaseColdSpellSkillGemLevelWeapon"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2254480358", - ["text"] = "# to Level of all Cold Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["926_GlobalIncreaseLightningSpellSkillGemLevel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1545858329", - ["text"] = "# to Level of all Lightning Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["926_GlobalIncreaseLightningSpellSkillGemLevelWeapon"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1545858329", - ["text"] = "# to Level of all Lightning Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["927_GlobalIncreaseChaosSpellSkillGemLevel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4226189338", - ["text"] = "# to Level of all Chaos Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["927_GlobalIncreaseChaosSpellSkillGemLevelWeapon"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Staff"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4226189338", - ["text"] = "# to Level of all Chaos Spell Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["928_GlobalIncreaseMeleeSkillGemLevel"] = { - ["1HMace"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["Flail"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["Gloves"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_9187492", - ["text"] = "# to Level of all Melee Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["928_GlobalIncreaseMeleeSkillGemLevelWeapon"] = { - ["2HMace"] = { - ["max"] = 7, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 7, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 7, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_9187492", - ["text"] = "# to Level of all Melee Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["929_EssenceAttackSkillLevel"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3035140377", - ["text"] = "# to Level of all Attack Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["930_GlobalIncreaseProjectileSkillGemLevel"] = { - ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["Quiver"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1202301673", - ["text"] = "# to Level of all Projectile Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["930_GlobalIncreaseProjectileSkillGemLevelWeapon"] = { - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 7, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["Crossbow"] = { - ["max"] = 7, - ["min"] = 2, - }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1202301673", - ["text"] = "# to Level of all Projectile Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["9317_ShapeshiftSkillSpeedForJewel"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_918325986", - ["text"] = "#% increased Skill Speed while Shapeshifted", - ["type"] = "explicit", - }, - }, - ["9317_ShapeshiftSkillSpeedForJewelRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3579898587", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", - ["type"] = "explicit", - }, - }, - ["931_GlobalIncreaseMinionSpellSkillGemLevel"] = { - ["Amulet"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["Helmet"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2162097452", - ["text"] = "# to Level of all Minion Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["931_GlobalIncreaseMinionSpellSkillGemLevelWeapon"] = { - ["1HWeapon"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["Sceptre"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2162097452", - ["text"] = "# to Level of all Minion Skills", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["933_CriticalStrikeChance"] = { - ["Amulet"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 34, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_587431675", - ["text"] = "#% increased Critical Hit Chance", - ["type"] = "explicit", - }, - }, - ["933_CriticalStrikeChanceRadius"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2077117738", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", - ["type"] = "explicit", - }, - }, - ["934_AttackCriticalStrikeChance"] = { - ["AnyJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["BaseJewel"] = { - ["max"] = 16, - ["min"] = 6, - }, - ["Quiver"] = { - ["max"] = 38, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2194114101", - ["text"] = "#% increased Critical Hit Chance for Attacks", - ["type"] = "explicit", - }, - }, - ["934_AttackCriticalStrikeChanceRadius"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3865605585", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", - ["type"] = "explicit", - }, - }, - ["935_SpellCriticalStrikeChance"] = { - ["1HWeapon"] = { - ["max"] = 73, - ["min"] = 27, - }, - ["2HWeapon"] = { - ["max"] = 109, - ["min"] = 40, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 59, - ["min"] = 27, - }, - ["Staff"] = { - ["max"] = 109, - ["min"] = 40, - }, - ["Wand"] = { - ["max"] = 73, - ["min"] = 27, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", - ["type"] = "explicit", - }, - }, - ["935_SpellCriticalStrikeChanceRadius"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2704905000", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", - ["type"] = "explicit", - }, - }, - ["937_CriticalStrikeMultiplier"] = { - ["Amulet"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 34, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3556824919", - ["text"] = "#% increased Critical Damage Bonus", - ["type"] = "explicit", - }, - }, - ["937_CriticalStrikeMultiplierRadius"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2359002191", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", - ["type"] = "explicit", - }, - }, - ["938_AttackCriticalStrikeMultiplier"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Quiver"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3714003708", - ["text"] = "#% increased Critical Damage Bonus for Attack Damage", - ["type"] = "explicit", - }, - }, - ["938_AttackCriticalStrikeMultiplierRadius"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1352561456", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", - ["type"] = "explicit", - }, - }, - ["939_SpellCritMultiplierForJewel"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_274716455", - ["text"] = "#% increased Critical Spell Damage Bonus", - ["type"] = "explicit", - }, - }, - ["939_SpellCritMultiplierForJewelRadius"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2466785537", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", - ["type"] = "explicit", - }, - }, - ["939_SpellCriticalStrikeMultiplier"] = { - ["1HWeapon"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 59, - ["min"] = 15, - }, - ["Focus"] = { - ["max"] = 34, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 59, - ["min"] = 15, - }, - ["Wand"] = { - ["max"] = 39, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_274716455", - ["text"] = "#% increased Critical Spell Damage Bonus", - ["type"] = "explicit", - }, - }, - ["941_IncreasedAttackSpeed"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["Gloves"] = { - ["max"] = 16, - ["min"] = 5, - }, - ["Quiver"] = { - ["max"] = 16, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "explicit", - }, - }, - ["941_IncreasedAttackSpeedRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2822644689", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", - ["type"] = "explicit", - }, - }, - ["942_IncreasedCastSpeed"] = { - ["1HWeapon"] = { - ["max"] = 35, - ["min"] = 9, - }, - ["2HWeapon"] = { - ["max"] = 52, - ["min"] = 14, - }, - ["Amulet"] = { - ["max"] = 28, - ["min"] = 9, - }, - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["Focus"] = { - ["max"] = 32, - ["min"] = 9, - }, - ["Ring"] = { - ["max"] = 24, - ["min"] = 9, - }, - ["Staff"] = { - ["max"] = 52, - ["min"] = 14, - }, - ["Wand"] = { - ["max"] = 35, - ["min"] = 9, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "explicit", - }, - }, - ["942_IncreasedCastSpeedRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1022759479", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", - ["type"] = "explicit", - }, - }, - ["943_AdditionalAmmo"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1967051901", - ["text"] = "Loads an additional bolt", - ["type"] = "explicit", - }, - }, - ["944_AdditionalCharm"] = { - ["specialCaseData"] = { - ["overrideModLinePlural"] = "+# Charm Slots", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2582079000", - ["text"] = "# Charm Slot", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["945_AdditionalArrows"] = { - ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", - ["type"] = "explicit", - }, - }, - ["946_AllAttributes"] = { - ["Amulet"] = { - ["max"] = 24, - ["min"] = 2, - }, - ["Ring"] = { - ["max"] = 13, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1379411836", - ["text"] = "# to all Attributes", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["947_Strength"] = { - ["1HMace"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Amulet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Belt"] = { - ["max"] = 36, - ["min"] = 5, - }, - ["Boots"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Gloves"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Ring"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Shield"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["948_Dexterity"] = { - ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Amulet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Boots"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Gloves"] = { - ["max"] = 36, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Quiver"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Ring"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Shield"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["949_Intelligence"] = { - ["1HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Amulet"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Boots"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Chest"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Gloves"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 36, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Ring"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Shield"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Staff"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["Wand"] = { - ["max"] = 33, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["950_EssenceReducedCriticalDamageAgainstYou"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", - ["type"] = "explicit", - }, - }, - ["950_ReducedExtraDamageFromCrits"] = { - ["Shield"] = { - ["max"] = 54, - ["min"] = 21, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", - ["type"] = "explicit", - }, - }, - ["951_ReducedPhysicalDamageTaken"] = { - ["Shield"] = { - ["max"] = 8, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3771516363", - ["text"] = "#% additional Physical Damage Reduction", - ["type"] = "explicit", - }, - }, - ["952_MaximumElementalResistance"] = { - ["Shield"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["9531_StunThresholdfromEnergyShield"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_416040624", - ["text"] = "Gain additional Stun Threshold equal to #% of maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["9531_StunThresholdfromEnergyShieldRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1653682082", - ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", - ["type"] = "explicit", - }, - }, - ["9533_IncreasedStunThresholdIfNoRecentStun"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1405298142", - ["text"] = "#% increased Stun Threshold if you haven't been Stunned Recently", - ["type"] = "explicit", - }, - }, - ["9533_IncreasedStunThresholdIfNoRecentStunRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_654207792", - ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", - ["type"] = "explicit", - }, - }, - ["953_MaximumFireResist"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4095671657", - ["text"] = "#% to Maximum Fire Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["954_MaximumColdResist"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3676141501", - ["text"] = "#% to Maximum Cold Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["955_MaximumLightningResistance"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["956_MaximumChaosResistance"] = { - ["Shield"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1301765461", - ["text"] = "#% to Maximum Chaos Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["957_AllResistances"] = { - ["Amulet"] = { - ["max"] = 18, - ["min"] = 3, - }, - ["Ring"] = { - ["max"] = 16, - ["min"] = 3, - }, - ["Shield"] = { - ["max"] = 18, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["958_FireResistance"] = { - ["Amulet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Belt"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Ring"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["959_ColdResistance"] = { - ["Amulet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Belt"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Ring"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["960_LightningResistance"] = { - ["Amulet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Belt"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Ring"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 45, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["961_ChaosResistance"] = { - ["Amulet"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Belt"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Boots"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Chest"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Focus"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Gloves"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Helmet"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Ring"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["Shield"] = { - ["max"] = 27, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["962_MinionLife"] = { - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 21, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Sceptre"] = { - ["max"] = 50, - ["min"] = 21, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "explicit", - }, - }, - ["962_MinionLifeRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_378796798", - ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", - ["type"] = "explicit", - }, - }, - ["963_ArmourAppliesToElementalDamage"] = { - ["Boots"] = { - ["max"] = 43, - ["min"] = 14, - }, - ["Chest"] = { - ["max"] = 50, - ["min"] = 14, - }, - ["Gloves"] = { - ["max"] = 43, - ["min"] = 14, - }, - ["Helmet"] = { - ["max"] = 43, - ["min"] = 14, - }, - ["Shield"] = { - ["max"] = 50, - ["min"] = 14, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3362812763", - ["text"] = "#% of Armour also applies to Elemental Damage", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["9646_ThornsDamageIncrease"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1315743832", - ["text"] = "#% increased Thorns damage", - ["type"] = "explicit", - }, - }, - ["9646_ThornsDamageIncreaseRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1320662475", - ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", - ["type"] = "explicit", - }, - }, - ["964_EvasionAppliesToDeflection"] = { - ["Boots"] = { - ["max"] = 23, - ["min"] = 8, - }, - ["Chest"] = { - ["max"] = 26, - ["min"] = 8, - }, - ["Gloves"] = { - ["max"] = 23, - ["min"] = 8, - }, - ["Helmet"] = { - ["max"] = 23, - ["min"] = 8, - }, - ["Shield"] = { - ["max"] = 26, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3033371881", - ["text"] = "Gain Deflection Rating equal to #% of Evasion Rating", - ["type"] = "explicit", - }, - }, - ["9653_ThornsPhysicalDamage"] = { - ["Belt"] = { - ["max"] = 185.5, - ["min"] = 2, - }, - ["Chest"] = { - ["max"] = 185.5, - ["min"] = 2, - }, - ["Shield"] = { - ["max"] = 185.5, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2881298780", - ["text"] = "# to # Physical Thorns damage", - ["type"] = "explicit", - }, - }, - ["966_EnergyShieldRegeneration"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Boots"] = { - ["max"] = 45, - ["min"] = 26, - }, - ["Focus"] = { - ["max"] = 55, - ["min"] = 26, - }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 26, - }, - ["Helmet"] = { - ["max"] = 45, - ["min"] = 26, - }, - ["Shield"] = { - ["max"] = 55, - ["min"] = 26, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", - ["type"] = "explicit", - }, - }, - ["966_EnergyShieldRegenerationRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1552666713", - ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", - ["type"] = "explicit", - }, - }, - ["967_EnergyShieldDelay"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 55, - ["min"] = 26, - }, - ["Focus"] = { - ["max"] = 55, - ["min"] = 26, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", - ["type"] = "explicit", - }, - }, - ["967_EnergyShieldDelayRadius"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3394832998", - ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", - ["type"] = "explicit", - }, - }, - ["968_LifeRegeneration"] = { - ["Amulet"] = { - ["max"] = 33, - ["min"] = 1, - }, - ["Belt"] = { - ["max"] = 29, - ["min"] = 1, - }, - ["Boots"] = { - ["max"] = 23, - ["min"] = 1, - }, - ["Chest"] = { - ["max"] = 36, - ["min"] = 1, - }, - ["Helmet"] = { - ["max"] = 23, - ["min"] = 1, - }, - ["Ring"] = { - ["max"] = 18, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3325883026", - ["text"] = "# Life Regeneration per second", - ["type"] = "explicit", - }, - }, - ["969_LifeRegenerationRate"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_44972811", - ["text"] = "#% increased Life Regeneration rate", - ["type"] = "explicit", - }, - }, - ["969_LifeRegenerationRateRadius"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1185341308", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", - ["type"] = "explicit", - }, - }, - ["970_DamageTakenGainedAsLife"] = { - ["Amulet"] = { - ["max"] = 24, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "explicit", - }, - }, - ["970_LifeRecoupForJewel"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["BaseJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "explicit", - }, - }, - ["970_LifeRecoupForJewelRadius"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3669820740", - ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", - ["type"] = "explicit", - }, - }, - ["9712_DamageWithTriggeredSpells"] = { - ["AnyJewel"] = { - ["max"] = 18, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 18, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3067892458", - ["text"] = "Triggered Spells deal #% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["9712_DamageWithTriggeredSpellsRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_473917671", - ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", - ["type"] = "explicit", - }, - }, - ["971_LifeLeechPermyriad"] = { - ["Gloves"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["Ring"] = { - ["max"] = 7.9, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2557965901", - ["text"] = "Leech #% of Physical Attack Damage as Life", - ["type"] = "explicit", - }, - }, - ["972_LifeLeechLocalPermyriad"] = { - ["1HMace"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["Bow"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["Crossbow"] = { - ["max"] = 8.9, - ["min"] = 5, - }, - ["Flail"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["Quarterstaff"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["Spear"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["Talisman"] = { - ["max"] = 9.9, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_55876295", - ["text"] = "Leeches #% of Physical Damage as Life", - ["type"] = "explicit", - }, - }, - ["973_LifeGainPerTarget"] = { - ["Gloves"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", - ["type"] = "explicit", - }, - }, - ["974_LifeGainPerTargetLocal"] = { - ["1HMace"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Flail"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 5, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_821021828", - ["text"] = "Grants # Life per Enemy Hit", - ["type"] = "explicit", - }, - }, - ["975_LifeGainedFromEnemyDeath"] = { - ["1HMace"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["1HWeapon"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["2HMace"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["2HWeapon"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Bow"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Crossbow"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Flail"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Gloves"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Quarterstaff"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Quiver"] = { - ["max"] = 53, - ["min"] = 4, - }, - ["Ring"] = { - ["max"] = 53, - ["min"] = 4, - }, - ["Spear"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Staff"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Talisman"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["Wand"] = { - ["max"] = 84, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", - ["type"] = "explicit", - }, - }, - ["976_LightRadiusAndManaRegeneration"] = { - ["1HWeapon"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["2HWeapon"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["Ring"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["Sceptre"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["Staff"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["Wand"] = { - ["max"] = 22, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "explicit", - }, - }, - ["976_ManaRegeneration"] = { - ["1HWeapon"] = { - ["max"] = 69, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 104, - ["min"] = 15, - }, - ["Amulet"] = { - ["max"] = 69, - ["min"] = 10, - }, - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["Focus"] = { - ["max"] = 69, - ["min"] = 10, - }, - ["Ring"] = { - ["max"] = 69, - ["min"] = 10, - }, - ["Sceptre"] = { - ["max"] = 69, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 104, - ["min"] = 15, - }, - ["Wand"] = { - ["max"] = 69, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "explicit", - }, - }, - ["976_ManaRegenerationRadius"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3256879910", - ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", - ["type"] = "explicit", - }, - }, - ["977_PercentDamageGoesToMana"] = { - ["Amulet"] = { - ["max"] = 24, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_472520716", - ["text"] = "#% of Damage taken Recouped as Mana", - ["type"] = "explicit", - }, - }, - ["978_ManaLeechLocalPermyriad"] = { - ["1HMace"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["1HWeapon"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["2HMace"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["2HWeapon"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["Bow"] = { - ["max"] = 7.9, - ["min"] = 4, - }, - ["Crossbow"] = { - ["max"] = 7.9, - ["min"] = 4, - }, - ["Flail"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["Quarterstaff"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["Spear"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["Talisman"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_669069897", - ["text"] = "Leeches #% of Physical Damage as Mana", - ["type"] = "explicit", - }, - }, - ["979_ManaLeechPermyriad"] = { - ["Gloves"] = { - ["max"] = 8.9, - ["min"] = 4, - }, - ["Ring"] = { - ["max"] = 6.9, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_707457662", - ["text"] = "Leech #% of Physical Attack Damage as Mana", - ["type"] = "explicit", - }, - }, - ["980_ManaGainedFromEnemyDeath"] = { - ["1HMace"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Flail"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Gloves"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Quiver"] = { - ["max"] = 27, - ["min"] = 2, - }, - ["Ring"] = { - ["max"] = 27, - ["min"] = 2, - }, - ["Spear"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Staff"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["Wand"] = { - ["max"] = 45, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", - ["type"] = "explicit", - }, - }, - ["982_BeltReducedFlaskChargesUsed"] = { - ["Belt"] = { - ["max"] = 25, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", - ["type"] = "explicit", - }, - }, - ["984_StunDamageIncrease"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_239367161", - ["text"] = "#% increased Stun Buildup", - ["type"] = "explicit", - }, - }, - ["984_StunDamageIncreaseRadius"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4173554949", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", - ["type"] = "explicit", - }, - }, - ["985_LocalStunDamageIncrease"] = { - ["1HMace"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["2HMace"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["Flail"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["Quarterstaff"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["Spear"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["Talisman"] = { - ["max"] = 80, - ["min"] = 21, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", - ["type"] = "explicit", - }, - }, - ["9860_VolatilityOnKillChance"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3749502527", - ["text"] = "#% chance to gain Volatility on Kill", - ["type"] = "explicit", - }, - }, - ["9860_VolatilityOnKillChanceRadius"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_4225700219", - ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", - ["type"] = "explicit", - }, - }, - ["987_LocalStunDuration"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["2HMace"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["Flail"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["Spear"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["Talisman"] = { - ["max"] = 30, - ["min"] = 11, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_748522257", - ["text"] = "#% increased Stun Duration", - ["type"] = "explicit", - }, - }, - ["9883_WarcryEffect"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3037553757", - ["text"] = "#% increased Warcry Buff Effect", - ["type"] = "explicit", - }, - }, - ["9883_WarcryEffectRadius"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2675129731", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", - ["type"] = "explicit", - }, - }, - ["9886_WarcryDamage"] = { - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1594812856", - ["text"] = "#% increased Damage with Warcries", - ["type"] = "explicit", - }, - }, - ["9886_WarcryDamageRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1160637284", - ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", - ["type"] = "explicit", - }, - }, - ["988_IgniteChanceIncrease"] = { - ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["Wand"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", - ["type"] = "explicit", - }, - }, - ["988_IgniteChanceIncreaseRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_394473632", - ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", - ["type"] = "explicit", - }, - }, - ["9897_WeaponSwapSpeed"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3233599707", - ["text"] = "#% increased Weapon Swap Speed", - ["type"] = "explicit", - }, - }, - ["9897_WeaponSwapSpeedRadius"] = { - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1129429646", - ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", - ["type"] = "explicit", - }, - }, - ["990_FreezeDamageIncrease"] = { - ["1HWeapon"] = { - ["max"] = 80, - ["min"] = 31, - }, - ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 31, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 80, - ["min"] = 31, - }, - ["Wand"] = { - ["max"] = 80, - ["min"] = 31, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_473429811", - ["text"] = "#% increased Freeze Buildup", - ["type"] = "explicit", - }, - }, - ["990_FreezeDamageIncreaseRadius"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1087531620", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", - ["type"] = "explicit", - }, - }, - ["9915_WitheredEffect"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3973629633", - ["text"] = "#% increased Withered Magnitude", - ["type"] = "explicit", - }, - }, - ["9915_WitheredEffectRadius"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_3936121440", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", - ["type"] = "explicit", - }, - }, - ["992_ShockChanceIncrease"] = { - ["1HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["2HWeapon"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Staff"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["Wand"] = { - ["max"] = 100, - ["min"] = 51, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_293638271", - ["text"] = "#% increased chance to Shock", - ["type"] = "explicit", - }, - }, - ["992_ShockChanceIncreaseRadius"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1039268420", - ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", - ["type"] = "explicit", - }, - }, - ["994_LocalArmourAndEnergyShieldAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 136, - ["min"] = 8, - }, - ["Shield"] = { - ["max"] = 136, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_915769802", - ["text"] = "# to Stun Threshold", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["994_LocalArmourAndEvasionAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 136, - ["min"] = 8, - }, - ["Shield"] = { - ["max"] = 136, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_915769802", - ["text"] = "# to Stun Threshold", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["994_LocalArmourAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 136, - ["min"] = 8, - }, - ["Shield"] = { - ["max"] = 136, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_915769802", - ["text"] = "# to Stun Threshold", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["994_LocalEnergyShieldAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 136, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_915769802", - ["text"] = "# to Stun Threshold", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["994_LocalEvasionAndEnergyShieldAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 136, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_915769802", - ["text"] = "# to Stun Threshold", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["994_LocalEvasionAndStunThreshold"] = { - ["Boots"] = { - ["max"] = 136, - ["min"] = 8, - }, - ["Shield"] = { - ["max"] = 136, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_915769802", - ["text"] = "# to Stun Threshold", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["994_StunThreshold"] = { - ["Belt"] = { - ["max"] = 304, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 352, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 304, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 304, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_915769802", - ["text"] = "# to Stun Threshold", - ["type"] = "explicit", - }, - ["usePositiveSign"] = true, - }, - ["996_ReducedBurnDuration"] = { - ["Chest"] = { - ["max"] = 60, - ["min"] = 36, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_986397080", - ["text"] = "#% reduced Ignite Duration on you", - ["type"] = "explicit", - }, - }, - ["997_ReducedChillDuration"] = { - ["Boots"] = { - ["max"] = 60, - ["min"] = 36, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_1874553720", - ["text"] = "#% reduced Chill Duration on you", - ["type"] = "explicit", - }, - }, - ["998_ReducedFreezeDuration"] = { - ["Boots"] = { - ["max"] = 60, - ["min"] = 36, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_2160282525", - ["text"] = "#% reduced Freeze Duration on you", - ["type"] = "explicit", - }, - }, - ["999_ReducedShockDuration"] = { - ["Boots"] = { - ["max"] = 60, - ["min"] = 36, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "explicit.stat_99927264", - ["text"] = "#% reduced Shock duration on you", - ["type"] = "explicit", - }, - }, - }, - ["Implicit"] = { - ["implicit.stat_1028592286"] = { - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Bow"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1028592286", - ["text"] = "#% chance to Chain an additional time", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1050105434"] = { - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1050105434", - ["text"] = "# to maximum Mana", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_1137147997"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Flail"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1137147997", - ["text"] = "Unblockable", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1181501418"] = { - ["2HWeapon"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["Talisman"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1181501418", - ["text"] = "# to Maximum Rage", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_1207554355"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1207554355", - ["text"] = "#% increased Arrow Speed", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1379411836"] = { - ["Amulet"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["Helmet"] = { - ["max"] = 24, - ["min"] = 16, - }, - ["Ring"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1379411836", - ["text"] = "# to all Attributes", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_1389754388"] = { - ["Belt"] = { - ["max"] = 20, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1389754388", - ["text"] = "#% increased Charm Effect Duration", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1412682799"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1412682799", - ["text"] = "Used when you become Poisoned", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1416292992"] = { - ["Belt"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["specialCaseData"] = { - ["overrideModLinePlural"] = "+# Charm Slots", - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1416292992", - ["text"] = "Has # Charm Slot", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1434716233"] = { - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1434716233", - ["text"] = "Warcries Empower an additional Attack", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1444556985"] = { - ["Chest"] = { - ["max"] = 14, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1451444093"] = { - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Flail"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1451444093", - ["text"] = "Bifurcates Critical Hits", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1503146834"] = { - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1503146834", - ["text"] = "Crushes Enemies on Hit", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1541903247"] = { - ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1541903247", - ["text"] = "Causes Enemies to Explode on Critical kill, for #% of their Life as Physical Damage", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1570770415"] = { - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1570770415", - ["text"] = "#% reduced Charm Charges used", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1573130764"] = { - ["Quiver"] = { - ["max"] = 4, - ["min"] = 4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1573130764", - ["text"] = "Adds # to # Fire damage to Attacks", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1589917703"] = { - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["Talisman"] = { - ["max"] = 50, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1671376347"] = { - ["Chest"] = { - ["max"] = 25, - ["min"] = 20, - }, - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1671376347", - ["text"] = "#% to Lightning Resistance", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_1691862754"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1691862754", - ["text"] = "Used when you become Frozen", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1702195217"] = { - ["2HWeapon"] = { - ["max"] = 18, - ["min"] = 10, - }, - ["Quarterstaff"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["Talisman"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1702195217", - ["text"] = "#% to Block chance", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_1745952865"] = { - ["Chest"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1745952865", - ["text"] = "#% reduced Elemental Ailment Duration on you", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1782086450"] = { - ["Chest"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1803308202"] = { - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Crossbow"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1803308202", - ["text"] = "#% increased Bolt Speed", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1810482573"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1810482573", - ["text"] = "Used when you become Stunned", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1836676211"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1836676211", - ["text"] = "#% increased Flask Charges gained", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1967051901"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1967051901", - ["text"] = "Loads an additional bolt", - ["type"] = "implicit", - }, - }, - ["implicit.stat_1978899297"] = { - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1978899297", - ["text"] = "#% to all Maximum Elemental Resistances", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_1980802737"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_1980802737", - ["text"] = "Grenade Skills Fire an additional Projectile", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2016937536"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2016937536", - ["text"] = "Used when you take Lightning damage from a Hit", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2055966527"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2055966527", - ["text"] = "Attacks have #% chance to cause Bleeding", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2194114101"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2194114101", - ["text"] = "#% increased Critical Hit Chance for Attacks", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2222186378"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2222186378", - ["text"] = "#% increased Mana Recovery from Flasks", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2250533757"] = { - ["Chest"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2250533757", - ["text"] = "#% increased Movement Speed", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2251279027"] = { - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2251279027", - ["text"] = "# to Level of all Corrupted Skill Gems", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_2321178454"] = { - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Crossbow"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Quiver"] = { - ["max"] = 100, - ["min"] = 100, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2321178454", - ["text"] = "#% chance to Pierce an Enemy", - ["type"] = "implicit", - }, - }, - ["implicit.stat_239367161"] = { - ["Quiver"] = { - ["max"] = 40, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_239367161", - ["text"] = "#% increased Stun Buildup", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2463230181"] = { - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Bow"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2463230181", - ["text"] = "#% Surpassing chance to fire an additional Arrow", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_2527686725"] = { - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Talisman"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2527686725", - ["text"] = "#% increased Magnitude of Shock you inflict", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2646093132"] = { - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2646093132", - ["text"] = "Inflict Abyssal Wasting on Hit", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2694482655"] = { - ["1HMace"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_275498888"] = { - ["Ring"] = { - ["max"] = 40, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_275498888", - ["text"] = "Maximum Quality is #%", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2763429652"] = { - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Spear"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2763429652", - ["text"] = "#% chance to Maim on Hit", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2778646494"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2778646494", - ["text"] = "Used when you are affected by a Slow", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2797971005"] = { - ["Quiver"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2797971005", - ["text"] = "Gain # Life per Enemy Hit with Attacks", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2891184298"] = { - ["Ring"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2891184298", - ["text"] = "#% increased Cast Speed", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2901986750"] = { - ["Amulet"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["Boots"] = { - ["max"] = 16, - ["min"] = 8, - }, - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 16, - ["min"] = 8, - }, - ["Ring"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2901986750", - ["text"] = "#% to all Elemental Resistances", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_2923486259"] = { - ["Chest"] = { - ["max"] = 13, - ["min"] = 7, - }, - ["Ring"] = { - ["max"] = 13, - ["min"] = 7, - }, - ["Shield"] = { - ["max"] = 19, - ["min"] = 11, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2923486259", - ["text"] = "#% to Chaos Resistance", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_2968503605"] = { - ["2HWeapon"] = { - ["max"] = 80, - ["min"] = 50, - }, - ["Talisman"] = { - ["max"] = 80, - ["min"] = 50, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", - ["type"] = "implicit", - }, - }, - ["implicit.stat_2994271459"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2994271459", - ["text"] = "Used when you take Cold damage from a Hit", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3032590688"] = { - ["Quiver"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Ring"] = { - ["max"] = 2.5, - ["min"] = 2.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3182714256"] = { - ["Amulet"] = { - ["max"] = 1, - ["min"] = -1, - }, - ["Ring"] = { - ["max"] = 1, - ["min"] = -1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3182714256", - ["text"] = "# Prefix Modifier allowed", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_3261801346"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3261801346", - ["text"] = "# to Dexterity", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_328541901"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_3299347043"] = { - ["Amulet"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["Chest"] = { - ["max"] = 80, - ["min"] = 60, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3299347043", - ["text"] = "# to maximum Life", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_3310778564"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3310778564", - ["text"] = "Used when you take Chaos damage from a Hit", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3325883026"] = { - ["Amulet"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3325883026", - ["text"] = "# Life Regeneration per second", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3362812763"] = { - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3362812763", - ["text"] = "#% of Armour also applies to Elemental Damage", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_3372524247"] = { - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3372524247", - ["text"] = "#% to Fire Resistance", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_3398402065"] = { - ["2HWeapon"] = { - ["max"] = -50, - ["min"] = -50, - }, - ["Bow"] = { - ["max"] = -50, - ["min"] = -50, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3398402065", - ["text"] = "#% increased Projectile Range", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3489782002"] = { - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_3544800472"] = { - ["Chest"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3544800472", - ["text"] = "#% increased Elemental Ailment Threshold", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3552135623"] = { - ["1HWeapon"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["Spear"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3552135623", - ["text"] = "Prevent #% of Damage from Deflected Hits", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_3585532255"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3585532255", - ["text"] = "#% increased Charm Charges gained", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3675300253"] = { - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3675300253", - ["text"] = "Strikes deal Splash Damage", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3676540188"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3676540188", - ["text"] = "Used when you start Bleeding", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3699444296"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3699444296", - ["text"] = "Used when you become Shocked", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3828375170"] = { - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3828375170", - ["text"] = "Bleeding you inflict deals Damage #% faster", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3854901951"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3854901951", - ["text"] = "Used when you take Fire damage from a Hit", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3855016469"] = { - ["Chest"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3917489142"] = { - ["Amulet"] = { - ["max"] = 20, - ["min"] = 12, - }, - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Ring"] = { - ["max"] = 15, - ["min"] = 6, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3954735777"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3954735777", - ["text"] = "#% chance to Poison on Hit with Attacks", - ["type"] = "implicit", - }, - }, - ["implicit.stat_3981240776"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3981240776", - ["text"] = "# to Spirit", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_4010341289"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4010341289", - ["text"] = "Used when you kill a Rare or Unique enemy", - ["type"] = "implicit", - }, - }, - ["implicit.stat_4080418644"] = { - ["Amulet"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4080418644", - ["text"] = "# to Strength", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_4126210832"] = { - ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4126210832", - ["text"] = "Always Hits", - ["type"] = "implicit", - }, - }, - ["implicit.stat_4220027924"] = { - ["Ring"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_458438597"] = { - ["Chest"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", - ["type"] = "implicit", - }, - }, - ["implicit.stat_462041840"] = { - ["Belt"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_462041840", - ["text"] = "#% of Flask Recovery applied Instantly", - ["type"] = "implicit", - }, - }, - ["implicit.stat_535217483"] = { - ["1HWeapon"] = { - ["max"] = 35, - ["min"] = 25, - }, - ["Spear"] = { - ["max"] = 35, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_535217483", - ["text"] = "#% increased Projectile Speed with this Weapon", - ["type"] = "implicit", - }, - }, - ["implicit.stat_548198834"] = { - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 16, - ["min"] = 16, - }, - ["Quarterstaff"] = { - ["max"] = 16, - ["min"] = 16, - }, - ["Spear"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_548198834", - ["text"] = "#% increased Melee Strike Range with this weapon", - ["type"] = "implicit", - }, - }, - ["implicit.stat_585126960"] = { - ["Charm"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_585126960", - ["text"] = "Used when you become Ignited", - ["type"] = "implicit", - }, - }, - ["implicit.stat_624954515"] = { - ["Quiver"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_624954515", - ["text"] = "#% increased Accuracy Rating", - ["type"] = "implicit", - }, - }, - ["implicit.stat_644456512"] = { - ["Belt"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_644456512", - ["text"] = "#% reduced Flask Charges used", - ["type"] = "implicit", - }, - }, - ["implicit.stat_680068163"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Chest"] = { - ["max"] = 40, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_680068163", - ["text"] = "#% increased Stun Threshold", - ["type"] = "implicit", - }, - }, - ["implicit.stat_681332047"] = { - ["Quiver"] = { - ["max"] = 10, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "implicit", - }, - }, - ["implicit.stat_718638445"] = { - ["Amulet"] = { - ["max"] = 1, - ["min"] = -1, - }, - ["Ring"] = { - ["max"] = 1, - ["min"] = -1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_718638445", - ["text"] = "# Suffix Modifier allowed", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_731781020"] = { - ["Belt"] = { - ["max"] = 0.17, - ["min"] = 0.17, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_731781020", - ["text"] = "Flasks gain # charges per Second", - ["type"] = "implicit", - }, - }, - ["implicit.stat_789117908"] = { - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["Chest"] = { - ["max"] = 50, - ["min"] = 40, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", - ["type"] = "implicit", - }, - }, - ["implicit.stat_791928121"] = { - ["2HMace"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", - ["type"] = "implicit", - }, - }, - ["implicit.stat_803737631"] = { - ["Ring"] = { - ["max"] = 160, - ["min"] = 120, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_803737631", - ["text"] = "# to Accuracy Rating", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_809229260"] = { - ["Belt"] = { - ["max"] = 140, - ["min"] = 100, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_809229260", - ["text"] = "# to Armour", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, - ["implicit.stat_821241191"] = { - ["Belt"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_821241191", - ["text"] = "#% increased Life Recovery from Flasks", - ["type"] = "implicit", - }, - }, - ["implicit.stat_836936635"] = { - ["Chest"] = { - ["max"] = 2.5, - ["min"] = 1.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_836936635", - ["text"] = "Regenerate #% of maximum Life per second", - ["type"] = "implicit", - }, - }, - ["implicit.stat_924253255"] = { - ["Chest"] = { - ["max"] = -20, - ["min"] = -30, - }, - ["invertOnNegative"] = true, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_924253255", - ["text"] = "#% increased Slowing Potency of Debuffs on You", - ["type"] = "implicit", - }, - }, - ["implicit.stat_958696139"] = { - ["Ring"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_958696139", - ["text"] = "Grants 1 additional Skill Slot", - ["type"] = "implicit", - }, - }, - }, - ["Rune"] = { - ["1002"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_101878827", - ["text"] = "#% increased Presence Area of Effect", - ["type"] = "augment", - }, - }, - ["1009"] = { - ["1HMace"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["2HMace"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Bow"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Claw"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Crossbow"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Flail"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Quarterstaff"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Spear"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Staff"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Talisman"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Wand"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1857162058", - ["text"] = "Bonded: #% increased Ignite Magnitude", - ["type"] = "augment", - }, - }, - ["1227"] = { - ["1HMace"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["1HWeapon"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["2HMace"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["2HWeapon"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["Bow"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["Claw"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["Crossbow"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["Flail"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["Quarterstaff"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["Spear"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["Talisman"] = { - ["max"] = 24, - ["min"] = 24, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2223678961", - ["text"] = "Adds # to # Chaos damage", - ["type"] = "augment", - }, - }, - ["1268"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_624954515", - ["text"] = "#% increased Accuracy Rating", - ["type"] = "augment", - }, - }, - ["1397"] = { - ["Helmet"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3666934677", - ["text"] = "#% increased Experience gain", - ["type"] = "augment", - }, - }, - ["1437"] = { - ["1HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Claw"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Flail"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Spear"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2023107756", - ["text"] = "Recover #% of maximum Life on Kill", - ["type"] = "augment", - }, - }, - ["1439"] = { - ["1HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Claw"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Flail"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Spear"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1030153674", - ["text"] = "Recover #% of maximum Mana on Kill", - ["type"] = "augment", - }, - }, - ["1466"] = { - ["Boots"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3824372849", - ["text"] = "#% increased Curse Duration", - ["type"] = "augment", - }, - }, - ["1481"] = { - ["Boots"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_649025131", - ["text"] = "#% increased Movement Speed when on Low Life", - ["type"] = "augment", - }, - }, - ["1544"] = { - ["Gloves"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2546200564", - ["text"] = "Bonded: #% increased Duration of Elemental Ailments on Enemies", - ["type"] = "augment", - }, - }, - ["1557"] = { - ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_280731498", - ["text"] = "#% increased Area of Effect", - ["type"] = "augment", - }, - }, - ["1572"] = { - ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3377888098", - ["text"] = "#% increased Skill Effect Duration", - ["type"] = "augment", - }, - }, - ["1601"] = { - ["1HMace"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["2HMace"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["2HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Bow"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Claw"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Crossbow"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Flail"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Quarterstaff"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Spear"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Staff"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Talisman"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Wand"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_635535560", - ["text"] = "Bonded: Gain #% of Damage as Extra Physical Damage", - ["type"] = "augment", - }, - }, - ["1602"] = { - ["1HMace"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["1HWeapon"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["2HMace"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["2HWeapon"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Bow"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Claw"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Crossbow"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Flail"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Quarterstaff"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Spear"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Staff"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Talisman"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Wand"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3398787959", - ["text"] = "Gain #% of Damage as Extra Chaos Damage", - ["type"] = "augment", - }, - }, - ["1614"] = { - ["1HMace"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["1HWeapon"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["2HMace"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["2HWeapon"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Bow"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Claw"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Crossbow"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Flail"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Quarterstaff"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Spear"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["Talisman"] = { - ["max"] = 13, - ["min"] = 13, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1922668512", - ["text"] = "Bonded: Gain #% of Elemental Damage as Extra Chaos Damage", - ["type"] = "augment", - }, - }, - ["1617"] = { - ["1HMace"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, - ["1HWeapon"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, - ["2HMace"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, - ["2HWeapon"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, - ["Boots"] = { - ["max"] = 0.35, - ["min"] = 0.25, - }, - ["Bow"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, - ["Chest"] = { - ["max"] = 1.5, - ["min"] = 0.25, - }, - ["Claw"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, - ["Crossbow"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, - ["Flail"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, - ["Focus"] = { - ["max"] = 0.35, - ["min"] = 0.25, - }, - ["Gloves"] = { - ["max"] = 0.35, - ["min"] = 0.25, - }, - ["Helmet"] = { - ["max"] = 0.35, - ["min"] = 0.25, - }, - ["Quarterstaff"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, - ["Shield"] = { - ["max"] = 0.35, - ["min"] = 0.25, - }, - ["Spear"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, - ["Talisman"] = { - ["max"] = 0.4, - ["min"] = 0.4, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_836936635", - ["text"] = "Regenerate #% of maximum Life per second", - ["type"] = "augment", - }, - }, - ["1646"] = { - ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Claw"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Crossbow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Flail"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Talisman"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1728593484", - ["text"] = "Bonded: Minions deal #% increased Damage", - ["type"] = "augment", - }, - }, - ["1835"] = { - ["Chest"] = { - ["max"] = 50, - ["min"] = 50, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3407849389", - ["text"] = "#% reduced effect of Curses on you", - ["type"] = "augment", + ["id"] = "implicit.stat_2797971005", + ["text"] = "Gain # Life per Enemy Hit with Attacks", + ["type"] = "implicit", }, }, - ["1875"] = { - ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, + ["2891184298"] = { + ["Ring"] = { + ["max"] = 10, + ["min"] = 7, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3854332662", - ["text"] = "Bonded: #% increased Area of Effect of Curses", - ["type"] = "augment", + ["id"] = "implicit.stat_2891184298", + ["text"] = "#% increased Cast Speed", + ["type"] = "implicit", }, }, - ["2153"] = { - ["1HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, + ["2901986750"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 7, }, - ["2HMace"] = { - ["max"] = 15, - ["min"] = 15, + ["Boots"] = { + ["max"] = 16, + ["min"] = 8, }, - ["2HWeapon"] = { - ["max"] = 15, + ["Chest"] = { + ["max"] = 25, ["min"] = 15, }, - ["Bow"] = { - ["max"] = 15, - ["min"] = 15, + ["Helmet"] = { + ["max"] = 16, + ["min"] = 8, }, - ["Claw"] = { - ["max"] = 15, - ["min"] = 15, + ["Ring"] = { + ["max"] = 10, + ["min"] = 7, }, - ["Crossbow"] = { - ["max"] = 15, - ["min"] = 15, + ["specialCaseData"] = { }, - ["Flail"] = { - ["max"] = 15, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "implicit.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", + ["type"] = "implicit", }, - ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 15, + ["usePositiveSign"] = true, + }, + ["2923486259"] = { + ["Chest"] = { + ["max"] = 13, + ["min"] = 7, }, - ["Spear"] = { - ["max"] = 15, - ["min"] = 15, + ["Ring"] = { + ["max"] = 13, + ["min"] = 7, }, - ["Talisman"] = { - ["max"] = 15, - ["min"] = 15, + ["Shield"] = { + ["max"] = 19, + ["min"] = 11, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1519615863", - ["text"] = "#% chance to cause Bleeding on Hit", - ["type"] = "augment", + ["id"] = "implicit.stat_2923486259", + ["text"] = "#% to Chaos Resistance", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["2266"] = { - ["Chest"] = { - ["max"] = 8, - ["min"] = 8, + ["2933846633"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_217649179", - ["text"] = "Bonded: #% increased Curse Magnitudes", - ["type"] = "augment", + ["id"] = "implicit.stat_2933846633", + ["text"] = "Dazes on Hit", + ["type"] = "implicit", }, }, - ["2362"] = { - ["Chest"] = { - ["max"] = 15, - ["min"] = 15, + ["2994271459"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_458438597", - ["text"] = "#% of Damage is taken from Mana before Life", - ["type"] = "augment", + ["id"] = "implicit.stat_2994271459", + ["text"] = "Used when you take Cold damage from a Hit", + ["type"] = "implicit", }, }, - ["2558"] = { - ["Boots"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 10, - ["min"] = 10, + ["3032590688"] = { + ["Quiver"] = { + ["max"] = 2, + ["min"] = 2, }, - ["Focus"] = { - ["max"] = 10, - ["min"] = 10, + ["Ring"] = { + ["max"] = 2.5, + ["min"] = 2.5, }, - ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 10, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "implicit.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "implicit", }, - ["Shield"] = { - ["max"] = 10, + }, + ["3261801346"] = { + ["Amulet"] = { + ["max"] = 15, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_901007505", - ["text"] = "Bonded: Minions have #% to all Elemental Resistances", - ["type"] = "augment", + ["id"] = "implicit.stat_3261801346", + ["text"] = "# to Dexterity", + ["type"] = "implicit", }, ["usePositiveSign"] = true, }, - ["2649"] = { - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, + ["328541901"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3449499156", - ["text"] = "Bonded: Minions have #% increased Area of Effect", - ["type"] = "augment", + ["id"] = "implicit.stat_328541901", + ["text"] = "# to Intelligence", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["2786"] = { - ["1HMace"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["1HWeapon"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["2HMace"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["2HWeapon"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["Boots"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Bow"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["Claw"] = { - ["max"] = -25, - ["min"] = -25, - }, - ["Crossbow"] = { - ["max"] = -25, - ["min"] = -25, + ["3299347043"] = { + ["Amulet"] = { + ["max"] = 40, + ["min"] = 30, }, - ["Flail"] = { - ["max"] = -25, - ["min"] = -25, + ["Chest"] = { + ["max"] = 80, + ["min"] = 60, }, - ["Quarterstaff"] = { - ["max"] = -25, - ["min"] = -25, + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = -25, - ["min"] = -25, + ["tradeMod"] = { + ["id"] = "implicit.stat_3299347043", + ["text"] = "# to maximum Life", + ["type"] = "implicit", }, - ["Talisman"] = { - ["max"] = -25, - ["min"] = -25, + ["usePositiveSign"] = true, + }, + ["3310778564"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2011656677", - ["text"] = "#% increased Poison Duration", - ["type"] = "augment", + ["id"] = "implicit.stat_3310778564", + ["text"] = "Used when you take Chaos damage from a Hit", + ["type"] = "implicit", }, }, - ["2891"] = { - ["Gloves"] = { - ["max"] = 40, - ["min"] = 40, + ["3325883026"] = { + ["Amulet"] = { + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2103650854", - ["text"] = "#% increased effect of Arcane Surge on you", - ["type"] = "augment", + ["id"] = "implicit.stat_3325883026", + ["text"] = "# Life Regeneration per second", + ["type"] = "implicit", }, }, - ["2929"] = { - ["Gloves"] = { - ["max"] = 15, + ["3362812763"] = { + ["Chest"] = { + ["max"] = 25, ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_542243093", - ["text"] = "Bonded: #% increased Warcry Cooldown Recovery Rate", - ["type"] = "augment", + ["id"] = "implicit.stat_3362812763", + ["text"] = "#% of Armour also applies to Elemental Damage", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["3327"] = { - ["Helmet"] = { - ["max"] = 6, - ["min"] = 6, + ["3372524247"] = { + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1984310483", - ["text"] = "Enemies you Curse take #% increased Damage", - ["type"] = "augment", + ["id"] = "implicit.stat_3372524247", + ["text"] = "#% to Fire Resistance", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["3330"] = { - ["1HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["2HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["3398402065"] = { ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = -50, + ["min"] = -50, }, ["Bow"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Claw"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Crossbow"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Flail"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = -50, + ["min"] = -50, }, - ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 15, + ["invertOnNegative"] = true, + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 15, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "implicit.stat_3398402065", + ["text"] = "#% increased Projectile Range", + ["type"] = "implicit", }, - ["Talisman"] = { - ["max"] = 15, - ["min"] = 15, + }, + ["3544800472"] = { + ["Chest"] = { + ["max"] = 40, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_4064396395", - ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", - ["type"] = "augment", + ["id"] = "implicit.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "implicit", }, }, - ["3617"] = { - ["Helmet"] = { - ["max"] = -5, - ["min"] = -5, + ["3585532255"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1772929282", - ["text"] = "Enemies you Curse have #% to Chaos Resistance", - ["type"] = "augment", + ["id"] = "implicit.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "implicit", }, }, - ["4022"] = { - ["Helmet"] = { + ["3675300253"] = { + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_687156079", - ["text"] = "# to Accuracy Rating per 1 Item Evasion Rating on Equipped Helmet", - ["type"] = "augment", + ["id"] = "implicit.stat_3675300253", + ["text"] = "Strikes deal Splash Damage", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["4115"] = { - ["Helmet"] = { + ["3676540188"] = { + ["Charm"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3570773271", - ["text"] = "Increases and Reductions to Life Regeneration Rate also apply to Mana Regeneration Rate", - ["type"] = "augment", + ["id"] = "implicit.stat_3676540188", + ["text"] = "Used when you start Bleeding", + ["type"] = "implicit", }, }, - ["4147"] = { - ["Boots"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Chest"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Focus"] = { - ["max"] = 15, - ["min"] = 15, + ["3699444296"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Gloves"] = { - ["max"] = 15, - ["min"] = 15, + ["specialCaseData"] = { }, - ["Helmet"] = { - ["max"] = 15, - ["min"] = 15, + ["tradeMod"] = { + ["id"] = "implicit.stat_3699444296", + ["text"] = "Used when you become Shocked", + ["type"] = "implicit", }, - ["Shield"] = { - ["max"] = 15, - ["min"] = 15, + }, + ["3854901951"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_4128954176", - ["text"] = "Bonded: #% increased Elemental Ailment Threshold", - ["type"] = "augment", + ["id"] = "implicit.stat_3854901951", + ["text"] = "Used when you take Fire damage from a Hit", + ["type"] = "implicit", }, }, - ["4167"] = { + ["3855016469"] = { ["Chest"] = { - ["max"] = 2, - ["min"] = 2, + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3655769732", - ["text"] = "#% to Quality of all Skills", - ["type"] = "augment", + ["id"] = "implicit.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["4221"] = { - ["Staff"] = { - ["max"] = 30, - ["min"] = 30, + ["3917489142"] = { + ["Amulet"] = { + ["max"] = 20, + ["min"] = 12, }, - ["Wand"] = { + ["Belt"] = { ["max"] = 30, - ["min"] = 30, + ["min"] = 20, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_975988108", - ["text"] = "Bonded: Archon recovery period expires #% faster", - ["type"] = "augment", + ["id"] = "implicit.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", + ["type"] = "implicit", }, }, - ["4223"] = { - ["Focus"] = { - ["max"] = 15, - ["min"] = 15, + ["3954735777"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1236190486", - ["text"] = "Bonded: #% increased effect of Archon Buffs on you", - ["type"] = "augment", + ["id"] = "implicit.stat_3954735777", + ["text"] = "#% chance to Poison on Hit with Attacks", + ["type"] = "implicit", }, }, - ["4261"] = { + ["3981240776"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, + }, ["Chest"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2191621386", - ["text"] = "#% of Armour also applies to Chaos Damage while on full Energy Shield", - ["type"] = "augment", + ["id"] = "implicit.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "implicit", }, ["usePositiveSign"] = true, }, - ["4275"] = { - ["Chest"] = { - ["max"] = 2, - ["min"] = 2, + ["4010341289"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1197632982", - ["text"] = "# to Armour per 1 Spirit", - ["type"] = "augment", + ["id"] = "implicit.stat_4010341289", + ["text"] = "Used when you kill a Rare or Unique enemy", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["4287"] = { - ["Staff"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["Wand"] = { - ["max"] = 12, - ["min"] = 12, + ["4080418644"] = { + ["Amulet"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3990135792", - ["text"] = "Bonded: Break Armour on Critical Hit with Spells equal to #% of Physical Damage dealt", - ["type"] = "augment", + ["id"] = "implicit.stat_4080418644", + ["text"] = "# to Strength", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["4335"] = { + ["4126210832"] = { ["1HMace"] = { ["max"] = 1, ["min"] = 1, @@ -23535,451 +17902,491 @@ return { ["max"] = 1, ["min"] = 1, }, - ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Claw"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Flail"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Quarterstaff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Spear"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Talisman"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_859085781", - ["text"] = "Bonded: Attacks have #% to Critical Hit Chance", - ["type"] = "augment", + ["id"] = "implicit.stat_4126210832", + ["text"] = "Always Hits", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["4382"] = { - ["1HMace"] = { - ["max"] = 50, - ["min"] = 50, + ["4220027924"] = { + ["Ring"] = { + ["max"] = 30, + ["min"] = 20, }, - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 50, + ["specialCaseData"] = { }, - ["2HMace"] = { - ["max"] = 50, - ["min"] = 50, + ["tradeMod"] = { + ["id"] = "implicit.stat_4220027924", + ["text"] = "#% to Cold Resistance", + ["type"] = "implicit", }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, + ["usePositiveSign"] = true, + }, + ["458438597"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 5, }, - ["Bow"] = { - ["max"] = 50, - ["min"] = 50, + ["specialCaseData"] = { }, - ["Claw"] = { - ["max"] = 50, - ["min"] = 50, + ["tradeMod"] = { + ["id"] = "implicit.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", + ["type"] = "implicit", }, - ["Crossbow"] = { - ["max"] = 50, - ["min"] = 50, + }, + ["462041840"] = { + ["Belt"] = { + ["max"] = 20, + ["min"] = 20, }, - ["Flail"] = { - ["max"] = 50, - ["min"] = 50, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 50, + ["tradeMod"] = { + ["id"] = "implicit.stat_462041840", + ["text"] = "#% of Flask Recovery applied Instantly", + ["type"] = "implicit", }, - ["Spear"] = { - ["max"] = 50, - ["min"] = 50, + }, + ["548198834"] = { + ["2HWeapon"] = { + ["max"] = 16, + ["min"] = 16, }, - ["Talisman"] = { - ["max"] = 50, - ["min"] = 50, + ["Quarterstaff"] = { + ["max"] = 16, + ["min"] = 16, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2077615515", - ["text"] = "#% increased Attack Damage against Rare or Unique Enemies", - ["type"] = "augment", + ["id"] = "implicit.stat_548198834", + ["text"] = "#% increased Melee Strike Range with this weapon", + ["type"] = "implicit", }, }, - ["4387"] = { - ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 40, + ["585126960"] = { + ["Charm"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_674141348", - ["text"] = "Bonded: #% increased Attack Damage while Shapeshifted", - ["type"] = "augment", + ["id"] = "implicit.stat_585126960", + ["text"] = "Used when you become Ignited", + ["type"] = "implicit", }, }, - ["4512"] = { - ["Helmet"] = { - ["max"] = 40, - ["min"] = 40, + ["624954515"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1947060170", - ["text"] = "#% of Armour also applies to Cold Damage", - ["type"] = "augment", + ["id"] = "implicit.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["4513"] = { - ["Gloves"] = { - ["max"] = 40, - ["min"] = 40, + ["644456512"] = { + ["Belt"] = { + ["max"] = 15, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3897831687", - ["text"] = "#% of Armour also applies to Fire Damage", - ["type"] = "augment", + ["id"] = "implicit.stat_644456512", + ["text"] = "#% reduced Flask Charges used", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["4514"] = { - ["Boots"] = { + ["680068163"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Chest"] = { ["max"] = 40, - ["min"] = 40, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2200571612", - ["text"] = "#% of Armour also applies to Lightning Damage", - ["type"] = "augment", + ["id"] = "implicit.stat_680068163", + ["text"] = "#% increased Stun Threshold", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["4523"] = { - ["Gloves"] = { - ["max"] = -15, - ["min"] = -15, + ["681332047"] = { + ["Quiver"] = { + ["max"] = 10, + ["min"] = 7, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3144895835", - ["text"] = "Bonded: #% increased Magnitude of Bleeding on You", - ["type"] = "augment", + ["id"] = "implicit.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "implicit", }, }, - ["4539"] = { - ["Boots"] = { - ["max"] = 10, - ["min"] = 10, + ["731781020"] = { + ["Belt"] = { + ["max"] = 0.17, + ["min"] = 0.17, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_232299587", - ["text"] = "Bonded: #% increased Cooldown Recovery Rate", - ["type"] = "augment", + ["id"] = "implicit.stat_731781020", + ["text"] = "Flasks gain # charges per Second", + ["type"] = "implicit", }, }, - ["4541"] = { - ["Boots"] = { - ["max"] = 3, - ["min"] = 3, + ["789117908"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Chest"] = { + ["max"] = 50, + ["min"] = 40, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1597408611", - ["text"] = "Bonded: Prevent #% of Damage from Deflected Hits", - ["type"] = "augment", + ["id"] = "implicit.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", + ["type"] = "implicit", }, - ["usePositiveSign"] = true, }, - ["4572"] = { - ["Gloves"] = { - ["max"] = 25, - ["min"] = 25, + ["791928121"] = { + ["2HMace"] = { + ["max"] = 50, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 50, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_310945763", - ["text"] = "#% increased Life Cost Efficiency", - ["type"] = "augment", + ["id"] = "implicit.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", + ["type"] = "implicit", }, }, - ["4582"] = { - ["Staff"] = { - ["max"] = 16, - ["min"] = 16, - }, - ["Wand"] = { - ["max"] = 16, - ["min"] = 16, + ["803737631"] = { + ["Ring"] = { + ["max"] = 160, + ["min"] = 120, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2336012075", - ["text"] = "Bonded: #% increased Mana Cost Efficiency", - ["type"] = "augment", + ["id"] = "implicit.stat_803737631", + ["text"] = "# to Accuracy Rating", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["4586"] = { - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, + ["809229260"] = { + ["Belt"] = { + ["max"] = 140, + ["min"] = 100, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_532897212", - ["text"] = "Bonded: #% increased Mana Cost Efficiency while on Low Mana", - ["type"] = "augment", + ["id"] = "implicit.stat_809229260", + ["text"] = "# to Armour", + ["type"] = "implicit", }, + ["usePositiveSign"] = true, }, - ["4604"] = { - ["Helmet"] = { - ["max"] = 12, - ["min"] = 12, + ["821241191"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_263495202", - ["text"] = "#% increased Cost Efficiency", - ["type"] = "augment", + ["id"] = "implicit.stat_821241191", + ["text"] = "#% increased Life Recovery from Flasks", + ["type"] = "implicit", }, }, - ["4605"] = { - ["1HMace"] = { - ["max"] = 12, - ["min"] = 12, + ["836936635"] = { + ["Chest"] = { + ["max"] = 2.5, + ["min"] = 1.5, }, - ["1HWeapon"] = { - ["max"] = 12, - ["min"] = 12, + ["specialCaseData"] = { }, - ["2HMace"] = { - ["max"] = 12, - ["min"] = 12, + ["tradeMod"] = { + ["id"] = "implicit.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", + ["type"] = "implicit", }, - ["2HWeapon"] = { - ["max"] = 12, - ["min"] = 12, + }, + ["924253255"] = { + ["Chest"] = { + ["max"] = -20, + ["min"] = -30, }, - ["Bow"] = { - ["max"] = 12, - ["min"] = 12, + ["invertOnNegative"] = true, + ["specialCaseData"] = { }, - ["Claw"] = { - ["max"] = 12, - ["min"] = 12, + ["tradeMod"] = { + ["id"] = "implicit.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "implicit", }, - ["Crossbow"] = { - ["max"] = 12, - ["min"] = 12, + }, + ["958696139"] = { + ["Ring"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Flail"] = { - ["max"] = 12, - ["min"] = 12, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 12, - ["min"] = 12, + ["tradeMod"] = { + ["id"] = "implicit.stat_958696139", + ["text"] = "Grants 1 additional Skill Slot", + ["type"] = "implicit", }, - ["Spear"] = { - ["max"] = 12, - ["min"] = 12, + }, + }, + ["Rune"] = { + ["1004011302"] = { + ["Focus"] = { + ["max"] = 10, + ["min"] = 10, }, - ["Talisman"] = { - ["max"] = 12, - ["min"] = 12, + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2561960218", - ["text"] = "Bonded: #% of Skill Mana Costs Converted to Life Costs", + ["id"] = "rune.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", ["type"] = "augment", }, }, - ["4608"] = { - ["Gloves"] = { - ["max"] = -15, - ["min"] = -15, + ["1011760251"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_165746512", - ["text"] = "Bonded: #% increased Slowing Potency of Debuffs on You", + ["id"] = "rune.stat_1011760251", + ["text"] = "#% to Maximum Lightning Resistance", ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["4662"] = { - ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, + ["101878827"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3166958180", - ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["id"] = "rune.stat_101878827", + ["text"] = "#% increased Presence Area of Effect", ["type"] = "augment", }, }, - ["4868"] = { + ["1030153674"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 2, + ["min"] = 2, }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 2, + ["min"] = 2, }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 2, + ["min"] = 2, }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 2, + ["min"] = 2, }, ["Bow"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 2, + ["min"] = 2, }, ["Claw"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 2, + ["min"] = 2, }, ["Crossbow"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 2, + ["min"] = 2, }, ["Flail"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 2, + ["min"] = 2, }, ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 2, + ["min"] = 2, }, ["Spear"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 2, + ["min"] = 2, }, ["Talisman"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 2, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1039491398", - ["text"] = "Bonded: #% increased effect of Fully Broken Armour", + ["id"] = "rune.stat_1030153674", + ["text"] = "Recover #% of maximum Mana on Kill", ["type"] = "augment", }, }, - ["5143"] = { + ["1037193709"] = { ["1HMace"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 23.5, + ["min"] = 4, }, ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 23.5, + ["min"] = 4, }, ["2HMace"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 23.5, + ["min"] = 4, }, ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 23.5, + ["min"] = 4, }, ["Bow"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 23.5, + ["min"] = 4, }, ["Claw"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 23.5, + ["min"] = 4, }, ["Crossbow"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 23.5, + ["min"] = 4, }, ["Flail"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 23.5, + ["min"] = 4, }, ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 23.5, + ["min"] = 4, }, ["Spear"] = { - ["max"] = 50, - ["min"] = 50, - }, - ["Staff"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 23.5, + ["min"] = 4, }, ["Talisman"] = { + ["max"] = 23.5, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1037193709", + ["text"] = "Adds # to # Cold Damage", + ["type"] = "augment", + }, + }, + ["1050105434"] = { + ["Boots"] = { + ["max"] = 35, + ["min"] = 15, + }, + ["Chest"] = { + ["max"] = 35, + ["min"] = 15, + }, + ["Focus"] = { + ["max"] = 35, + ["min"] = 15, + }, + ["Gloves"] = { + ["max"] = 35, + ["min"] = 15, + }, + ["Helmet"] = { + ["max"] = 35, + ["min"] = 15, + }, + ["Shield"] = { + ["max"] = 35, + ["min"] = 15, + }, + ["Staff"] = { ["max"] = 50, - ["min"] = 50, + ["min"] = 30, }, ["Wand"] = { ["max"] = 50, - ["min"] = 50, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1228682002", - ["text"] = "#% chance when you gain an Endurance Charge to gain an additional Endurance Charge", + ["id"] = "rune.stat_1050105434", + ["text"] = "# to maximum Mana", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["1181501418"] = { + ["Helmet"] = { + ["max"] = 4, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1181501418", + ["text"] = "# to Maximum Rage", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["1197632982"] = { + ["Chest"] = { + ["max"] = 2, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1197632982", + ["text"] = "# to Armour per 1 Spirit", ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["5144"] = { + ["1228682002"] = { ["1HMace"] = { ["max"] = 50, ["min"] = 50, @@ -24035,369 +18442,377 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2916861134", - ["text"] = "#% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", + ["id"] = "rune.stat_1228682002", + ["text"] = "#% chance when you gain an Endurance Charge to gain an additional Endurance Charge", ["type"] = "augment", }, }, - ["5145"] = { - ["1HMace"] = { - ["max"] = 50, - ["min"] = 50, + ["1238227257"] = { + ["Boots"] = { + ["max"] = 8, + ["min"] = 8, }, - ["1HWeapon"] = { - ["max"] = 50, - ["min"] = 50, + ["Chest"] = { + ["max"] = 8, + ["min"] = 8, }, - ["2HMace"] = { - ["max"] = 50, - ["min"] = 50, + ["Focus"] = { + ["max"] = 8, + ["min"] = 8, }, - ["2HWeapon"] = { - ["max"] = 50, - ["min"] = 50, + ["Gloves"] = { + ["max"] = 8, + ["min"] = 8, }, - ["Bow"] = { - ["max"] = 50, - ["min"] = 50, + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, }, - ["Claw"] = { - ["max"] = 50, - ["min"] = 50, + ["Shield"] = { + ["max"] = 8, + ["min"] = 8, }, - ["Crossbow"] = { - ["max"] = 50, - ["min"] = 50, + ["specialCaseData"] = { }, - ["Flail"] = { - ["max"] = 50, - ["min"] = 50, + ["tradeMod"] = { + ["id"] = "rune.stat_1238227257", + ["text"] = "Debuffs on you expire #% faster", + ["type"] = "augment", }, - ["Quarterstaff"] = { - ["max"] = 50, - ["min"] = 50, + }, + ["124131830"] = { + ["Staff"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Spear"] = { - ["max"] = 50, - ["min"] = 50, + ["Wand"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Staff"] = { - ["max"] = 50, - ["min"] = 50, + ["specialCaseData"] = { }, - ["Talisman"] = { - ["max"] = 50, - ["min"] = 50, + ["tradeMod"] = { + ["id"] = "rune.stat_124131830", + ["text"] = "# to Level of all Spell Skills", + ["type"] = "augment", }, - ["Wand"] = { - ["max"] = 50, - ["min"] = 50, + ["usePositiveSign"] = true, + }, + ["1250712710"] = { + ["1HWeapon"] = { + ["max"] = 14, + ["min"] = 14, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3537994888", - ["text"] = "#% chance when you gain a Power Charge to gain an additional Power Charge", + ["id"] = "rune.stat_1250712710", + ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", ["type"] = "augment", }, }, - ["5146"] = { + ["1368271171"] = { ["1HMace"] = { - ["max"] = 8, + ["max"] = 24, ["min"] = 8, }, ["1HWeapon"] = { - ["max"] = 8, + ["max"] = 24, ["min"] = 8, }, ["2HMace"] = { - ["max"] = 8, + ["max"] = 24, ["min"] = 8, }, ["2HWeapon"] = { - ["max"] = 8, + ["max"] = 24, ["min"] = 8, }, ["Bow"] = { - ["max"] = 8, + ["max"] = 24, ["min"] = 8, }, ["Claw"] = { - ["max"] = 8, + ["max"] = 24, ["min"] = 8, }, ["Crossbow"] = { - ["max"] = 8, + ["max"] = 24, ["min"] = 8, }, ["Flail"] = { - ["max"] = 8, + ["max"] = 24, ["min"] = 8, }, ["Quarterstaff"] = { - ["max"] = 8, + ["max"] = 24, ["min"] = 8, }, ["Spear"] = { - ["max"] = 8, + ["max"] = 24, ["min"] = 8, }, ["Talisman"] = { - ["max"] = 8, + ["max"] = 24, ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1712188793", - ["text"] = "Bonded: #% chance to gain an additional random Charge when you gain a Charge", + ["id"] = "rune.stat_1368271171", + ["text"] = "Gain # Mana per enemy killed", ["type"] = "augment", }, }, - ["5227"] = { - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, + ["1374654984"] = { + ["Chest"] = { + ["max"] = 10, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_763465498", - ["text"] = "Bonded: #% increased Charm Charges gained", + ["id"] = "rune.stat_1374654984", + ["text"] = "#% of Physical Damage prevented Recouped as Life", ["type"] = "augment", }, }, - ["5415"] = { + ["1381474422"] = { ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 20, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_935518591", - ["text"] = "Critical Hit chance is Lucky against Parried enemies", + ["id"] = "rune.stat_1381474422", + ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", ["type"] = "augment", }, }, - ["5440"] = { - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 25, + ["1382805233"] = { + ["Boots"] = { + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3311629379", - ["text"] = "Bonded: #% increased Critical Hit Chance while Shapeshifted", + ["id"] = "rune.stat_1382805233", + ["text"] = "#% increased Deflection Rating while moving", ["type"] = "augment", }, }, - ["5564"] = { + ["1433756169"] = { ["1HMace"] = { - ["max"] = 40, - ["min"] = 40, + ["max"] = 10, + ["min"] = 10, }, ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 40, + ["max"] = 10, + ["min"] = 10, }, ["2HMace"] = { - ["max"] = 40, - ["min"] = 40, + ["max"] = 10, + ["min"] = 10, }, ["2HWeapon"] = { - ["max"] = 40, - ["min"] = 40, + ["max"] = 10, + ["min"] = 10, }, ["Bow"] = { - ["max"] = 40, - ["min"] = 40, + ["max"] = 10, + ["min"] = 10, }, ["Claw"] = { - ["max"] = 40, - ["min"] = 40, + ["max"] = 10, + ["min"] = 10, }, ["Crossbow"] = { - ["max"] = 40, - ["min"] = 40, + ["max"] = 10, + ["min"] = 10, }, ["Flail"] = { - ["max"] = 40, - ["min"] = 40, + ["max"] = 10, + ["min"] = 10, }, ["Quarterstaff"] = { - ["max"] = 40, - ["min"] = 40, + ["max"] = 10, + ["min"] = 10, }, ["Spear"] = { - ["max"] = 40, - ["min"] = 40, + ["max"] = 10, + ["min"] = 10, }, ["Talisman"] = { - ["max"] = 40, - ["min"] = 40, + ["max"] = 10, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3823333703", - ["text"] = "Bonded: #% increased Damage against Immobilised Enemies", + ["id"] = "rune.stat_1433756169", + ["text"] = "Minions gain #% of their Physical Damage as Extra Lightning Damage", ["type"] = "augment", }, }, - ["5567"] = { - ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 40, + ["1444556985"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3412619569", - ["text"] = "Bonded: #% increased Damage while Shapeshifted", + ["id"] = "rune.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", ["type"] = "augment", }, }, - ["5668"] = { + ["1480688478"] = { ["Gloves"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2986637363", - ["text"] = "Bonded: #% increased Duration of Damaging Ailments on Enemies", + ["id"] = "rune.stat_1480688478", + ["text"] = "One of your Persistent Minions revives when an Offering expires", ["type"] = "augment", }, }, - ["5670"] = { - ["Gloves"] = { + ["1496740334"] = { + ["1HMace"] = { ["max"] = 20, ["min"] = 20, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 20, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "rune.stat_1381474422", - ["text"] = "#% increased Magnitude of Damaging Ailments you inflict", - ["type"] = "augment", + ["2HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, }, - }, - ["5703"] = { ["Boots"] = { - ["max"] = 8, - ["min"] = 8, + ["max"] = 20, + ["min"] = 20, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, }, ["Chest"] = { - ["max"] = 8, - ["min"] = 8, + ["max"] = 20, + ["min"] = 20, }, - ["Focus"] = { - ["max"] = 8, - ["min"] = 8, + ["Claw"] = { + ["max"] = 20, + ["min"] = 20, }, - ["Gloves"] = { - ["max"] = 8, - ["min"] = 8, + ["Crossbow"] = { + ["max"] = 20, + ["min"] = 20, }, - ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, + ["Flail"] = { + ["max"] = 20, + ["min"] = 20, }, - ["Shield"] = { - ["max"] = 8, - ["min"] = 8, + ["Focus"] = { + ["max"] = 20, + ["min"] = 20, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "rune.stat_1238227257", - ["text"] = "Debuffs on you expire #% faster", - ["type"] = "augment", + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, }, - }, - ["5722"] = { - ["Boots"] = { - ["max"] = 8, - ["min"] = 8, + ["Quarterstaff"] = { + ["max"] = 20, + ["min"] = 20, }, - ["specialCaseData"] = { + ["Shield"] = { + ["max"] = 20, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "rune.stat_1382805233", - ["text"] = "#% increased Deflection Rating while moving", - ["type"] = "augment", + ["Spear"] = { + ["max"] = 20, + ["min"] = 20, }, - }, - ["5981"] = { - ["Chest"] = { - ["max"] = 10, - ["min"] = 10, + ["Talisman"] = { + ["max"] = 20, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2134854700", - ["text"] = "Bonded: #% chance for Damage of Enemies Hitting you to be Unlucky", + ["id"] = "rune.stat_1496740334", + ["text"] = "Convert #% of Requirements to Dexterity", ["type"] = "augment", }, }, - ["5987"] = { + ["1519615863"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 15, + ["min"] = 15, }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 15, + ["min"] = 15, }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 15, + ["min"] = 15, }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 15, + ["min"] = 15, }, ["Bow"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 15, + ["min"] = 15, }, ["Claw"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 15, + ["min"] = 15, }, ["Crossbow"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 15, + ["min"] = 15, }, ["Flail"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 15, + ["min"] = 15, }, ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 15, + ["min"] = 15, }, ["Spear"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 15, + ["min"] = 15, }, ["Talisman"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 15, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", + ["id"] = "rune.stat_1519615863", + ["text"] = "#% chance to cause Bleeding on Hit", ["type"] = "augment", }, }, - ["6106"] = { + ["1556124492"] = { ["1HMace"] = { ["max"] = 20, ["min"] = 20, @@ -24414,10 +18829,18 @@ return { ["max"] = 20, ["min"] = 20, }, + ["Boots"] = { + ["max"] = 20, + ["min"] = 20, + }, ["Bow"] = { ["max"] = 20, ["min"] = 20, }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 20, + }, ["Claw"] = { ["max"] = 20, ["min"] = 20, @@ -24430,10 +18853,26 @@ return { ["max"] = 20, ["min"] = 20, }, + ["Focus"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, + }, ["Quarterstaff"] = { ["max"] = 20, ["min"] = 20, }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 20, + }, ["Spear"] = { ["max"] = 20, ["min"] = 20, @@ -24445,1148 +18884,1137 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3378643287", - ["text"] = "Bonded: #% increased Exposure Effect", + ["id"] = "rune.stat_1556124492", + ["text"] = "Convert #% of Requirements to Strength", ["type"] = "augment", }, }, - ["6192"] = { - ["Gloves"] = { - ["max"] = 2, - ["min"] = 2, + ["1574590649"] = { + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1482283017", - ["text"] = "Bonded: Fissure Skills have +# to Limit", + ["id"] = "rune.stat_1574590649", + ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["6220"] = { + ["1585886916"] = { ["Boots"] = { - ["max"] = 12, - ["min"] = 8, + ["max"] = 10, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_1585886916", + ["text"] = "Sacrifice #% of maximum Life to gain that much Guard when you Dodge Roll", + ["type"] = "augment", + }, + }, + ["1671376347"] = { + ["Boots"] = { + ["max"] = 14, + ["min"] = 10, }, ["Chest"] = { - ["max"] = 12, - ["min"] = 8, + ["max"] = 14, + ["min"] = 10, }, ["Focus"] = { - ["max"] = 12, - ["min"] = 8, + ["max"] = 14, + ["min"] = 10, }, ["Gloves"] = { - ["max"] = 12, - ["min"] = 8, + ["max"] = 14, + ["min"] = 10, }, ["Helmet"] = { - ["max"] = 12, - ["min"] = 8, + ["max"] = 14, + ["min"] = 10, }, ["Shield"] = { - ["max"] = 12, - ["min"] = 8, + ["max"] = 14, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2310741722", - ["text"] = "#% increased Life and Mana Recovery from Flasks", + ["id"] = "rune.stat_1671376347", + ["text"] = "#% to Lightning Resistance", ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["6295"] = { - ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, + ["1755296234"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_280497929", - ["text"] = "# to maximum Mana per 2 Item Energy Shield on Equipped Helmet", + ["id"] = "rune.stat_1755296234", + ["text"] = "Targets can be affected by # of your Poisons at the same time", ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["6337"] = { + ["1772929282"] = { ["Helmet"] = { - ["max"] = 25, - ["min"] = 25, + ["max"] = -5, + ["min"] = -5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3903510399", - ["text"] = "Gain Armour equal to #% of Life Lost from Hits in the past 8 seconds", + ["id"] = "rune.stat_1772929282", + ["text"] = "Enemies you Curse have #% to Chaos Resistance", ["type"] = "augment", }, }, - ["6431"] = { - ["Gloves"] = { - ["max"] = 1, - ["min"] = 1, + ["1782086450"] = { + ["Chest"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Focus"] = { + ["max"] = 30, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2709367754", - ["text"] = "Gain # Rage on Melee Hit", + ["id"] = "rune.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", ["type"] = "augment", }, }, - ["6473"] = { - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, + ["1798257884"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_155735928", - ["text"] = "Bonded: #% increased Glory generation", + ["id"] = "rune.stat_1798257884", + ["text"] = "Allies in your Presence deal #% increased Damage", ["type"] = "augment", }, }, - ["6476"] = { - ["Chest"] = { - ["max"] = 5, - ["min"] = 5, + ["1805633363"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3898665772", - ["text"] = "Bonded: #% increased Quantity of Gold Dropped by Slain Enemies", + ["id"] = "rune.stat_1805633363", + ["text"] = "#% increased Reservation Efficiency of Minion Skills", ["type"] = "augment", }, }, - ["6748"] = { - ["Staff"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 30, + ["1937310173"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1112792773", - ["text"] = "Bonded: #% increased Immobilisation buildup", + ["id"] = "rune.stat_1937310173", + ["text"] = "You Recoup #% of Damage taken by your Offerings as Life", ["type"] = "augment", }, }, - ["6924"] = { - ["1HMace"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["2HMace"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Bow"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Claw"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Crossbow"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Flail"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Quarterstaff"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Spear"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Talisman"] = { - ["max"] = 25, - ["min"] = 25, + ["1947060170"] = { + ["Helmet"] = { + ["max"] = 40, + ["min"] = 40, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_4058552370", - ["text"] = "Bonded: Invocated Spells have #% chance to consume half as much Energy", + ["id"] = "rune.stat_1947060170", + ["text"] = "#% of Armour also applies to Cold Damage", ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["6999"] = { - ["Boots"] = { - ["max"] = 5, - ["min"] = 5, + ["1984310483"] = { + ["Helmet"] = { + ["max"] = 6, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3473409233", - ["text"] = "Lose #% of maximum Life per second while Sprinting", + ["id"] = "rune.stat_1984310483", + ["text"] = "Enemies you Curse take #% increased Damage", ["type"] = "augment", }, }, - ["7037"] = { + ["1998951374"] = { ["1HWeapon"] = { - ["max"] = 25, - ["min"] = 25, + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2410766865", - ["text"] = "Bonded: #% increased Life Regeneration rate while Shapeshifted", + ["id"] = "rune.stat_1998951374", + ["text"] = "Allies in your Presence have #% increased Attack Speed", ["type"] = "augment", }, }, - ["7269"] = { + ["2011656677"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, + }, + ["Boots"] = { + ["max"] = 15, + ["min"] = 15, }, ["Bow"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, }, ["Claw"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, }, ["Crossbow"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, }, ["Flail"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, }, ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, }, ["Spear"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, }, ["Talisman"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3678845069", - ["text"] = "Attacks with this Weapon have #% chance to inflict Exposure", + ["id"] = "rune.stat_2011656677", + ["text"] = "#% increased Poison Duration", ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["7334"] = { + ["2023107756"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 2, + ["min"] = 2, }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 2, + ["min"] = 2, }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 2, + ["min"] = 2, }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 2, + ["min"] = 2, }, ["Bow"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 2, + ["min"] = 2, }, ["Claw"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 2, + ["min"] = 2, }, ["Crossbow"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 2, + ["min"] = 2, }, ["Flail"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 2, + ["min"] = 2, }, ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 2, + ["min"] = 2, }, ["Spear"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 2, + ["min"] = 2, }, ["Talisman"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 2, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3885634897", - ["text"] = "#% chance to Poison on Hit with this weapon", + ["id"] = "rune.stat_2023107756", + ["text"] = "Recover #% of maximum Life on Kill", + ["type"] = "augment", + }, + }, + ["2074866941"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 25, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_2074866941", + ["text"] = "#% increased Exposure Effect", ["type"] = "augment", }, }, - ["7336"] = { + ["2077615515"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 50, + ["min"] = 50, }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 50, + ["min"] = 50, }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 50, + ["min"] = 50, }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Boots"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 50, + ["min"] = 50, }, ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Chest"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 50, + ["min"] = 50, }, ["Claw"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 50, + ["min"] = 50, }, ["Crossbow"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 50, + ["min"] = 50, }, ["Flail"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Focus"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 50, + ["min"] = 50, }, ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Shield"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 50, + ["min"] = 50, }, ["Spear"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 50, + ["min"] = 50, }, ["Talisman"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 50, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1496740334", - ["text"] = "Convert #% of Requirements to Dexterity", + ["id"] = "rune.stat_2077615515", + ["text"] = "#% increased Attack Damage against Rare or Unique Enemies", ["type"] = "augment", }, }, - ["7337"] = { + ["210067635"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 5, + ["min"] = 5, }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 5, + ["min"] = 5, }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 5, + ["min"] = 5, }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Boots"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 5, + ["min"] = 5, }, ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Chest"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 5, + ["min"] = 5, }, ["Claw"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 5, + ["min"] = 5, }, ["Crossbow"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 5, + ["min"] = 5, }, ["Flail"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 5, + ["min"] = 5, }, - ["Focus"] = { - ["max"] = 20, - ["min"] = 20, + ["Quarterstaff"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "rune.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "augment", + }, + }, + ["2103650854"] = { ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 40, + ["min"] = 40, }, - ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "rune.stat_2103650854", + ["text"] = "#% increased effect of Arcane Surge on you", + ["type"] = "augment", }, - ["Shield"] = { - ["max"] = 20, - ["min"] = 20, + }, + ["2191621386"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 50, }, - ["Spear"] = { - ["max"] = 20, - ["min"] = 20, + ["specialCaseData"] = { }, - ["Talisman"] = { - ["max"] = 20, - ["min"] = 20, + ["tradeMod"] = { + ["id"] = "rune.stat_2191621386", + ["text"] = "#% of Armour also applies to Chaos Damage while on full Energy Shield", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["2200571612"] = { + ["Boots"] = { + ["max"] = 40, + ["min"] = 40, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2913012734", - ["text"] = "Convert #% of Requirements to Intelligence", + ["id"] = "rune.stat_2200571612", + ["text"] = "#% of Armour also applies to Lightning Damage", ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["7338"] = { + ["2223678961"] = { ["1HMace"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 24, + ["min"] = 24, }, ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 24, + ["min"] = 24, }, ["2HMace"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 24, + ["min"] = 24, }, ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Boots"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 24, + ["min"] = 24, }, ["Bow"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Chest"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 24, + ["min"] = 24, }, ["Claw"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 24, + ["min"] = 24, }, ["Crossbow"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 24, + ["min"] = 24, }, ["Flail"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Focus"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 24, + ["min"] = 24, }, ["Quarterstaff"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["Shield"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 24, + ["min"] = 24, }, ["Spear"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 24, + ["min"] = 24, }, ["Talisman"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 24, + ["min"] = 24, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1556124492", - ["text"] = "Convert #% of Requirements to Strength", + ["id"] = "rune.stat_2223678961", + ["text"] = "Adds # to # Chaos damage", ["type"] = "augment", }, }, - ["7483"] = { - ["Boots"] = { + ["2231410646"] = { + ["Helmet"] = { ["max"] = 15, ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2876843277", - ["text"] = "#% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently", + ["id"] = "rune.stat_2231410646", + ["text"] = "A random Skill that requires Glory generates #% of its maximum Glory when your Mark Activates", ["type"] = "augment", }, }, - ["821"] = { - ["1HMace"] = { - ["max"] = 18, - ["min"] = 14, + ["2241849004"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, - ["1HWeapon"] = { - ["max"] = 18, - ["min"] = 14, + ["specialCaseData"] = { }, - ["2HMace"] = { - ["max"] = 18, - ["min"] = 14, + ["tradeMod"] = { + ["id"] = "rune.stat_2241849004", + ["text"] = "Energy Shield Recharge starts after spending a total of 2000 Mana, no more than once every 2 seconds", + ["type"] = "augment", }, - ["2HWeapon"] = { - ["max"] = 18, - ["min"] = 14, + }, + ["2250533757"] = { + ["Boots"] = { + ["max"] = 5, + ["min"] = 5, }, - ["Bow"] = { - ["max"] = 18, - ["min"] = 14, + ["specialCaseData"] = { }, - ["Claw"] = { - ["max"] = 18, - ["min"] = 14, + ["tradeMod"] = { + ["id"] = "rune.stat_2250533757", + ["text"] = "#% increased Movement Speed", + ["type"] = "augment", }, - ["Crossbow"] = { - ["max"] = 18, - ["min"] = 14, + }, + ["2310741722"] = { + ["Boots"] = { + ["max"] = 12, + ["min"] = 8, }, - ["Flail"] = { - ["max"] = 18, - ["min"] = 14, + ["Chest"] = { + ["max"] = 12, + ["min"] = 8, }, - ["Quarterstaff"] = { - ["max"] = 18, - ["min"] = 14, + ["Focus"] = { + ["max"] = 12, + ["min"] = 8, }, - ["Spear"] = { - ["max"] = 18, - ["min"] = 14, + ["Gloves"] = { + ["max"] = 12, + ["min"] = 8, }, - ["Talisman"] = { - ["max"] = 18, - ["min"] = 14, + ["Helmet"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["Shield"] = { + ["max"] = 12, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1509134228", - ["text"] = "#% increased Physical Damage", + ["id"] = "rune.stat_2310741722", + ["text"] = "#% increased Life and Mana Recovery from Flasks", ["type"] = "augment", }, }, - ["823"] = { - ["1HMace"] = { - ["max"] = 28.5, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 28.5, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 28.5, - ["min"] = 5, + ["2339757871"] = { + ["Chest"] = { + ["max"] = 50, + ["min"] = 50, }, - ["2HWeapon"] = { - ["max"] = 28.5, - ["min"] = 5, + ["Staff"] = { + ["max"] = 18, + ["min"] = 12, }, - ["Bow"] = { - ["max"] = 28.5, - ["min"] = 5, + ["Wand"] = { + ["max"] = 18, + ["min"] = 12, }, - ["Claw"] = { - ["max"] = 28.5, - ["min"] = 5, + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 28.5, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "rune.stat_2339757871", + ["text"] = "#% increased Energy Shield Recharge Rate", + ["type"] = "augment", }, - ["Flail"] = { - ["max"] = 28.5, + }, + ["2353576063"] = { + ["Gloves"] = { + ["max"] = 5, ["min"] = 5, }, - ["Quarterstaff"] = { - ["max"] = 28.5, - ["min"] = 5, + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 28.5, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "rune.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "augment", }, - ["Talisman"] = { - ["max"] = 28.5, - ["min"] = 5, + }, + ["2363593824"] = { + ["Boots"] = { + ["max"] = 12, + ["min"] = 12, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_709508406", - ["text"] = "Adds # to # Fire Damage", + ["id"] = "rune.stat_2363593824", + ["text"] = "#% increased speed of Recoup Effects", ["type"] = "augment", }, }, - ["824"] = { - ["1HMace"] = { - ["max"] = 23.5, - ["min"] = 4, + ["2481353198"] = { + ["Helmet"] = { + ["max"] = 10, + ["min"] = 10, }, - ["1HWeapon"] = { - ["max"] = 23.5, - ["min"] = 4, + ["specialCaseData"] = { }, - ["2HMace"] = { - ["max"] = 23.5, - ["min"] = 4, + ["tradeMod"] = { + ["id"] = "rune.stat_2481353198", + ["text"] = "#% increased Block chance (Local)", + ["type"] = "augment", }, - ["2HWeapon"] = { - ["max"] = 23.5, - ["min"] = 4, + }, + ["2505884597"] = { + ["Staff"] = { + ["max"] = 10, + ["min"] = 6, }, - ["Bow"] = { - ["max"] = 23.5, - ["min"] = 4, + ["Wand"] = { + ["max"] = 10, + ["min"] = 6, }, - ["Claw"] = { - ["max"] = 23.5, - ["min"] = 4, + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 23.5, - ["min"] = 4, + ["tradeMod"] = { + ["id"] = "rune.stat_2505884597", + ["text"] = "Gain #% of Damage as Extra Cold Damage", + ["type"] = "augment", }, - ["Flail"] = { - ["max"] = 23.5, - ["min"] = 4, + }, + ["263495202"] = { + ["Helmet"] = { + ["max"] = 12, + ["min"] = 12, }, - ["Quarterstaff"] = { - ["max"] = 23.5, - ["min"] = 4, + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 23.5, - ["min"] = 4, + ["tradeMod"] = { + ["id"] = "rune.stat_263495202", + ["text"] = "#% increased Cost Efficiency", + ["type"] = "augment", }, - ["Talisman"] = { - ["max"] = 23.5, - ["min"] = 4, + }, + ["2663359259"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1037193709", - ["text"] = "Adds # to # Cold Damage", + ["id"] = "rune.stat_2663359259", + ["text"] = "#% increased total Power counted by Warcries", ["type"] = "augment", }, }, - ["825"] = { + ["2694482655"] = { ["1HMace"] = { - ["max"] = 30.5, - ["min"] = 5.5, + ["max"] = 5, + ["min"] = 5, }, ["1HWeapon"] = { - ["max"] = 30.5, - ["min"] = 5.5, + ["max"] = 5, + ["min"] = 5, }, ["2HMace"] = { - ["max"] = 30.5, - ["min"] = 5.5, + ["max"] = 5, + ["min"] = 5, }, ["2HWeapon"] = { - ["max"] = 30.5, - ["min"] = 5.5, + ["max"] = 5, + ["min"] = 5, }, ["Bow"] = { - ["max"] = 30.5, - ["min"] = 5.5, + ["max"] = 5, + ["min"] = 5, }, ["Claw"] = { - ["max"] = 30.5, - ["min"] = 5.5, + ["max"] = 5, + ["min"] = 5, }, ["Crossbow"] = { - ["max"] = 30.5, - ["min"] = 5.5, + ["max"] = 5, + ["min"] = 5, }, ["Flail"] = { - ["max"] = 30.5, - ["min"] = 5.5, + ["max"] = 5, + ["min"] = 5, }, ["Quarterstaff"] = { - ["max"] = 30.5, - ["min"] = 5.5, + ["max"] = 5, + ["min"] = 5, }, ["Spear"] = { - ["max"] = 30.5, - ["min"] = 5.5, + ["max"] = 5, + ["min"] = 5, }, ["Talisman"] = { - ["max"] = 30.5, - ["min"] = 5.5, + ["max"] = 5, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3336890334", - ["text"] = "Adds # to # Lightning Damage", + ["id"] = "rune.stat_2694482655", + ["text"] = "#% to Critical Damage Bonus", ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["827"] = { + ["2703838669"] = { ["Boots"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2250533757", - ["text"] = "#% increased Movement Speed", + ["id"] = "rune.stat_2703838669", + ["text"] = "#% increased Movement Speed per 15 Spirit, up to a maximum of 40%Other Modifiers to Movement Speed except for Sprinting do not apply", ["type"] = "augment", }, }, - ["8275"] = { - ["Helmet"] = { - ["max"] = 15, - ["min"] = 15, + ["2709367754"] = { + ["Gloves"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2231410646", - ["text"] = "A random Skill that requires Glory generates #% of its maximum Glory when your Mark Activates", + ["id"] = "rune.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", ["type"] = "augment", }, }, - ["828"] = { - ["1HMace"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["2HMace"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["2HWeapon"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Bow"] = { - ["max"] = 8, - ["min"] = 8, + ["2748665614"] = { + ["Helmet"] = { + ["max"] = 3, + ["min"] = 3, }, - ["Claw"] = { - ["max"] = 8, - ["min"] = 8, + ["specialCaseData"] = { }, - ["Crossbow"] = { - ["max"] = 8, - ["min"] = 8, + ["tradeMod"] = { + ["id"] = "rune.stat_2748665614", + ["text"] = "#% increased maximum Mana", + ["type"] = "augment", }, - ["Flail"] = { - ["max"] = 8, - ["min"] = 8, + }, + ["280497929"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Quarterstaff"] = { - ["max"] = 8, - ["min"] = 8, + ["specialCaseData"] = { }, - ["Spear"] = { - ["max"] = 8, - ["min"] = 8, + ["tradeMod"] = { + ["id"] = "rune.stat_280497929", + ["text"] = "# to maximum Mana per 2 Item Energy Shield on Equipped Helmet", + ["type"] = "augment", }, - ["Talisman"] = { + ["usePositiveSign"] = true, + }, + ["280731498"] = { + ["Helmet"] = { ["max"] = 8, ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_970213192", - ["text"] = "#% increased Skill Speed", + ["id"] = "rune.stat_280731498", + ["text"] = "#% increased Area of Effect", ["type"] = "augment", }, }, - ["8332"] = { - ["Chest"] = { - ["max"] = 8, - ["min"] = 8, + ["2854751904"] = { + ["1HWeapon"] = { + ["max"] = 20.5, + ["min"] = 20.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2100249038", - ["text"] = "Bonded: #% of Maximum Life Converted to Energy Shield", + ["id"] = "rune.stat_2854751904", + ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", ["type"] = "augment", }, }, - ["840"] = { + ["2876843277"] = { ["Boots"] = { - ["max"] = 18, - ["min"] = 14, + ["max"] = 15, + ["min"] = 15, }, - ["Chest"] = { - ["max"] = 18, - ["min"] = 14, + ["specialCaseData"] = { }, - ["Focus"] = { - ["max"] = 18, - ["min"] = 14, + ["tradeMod"] = { + ["id"] = "rune.stat_2876843277", + ["text"] = "#% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently", + ["type"] = "augment", }, + }, + ["2891184298"] = { ["Gloves"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["Helmet"] = { - ["max"] = 18, - ["min"] = 14, - }, - ["Shield"] = { - ["max"] = 18, - ["min"] = 14, + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3523867985", - ["text"] = "#% increased Armour, Evasion and Energy Shield", + ["id"] = "rune.stat_2891184298", + ["text"] = "#% increased Cast Speed", ["type"] = "augment", }, }, - ["842"] = { + ["289128254"] = { ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3984865854", - ["text"] = "#% increased Spirit", + ["id"] = "rune.stat_289128254", + ["text"] = "Allies in your Presence have #% increased Cast Speed", ["type"] = "augment", }, }, - ["843"] = { + ["2901986750"] = { + ["Boots"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Chest"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Focus"] = { + ["max"] = 5, + ["min"] = 5, + }, ["Gloves"] = { - ["max"] = 8.5, - ["min"] = 8.5, + ["max"] = 5, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 5, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3032590688", - ["text"] = "Adds # to # Physical Damage to Attacks", + ["id"] = "rune.stat_2901986750", + ["text"] = "#% to all Elemental Resistances", ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["847"] = { + ["2910761524"] = { ["Staff"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 25, + ["min"] = 25, }, ["Wand"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 25, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3015669065", - ["text"] = "Gain #% of Damage as Extra Fire Damage", + ["id"] = "rune.stat_2910761524", + ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", ["type"] = "augment", }, }, - ["8471"] = { + ["2913012734"] = { + ["1HMace"] = { + ["max"] = 20, + ["min"] = 20, + }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 20, + ["min"] = 20, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 20, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "rune.stat_1611856026", - ["text"] = "Bonded: Minions have #% increased Cooldown Recovery Rate for Command Skills", - ["type"] = "augment", + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, }, - }, - ["8473"] = { - ["1HWeapon"] = { - ["max"] = 40, - ["min"] = 40, + ["Boots"] = { + ["max"] = 20, + ["min"] = 20, }, - ["Staff"] = { - ["max"] = 40, - ["min"] = 40, + ["Bow"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Chest"] = { + ["max"] = 20, + ["min"] = 20, }, - ["Wand"] = { - ["max"] = 40, - ["min"] = 40, + ["Claw"] = { + ["max"] = 20, + ["min"] = 20, }, - ["specialCaseData"] = { + ["Crossbow"] = { + ["max"] = 20, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "rune.stat_3742865955", - ["text"] = "Minions deal #% increased Damage with Command Skills", - ["type"] = "augment", + ["Flail"] = { + ["max"] = 20, + ["min"] = 20, }, - }, - ["849"] = { - ["Staff"] = { - ["max"] = 10, - ["min"] = 6, + ["Focus"] = { + ["max"] = 20, + ["min"] = 20, }, - ["Wand"] = { - ["max"] = 10, - ["min"] = 6, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, }, - ["specialCaseData"] = { + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, }, - ["tradeMod"] = { - ["id"] = "rune.stat_2505884597", - ["text"] = "Gain #% of Damage as Extra Cold Damage", - ["type"] = "augment", + ["Quarterstaff"] = { + ["max"] = 20, + ["min"] = 20, }, - }, - ["851"] = { - ["Staff"] = { - ["max"] = 10, - ["min"] = 6, + ["Shield"] = { + ["max"] = 20, + ["min"] = 20, }, - ["Wand"] = { - ["max"] = 10, - ["min"] = 6, + ["Spear"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Talisman"] = { + ["max"] = 20, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3278136794", - ["text"] = "Gain #% of Damage as Extra Lightning Damage", + ["id"] = "rune.stat_2913012734", + ["text"] = "Convert #% of Requirements to Intelligence", ["type"] = "augment", }, }, - ["8518"] = { + ["2916861134"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 50, + ["min"] = 50, }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 50, + ["min"] = 50, }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 50, + ["min"] = 50, }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 50, + ["min"] = 50, }, ["Bow"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 50, + ["min"] = 50, }, ["Claw"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 50, + ["min"] = 50, }, ["Crossbow"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 50, + ["min"] = 50, }, ["Flail"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 50, + ["min"] = 50, }, ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 50, + ["min"] = 50, }, ["Spear"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 50, + ["min"] = 50, + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 50, }, ["Talisman"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 50, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1433756169", - ["text"] = "Minions gain #% of their Physical Damage as Extra Lightning Damage", + ["id"] = "rune.stat_2916861134", + ["text"] = "#% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", ["type"] = "augment", }, }, - ["8519"] = { + ["2923486259"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 11, + ["min"] = 11, }, ["Chest"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 11, + ["min"] = 11, }, ["Focus"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 11, + ["min"] = 11, }, ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 11, + ["min"] = 11, }, ["Helmet"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 11, + ["min"] = 11, }, ["Shield"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 11, + ["min"] = 11, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_889552744", - ["text"] = "Minions take #% of Physical Damage as Lightning Damage", + ["id"] = "rune.stat_2923486259", + ["text"] = "#% to Chaos Resistance", ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["8524"] = { - ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, + ["293638271"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 30, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 30, }, - ["tradeMod"] = { - ["id"] = "rune.stat_1805633363", - ["text"] = "#% increased Reservation Efficiency of Minion Skills", - ["type"] = "augment", + ["2HMace"] = { + ["max"] = 30, + ["min"] = 30, }, - }, - ["8529"] = { - ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 30, }, - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 30, + ["min"] = 30, }, - ["tradeMod"] = { - ["id"] = "rune.stat_839375491", - ["text"] = "Bonded: Minions Revive #% faster", - ["type"] = "augment", + ["Claw"] = { + ["max"] = 30, + ["min"] = 30, }, - }, - ["853"] = { - ["Staff"] = { + ["Crossbow"] = { ["max"] = 30, - ["min"] = 20, + ["min"] = 30, }, - ["Wand"] = { + ["Flail"] = { ["max"] = 30, - ["min"] = 20, + ["min"] = 30, + }, + ["Quarterstaff"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Spear"] = { + ["max"] = 30, + ["min"] = 30, + }, + ["Talisman"] = { + ["max"] = 30, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2974417149", - ["text"] = "#% increased Spell Damage", + ["id"] = "rune.stat_293638271", + ["text"] = "#% increased chance to Shock", ["type"] = "augment", }, }, - ["859"] = { + ["2968503605"] = { ["1HMace"] = { ["max"] = 30, ["min"] = 30, @@ -25634,573 +20062,508 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_387439868", - ["text"] = "#% increased Elemental Damage with Attacks", + ["id"] = "rune.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", ["type"] = "augment", }, }, - ["8659"] = { - ["Helmet"] = { - ["max"] = 15, - ["min"] = 15, + ["2974417149"] = { + ["Staff"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["Wand"] = { + ["max"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3891661462", - ["text"] = "Bonded: #% increased Magnitude of Non-Damaging Ailments you inflict", + ["id"] = "rune.stat_2974417149", + ["text"] = "#% increased Spell Damage", ["type"] = "augment", }, }, - ["867"] = { + ["3015669065"] = { ["Staff"] = { - ["max"] = 35, - ["min"] = 25, + ["max"] = 10, + ["min"] = 6, }, ["Wand"] = { - ["max"] = 35, - ["min"] = 25, + ["max"] = 10, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3489782002", - ["text"] = "# to maximum Energy Shield", + ["id"] = "rune.stat_3015669065", + ["text"] = "Gain #% of Damage as Extra Fire Damage", ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["869"] = { - ["Boots"] = { - ["max"] = 40, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 40, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 40, - ["min"] = 10, - }, + ["3032590688"] = { ["Gloves"] = { - ["max"] = 40, - ["min"] = 10, + ["max"] = 8.5, + ["min"] = 8.5, }, - ["Helmet"] = { - ["max"] = 40, - ["min"] = 10, + ["specialCaseData"] = { }, - ["Shield"] = { - ["max"] = 40, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "rune.stat_3032590688", + ["text"] = "Adds # to # Physical Damage to Attacks", + ["type"] = "augment", + }, + }, + ["3057012405"] = { + ["1HWeapon"] = { + ["max"] = 14, + ["min"] = 14, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3299347043", - ["text"] = "# to maximum Life", + ["id"] = "rune.stat_3057012405", + ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["8691"] = { - ["1HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["2HMace"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, + ["3107707789"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 25, }, - ["Bow"] = { - ["max"] = 5, - ["min"] = 5, + ["specialCaseData"] = { }, - ["Claw"] = { - ["max"] = 5, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "rune.stat_3107707789", + ["text"] = "#% increased Movement Speed while Sprinting", + ["type"] = "augment", }, - ["Crossbow"] = { - ["max"] = 5, - ["min"] = 5, + }, + ["310945763"] = { + ["Gloves"] = { + ["max"] = 25, + ["min"] = 25, }, - ["Flail"] = { - ["max"] = 5, - ["min"] = 5, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "rune.stat_310945763", + ["text"] = "#% increased Life Cost Efficiency", + ["type"] = "augment", }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 5, + }, + ["3166958180"] = { + ["Gloves"] = { + ["max"] = 10, + ["min"] = 10, }, - ["Staff"] = { - ["max"] = 5, - ["min"] = 5, + ["specialCaseData"] = { }, - ["Talisman"] = { - ["max"] = 5, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "rune.stat_3166958180", + ["text"] = "#% increased Magnitude of Bleeding you inflict", + ["type"] = "augment", }, - ["Wand"] = { - ["max"] = 5, - ["min"] = 5, + }, + ["3175163625"] = { + ["Gloves"] = { + ["max"] = 10, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_731403740", - ["text"] = "Gain #% of Damage as Extra Damage of all Elements", + ["id"] = "rune.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", ["type"] = "augment", }, }, - ["870"] = { + ["3261801346"] = { ["1HMace"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, }, ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, }, ["2HMace"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, }, ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 10, + ["min"] = 6, }, ["Bow"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 10, + ["min"] = 6, }, ["Claw"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, }, ["Crossbow"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, }, ["Flail"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 10, + ["min"] = 6, }, ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 6, }, ["Spear"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, }, ["Staff"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, }, ["Talisman"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, }, ["Wand"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2246411426", - ["text"] = "Bonded: #% increased maximum Life", + ["id"] = "rune.stat_3261801346", + ["text"] = "# to Dexterity", ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["871"] = { - ["Boots"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Focus"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["Helmet"] = { + ["3278136794"] = { + ["Staff"] = { ["max"] = 10, - ["min"] = 10, + ["min"] = 6, }, - ["Shield"] = { + ["Wand"] = { ["max"] = 10, - ["min"] = 10, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2926029365", - ["text"] = "Bonded: # to maximum Mana", + ["id"] = "rune.stat_3278136794", + ["text"] = "Gain #% of Damage as Extra Lightning Damage", ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["872"] = { + ["328541901"] = { ["1HMace"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, }, ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, }, ["2HMace"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, }, ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, + }, + ["Boots"] = { + ["max"] = 10, + ["min"] = 6, }, ["Bow"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, + }, + ["Chest"] = { + ["max"] = 10, + ["min"] = 6, }, ["Claw"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, }, ["Crossbow"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, }, ["Flail"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, + }, + ["Focus"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Gloves"] = { + ["max"] = 10, + ["min"] = 6, + }, + ["Helmet"] = { + ["max"] = 10, + ["min"] = 6, }, ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, + }, + ["Shield"] = { + ["max"] = 10, + ["min"] = 6, }, ["Spear"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, }, ["Staff"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, }, ["Talisman"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, }, ["Wand"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1586906534", - ["text"] = "Bonded: #% increased maximum Mana", + ["id"] = "rune.stat_328541901", + ["text"] = "# to Intelligence", ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["874"] = { - ["1HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["2HMace"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Bow"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Claw"] = { - ["max"] = 15, - ["min"] = 15, + ["3299347043"] = { + ["Boots"] = { + ["max"] = 40, + ["min"] = 20, }, - ["Crossbow"] = { - ["max"] = 15, - ["min"] = 15, + ["Chest"] = { + ["max"] = 40, + ["min"] = 20, }, - ["Flail"] = { - ["max"] = 15, - ["min"] = 15, + ["Focus"] = { + ["max"] = 40, + ["min"] = 20, }, - ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 15, + ["Gloves"] = { + ["max"] = 40, + ["min"] = 20, }, - ["Spear"] = { - ["max"] = 15, - ["min"] = 15, + ["Helmet"] = { + ["max"] = 40, + ["min"] = 20, }, - ["Talisman"] = { - ["max"] = 15, - ["min"] = 15, + ["Shield"] = { + ["max"] = 40, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3981240776", - ["text"] = "# to Spirit", + ["id"] = "rune.stat_3299347043", + ["text"] = "# to maximum Life", ["type"] = "augment", }, ["usePositiveSign"] = true, }, - ["8749"] = { + ["3336890334"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 30.5, + ["min"] = 5.5, }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 30.5, + ["min"] = 5.5, }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 30.5, + ["min"] = 5.5, }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 30.5, + ["min"] = 5.5, }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 30.5, + ["min"] = 5.5, }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 30.5, + ["min"] = 5.5, }, ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 30.5, + ["min"] = 5.5, }, ["Flail"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 30.5, + ["min"] = 5.5, }, ["Quarterstaff"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 30.5, + ["min"] = 5.5, }, ["Spear"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 30.5, + ["min"] = 5.5, }, ["Talisman"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1755296234", - ["text"] = "Targets can be affected by # of your Poisons at the same time", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["875"] = { - ["2HWeapon"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3759663284", - ["text"] = "#% increased Projectile Speed", - ["type"] = "augment", - }, - }, - ["881"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1798257884", - ["text"] = "Allies in your Presence deal #% increased Damage", - ["type"] = "augment", - }, - }, - ["882"] = { - ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 30.5, + ["min"] = 5.5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1574590649", - ["text"] = "Allies in your Presence deal # to # added Attack Physical Damage", + ["id"] = "rune.stat_3336890334", + ["text"] = "Adds # to # Lightning Damage", ["type"] = "augment", }, }, - ["885"] = { - ["1HWeapon"] = { - ["max"] = 20.5, - ["min"] = 20.5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_2854751904", - ["text"] = "Allies in your Presence deal # to # added Attack Lightning Damage", - ["type"] = "augment", + ["3372524247"] = { + ["Boots"] = { + ["max"] = 14, + ["min"] = 10, }, - }, - ["8867"] = { ["Chest"] = { - ["max"] = 10, + ["max"] = 14, ["min"] = 10, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1374654984", - ["text"] = "#% of Physical Damage prevented Recouped as Life", - ["type"] = "augment", - }, - }, - ["891"] = { - ["1HWeapon"] = { + ["Focus"] = { ["max"] = 14, - ["min"] = 14, + ["min"] = 10, }, - ["specialCaseData"] = { + ["Gloves"] = { + ["max"] = 14, + ["min"] = 10, }, - ["tradeMod"] = { - ["id"] = "rune.stat_1250712710", - ["text"] = "Allies in your Presence have #% increased Critical Hit Chance", - ["type"] = "augment", + ["Helmet"] = { + ["max"] = 14, + ["min"] = 10, }, - }, - ["892"] = { - ["1HWeapon"] = { + ["Shield"] = { ["max"] = 14, - ["min"] = 14, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3057012405", - ["text"] = "Allies in your Presence have #% increased Critical Damage Bonus", + ["id"] = "rune.stat_3372524247", + ["text"] = "#% to Fire Resistance", ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["893"] = { - ["1HWeapon"] = { + ["3377888098"] = { + ["Helmet"] = { ["max"] = 8, ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1998951374", - ["text"] = "Allies in your Presence have #% increased Attack Speed", + ["id"] = "rune.stat_3377888098", + ["text"] = "#% increased Skill Effect Duration", ["type"] = "augment", }, }, - ["894"] = { - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 8, + ["3398787959"] = { + ["1HMace"] = { + ["max"] = 13, + ["min"] = 13, }, - ["specialCaseData"] = { + ["1HWeapon"] = { + ["max"] = 13, + ["min"] = 13, }, - ["tradeMod"] = { - ["id"] = "rune.stat_289128254", - ["text"] = "Allies in your Presence have #% increased Cast Speed", - ["type"] = "augment", + ["2HMace"] = { + ["max"] = 13, + ["min"] = 13, }, - }, - ["895"] = { - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 8, + ["2HWeapon"] = { + ["max"] = 13, + ["min"] = 13, }, - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 13, + ["min"] = 13, }, - ["tradeMod"] = { - ["id"] = "rune.stat_3850614073", - ["text"] = "Allies in your Presence have #% to all Elemental Resistances", - ["type"] = "augment", + ["Claw"] = { + ["max"] = 13, + ["min"] = 13, }, - ["usePositiveSign"] = true, - }, - ["896"] = { - ["1HWeapon"] = { - ["max"] = 8, - ["min"] = 8, + ["Crossbow"] = { + ["max"] = 13, + ["min"] = 13, }, - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 13, + ["min"] = 13, }, - ["tradeMod"] = { - ["id"] = "rune.stat_4010677958", - ["text"] = "Allies in your Presence Regenerate # Life per second", - ["type"] = "augment", + ["Quarterstaff"] = { + ["max"] = 13, + ["min"] = 13, }, - }, - ["9032"] = { - ["Helmet"] = { - ["max"] = 4, - ["min"] = 4, + ["Spear"] = { + ["max"] = 13, + ["min"] = 13, }, - ["specialCaseData"] = { + ["Staff"] = { + ["max"] = 13, + ["min"] = 13, }, - ["tradeMod"] = { - ["id"] = "rune.stat_1181501418", - ["text"] = "# to Maximum Rage", - ["type"] = "augment", + ["Talisman"] = { + ["max"] = 13, + ["min"] = 13, }, - ["usePositiveSign"] = true, - }, - ["9084"] = { - ["Boots"] = { - ["max"] = 12, - ["min"] = 12, + ["Wand"] = { + ["max"] = 13, + ["min"] = 13, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2363593824", - ["text"] = "#% increased speed of Recoup Effects", + ["id"] = "rune.stat_3398787959", + ["text"] = "Gain #% of Damage as Extra Chaos Damage", ["type"] = "augment", }, }, - ["9105"] = { + ["3407849389"] = { ["Chest"] = { ["max"] = 50, ["min"] = 50, @@ -26208,368 +20571,371 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1937310173", - ["text"] = "You Recoup #% of Damage taken by your Offerings as Life", + ["id"] = "rune.stat_3407849389", + ["text"] = "#% reduced effect of Curses on you", ["type"] = "augment", }, }, - ["9139"] = { - ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, + ["3473409233"] = { + ["Boots"] = { + ["max"] = 5, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_426207520", - ["text"] = "Each Runic Inscription from your Curse Skills causes you to Regenerate Mana per second equal to #% of that Skill's Mana Cost", + ["id"] = "rune.stat_3473409233", + ["text"] = "Lose #% of maximum Life per second while Sprinting", ["type"] = "augment", }, }, - ["9151"] = { - ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3227486464", - ["text"] = "Bonded: Remnants have #% increased effect", - ["type"] = "augment", + ["3489782002"] = { + ["Staff"] = { + ["max"] = 35, + ["min"] = 25, }, - }, - ["9153"] = { - ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, + ["Wand"] = { + ["max"] = 35, + ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3373098634", - ["text"] = "Bonded: Remnants can be collected from #% further away", + ["id"] = "rune.stat_3489782002", + ["text"] = "# to maximum Energy Shield", ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["916"] = { + ["3523867985"] = { + ["Boots"] = { + ["max"] = 18, + ["min"] = 14, + }, ["Chest"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 18, + ["min"] = 14, }, - ["specialCaseData"] = { + ["Focus"] = { + ["max"] = 18, + ["min"] = 14, }, - ["tradeMod"] = { - ["id"] = "rune.stat_3917489142", - ["text"] = "#% increased Rarity of Items found", - ["type"] = "augment", + ["Gloves"] = { + ["max"] = 18, + ["min"] = 14, }, - }, - ["9162"] = { ["Helmet"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_594547430", - ["text"] = "Remove a Damaging Ailment when you use a Command Skill", - ["type"] = "augment", + ["max"] = 18, + ["min"] = 14, }, - }, - ["9178"] = { - ["Helmet"] = { - ["max"] = 10, - ["min"] = 10, + ["Shield"] = { + ["max"] = 18, + ["min"] = 14, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2729035954", - ["text"] = "Bonded: #% increased Reservation Efficiency of Companion Skills", + ["id"] = "rune.stat_3523867985", + ["text"] = "#% increased Armour, Evasion and Energy Shield", ["type"] = "augment", }, }, - ["9179"] = { + ["3537994888"] = { ["1HMace"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 50, + ["min"] = 50, }, ["1HWeapon"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 50, + ["min"] = 50, }, ["2HMace"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 50, + ["min"] = 50, }, ["2HWeapon"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 50, + ["min"] = 50, }, ["Bow"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 50, + ["min"] = 50, }, ["Claw"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 50, + ["min"] = 50, }, ["Crossbow"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 50, + ["min"] = 50, }, ["Flail"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 50, + ["min"] = 50, }, ["Quarterstaff"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 50, + ["min"] = 50, }, ["Spear"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 50, + ["min"] = 50, + }, + ["Staff"] = { + ["max"] = 50, + ["min"] = 50, }, ["Talisman"] = { - ["max"] = 15, - ["min"] = 15, + ["max"] = 50, + ["min"] = 50, + }, + ["Wand"] = { + ["max"] = 50, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1299166504", - ["text"] = "Bonded: #% increased Reservation Efficiency of Herald Skills", + ["id"] = "rune.stat_3537994888", + ["text"] = "#% chance when you gain a Power Charge to gain an additional Power Charge", ["type"] = "augment", }, }, - ["918"] = { - ["1HMace"] = { - ["max"] = 5, - ["min"] = 5, + ["3544800472"] = { + ["Boots"] = { + ["max"] = 25, + ["min"] = 25, }, - ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, + ["specialCaseData"] = { }, - ["2HMace"] = { - ["max"] = 5, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "rune.stat_3544800472", + ["text"] = "#% increased Elemental Ailment Threshold", + ["type"] = "augment", }, - ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, + }, + ["3552135623"] = { + ["Chest"] = { + ["max"] = 3, + ["min"] = 3, }, - ["Bow"] = { - ["max"] = 5, - ["min"] = 5, + ["specialCaseData"] = { }, - ["Claw"] = { - ["max"] = 5, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "rune.stat_3552135623", + ["text"] = "Prevent #% of Damage from Deflected Hits", + ["type"] = "augment", }, - ["Crossbow"] = { - ["max"] = 5, - ["min"] = 5, + ["usePositiveSign"] = true, + }, + ["3570773271"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, }, - ["Flail"] = { - ["max"] = 5, - ["min"] = 5, + ["specialCaseData"] = { }, - ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 5, + ["tradeMod"] = { + ["id"] = "rune.stat_3570773271", + ["text"] = "Increases and Reductions to Life Regeneration Rate also apply to Mana Regeneration Rate", + ["type"] = "augment", }, - ["Spear"] = { - ["max"] = 5, - ["min"] = 5, + }, + ["3585532255"] = { + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, }, - ["Talisman"] = { - ["max"] = 5, - ["min"] = 5, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3585532255", + ["text"] = "#% increased Charm Charges gained", + ["type"] = "augment", + }, + }, + ["3655769732"] = { + ["Chest"] = { + ["max"] = 2, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2694482655", - ["text"] = "#% to Critical Damage Bonus", + ["id"] = "rune.stat_3655769732", + ["text"] = "#% to Quality of all Skills", ["type"] = "augment", }, ["usePositiveSign"] = true, }, - ["9180"] = { + ["3666934677"] = { ["Helmet"] = { - ["max"] = 12, - ["min"] = 12, + ["max"] = 2, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_4254029169", - ["text"] = "Bonded: Meta Skills have #% increased Reservation Efficiency", + ["id"] = "rune.stat_3666934677", + ["text"] = "#% increased Experience gain", ["type"] = "augment", }, }, - ["9188"] = { - ["Gloves"] = { + ["3676141501"] = { + ["Helmet"] = { ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1480688478", - ["text"] = "One of your Persistent Minions revives when an Offering expires", + ["id"] = "rune.stat_3676141501", + ["text"] = "#% to Maximum Cold Resistance", ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["919"] = { + ["3678845069"] = { ["1HMace"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 10, }, ["1HWeapon"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 10, }, ["2HMace"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 10, }, ["2HWeapon"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 10, }, ["Bow"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 10, }, ["Claw"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 10, }, ["Crossbow"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 10, }, ["Flail"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 10, }, ["Quarterstaff"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 10, }, ["Spear"] = { - ["max"] = 5, - ["min"] = 5, + ["max"] = 10, + ["min"] = 10, }, ["Talisman"] = { - ["max"] = 5, - ["min"] = 5, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_681332047", - ["text"] = "#% increased Attack Speed", - ["type"] = "augment", - }, - }, - ["9195"] = { - ["Boots"] = { ["max"] = 10, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1585886916", - ["text"] = "Sacrifice #% of maximum Life to gain that much Guard when you Dodge Roll", - ["type"] = "augment", - }, - }, - ["922"] = { - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_124131830", - ["text"] = "# to Level of all Spell Skills", + ["id"] = "rune.stat_3678845069", + ["text"] = "Attacks with this Weapon have #% chance to inflict Exposure", ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["9248"] = { + ["3695891184"] = { ["1HMace"] = { ["max"] = 30, - ["min"] = 30, + ["min"] = 10, }, ["1HWeapon"] = { ["max"] = 30, - ["min"] = 30, + ["min"] = 10, }, ["2HMace"] = { ["max"] = 30, - ["min"] = 30, + ["min"] = 10, }, ["2HWeapon"] = { ["max"] = 30, - ["min"] = 30, + ["min"] = 10, }, ["Bow"] = { ["max"] = 30, - ["min"] = 30, + ["min"] = 10, }, ["Claw"] = { ["max"] = 30, - ["min"] = 30, + ["min"] = 10, }, ["Crossbow"] = { ["max"] = 30, - ["min"] = 30, + ["min"] = 10, }, ["Flail"] = { ["max"] = 30, - ["min"] = 30, + ["min"] = 10, }, ["Quarterstaff"] = { ["max"] = 30, - ["min"] = 30, + ["min"] = 10, }, ["Spear"] = { ["max"] = 30, - ["min"] = 30, - }, - ["Staff"] = { - ["max"] = 30, - ["min"] = 30, + ["min"] = 10, }, ["Talisman"] = { ["max"] = 30, - ["min"] = 30, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3695891184", + ["text"] = "Gain # Life per enemy killed", + ["type"] = "augment", + }, + }, + ["3742865955"] = { + ["1HWeapon"] = { + ["max"] = 40, + ["min"] = 40, + }, + ["Staff"] = { + ["max"] = 40, + ["min"] = 40, }, ["Wand"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 40, + ["min"] = 40, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3742865955", + ["text"] = "Minions deal #% increased Damage with Command Skills", + ["type"] = "augment", + }, + }, + ["3759663284"] = { + ["2HWeapon"] = { + ["max"] = 20, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2430860292", - ["text"] = "Bonded: #% increased Magnitude of Shock you inflict", + ["id"] = "rune.stat_3759663284", + ["text"] = "#% increased Projectile Speed", ["type"] = "augment", }, }, - ["9261"] = { + ["3801067695"] = { ["Boots"] = { ["max"] = 10, ["min"] = 10, @@ -26602,381 +20968,357 @@ return { ["type"] = "augment", }, }, - ["929"] = { + ["3824372849"] = { + ["Boots"] = { + ["max"] = 15, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3824372849", + ["text"] = "#% increased Curse Duration", + ["type"] = "augment", + }, + }, + ["3850614073"] = { + ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3850614073", + ["text"] = "Allies in your Presence have #% to all Elemental Resistances", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["3855016469"] = { + ["Chest"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["Helmet"] = { + ["max"] = 20, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "augment", + }, + }, + ["387439868"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 30, + ["min"] = 30, }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 30, + ["min"] = 30, }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 30, + ["min"] = 30, }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 30, + ["min"] = 30, }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 30, + ["min"] = 30, }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 30, + ["min"] = 30, }, ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 30, + ["min"] = 30, }, ["Flail"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 30, + ["min"] = 30, }, ["Quarterstaff"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 30, + ["min"] = 30, }, ["Spear"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 30, + ["min"] = 30, }, ["Talisman"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 30, + ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_243313994", - ["text"] = "Bonded: # to Level of all Attack Skills", + ["id"] = "rune.stat_387439868", + ["text"] = "#% increased Elemental Damage with Attacks", ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["9317"] = { - ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 10, + ["3885405204"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { - ["id"] = "rune.stat_144568384", - ["text"] = "Bonded: #% increased Skill Speed while Shapeshifted", + ["id"] = "rune.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", ["type"] = "augment", }, }, - ["935"] = { - ["Staff"] = { - ["max"] = 24, - ["min"] = 16, - }, - ["Wand"] = { - ["max"] = 24, - ["min"] = 16, - }, - ["specialCaseData"] = { + ["3885634897"] = { + ["1HMace"] = { + ["max"] = 15, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "rune.stat_737908626", - ["text"] = "#% increased Critical Hit Chance for Spells", - ["type"] = "augment", + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 15, }, - }, - ["937"] = { - ["Staff"] = { - ["max"] = 25, - ["min"] = 25, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 15, }, - ["Wand"] = { - ["max"] = 25, - ["min"] = 25, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 15, }, - ["specialCaseData"] = { + ["Bow"] = { + ["max"] = 15, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "rune.stat_4221147896", - ["text"] = "Bonded: #% increased Critical Damage Bonus", - ["type"] = "augment", + ["Claw"] = { + ["max"] = 15, + ["min"] = 15, }, - }, - ["9405"] = { - ["Staff"] = { - ["max"] = 1, - ["min"] = 1, + ["Crossbow"] = { + ["max"] = 15, + ["min"] = 15, }, - ["Wand"] = { - ["max"] = 1, - ["min"] = 1, + ["Flail"] = { + ["max"] = 15, + ["min"] = 15, }, - ["specialCaseData"] = { + ["Quarterstaff"] = { + ["max"] = 15, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "rune.stat_807013157", - ["text"] = "Bonded: Every Rage also grants #% increased Spell Damage", - ["type"] = "augment", + ["Spear"] = { + ["max"] = 15, + ["min"] = 15, }, - }, - ["941"] = { - ["Gloves"] = { - ["max"] = 8, - ["min"] = 8, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_681332047", - ["text"] = "#% increased Attack Speed", + ["id"] = "rune.stat_3885634897", + ["text"] = "#% chance to Poison on Hit with this weapon", ["type"] = "augment", }, }, - ["942"] = { + ["3897831687"] = { ["Gloves"] = { - ["max"] = 8, - ["min"] = 8, + ["max"] = 40, + ["min"] = 40, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2891184298", - ["text"] = "#% increased Cast Speed", + ["id"] = "rune.stat_3897831687", + ["text"] = "#% of Armour also applies to Fire Damage", ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["9431"] = { - ["Staff"] = { - ["max"] = 25, - ["min"] = 25, - }, - ["Wand"] = { + ["3903510399"] = { + ["Helmet"] = { ["max"] = 25, ["min"] = 25, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2910761524", - ["text"] = "#% chance for Spell Skills to fire 2 additional Projectiles", - ["type"] = "augment", - }, - }, - ["945"] = { - ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", + ["id"] = "rune.stat_3903510399", + ["text"] = "Gain Armour equal to #% of Life Lost from Hits in the past 8 seconds", ["type"] = "augment", }, }, - ["946"] = { + ["3917489142"] = { ["Chest"] = { - ["max"] = 4, - ["min"] = 4, + ["max"] = 5, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_534024", - ["text"] = "Bonded: # to all Attributes", + ["id"] = "rune.stat_3917489142", + ["text"] = "#% increased Rarity of Items found", ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["9465"] = { - ["Boots"] = { - ["max"] = 25, - ["min"] = 25, + ["3973629633"] = { + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3107707789", - ["text"] = "#% increased Movement Speed while Sprinting", + ["id"] = "rune.stat_3973629633", + ["text"] = "#% increased Withered Magnitude", ["type"] = "augment", }, }, - ["947"] = { + ["3981240776"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 15, + ["min"] = 15, }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 15, + ["min"] = 15, }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 15, + ["min"] = 15, }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 15, + ["min"] = 15, }, ["Bow"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 15, + ["min"] = 15, }, ["Claw"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 15, + ["min"] = 15, }, ["Crossbow"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 15, + ["min"] = 15, }, ["Flail"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 15, + ["min"] = 15, }, - ["Focus"] = { - ["max"] = 10, - ["min"] = 6, + ["Quarterstaff"] = { + ["max"] = 15, + ["min"] = 15, }, - ["Gloves"] = { - ["max"] = 10, - ["min"] = 6, + ["Spear"] = { + ["max"] = 15, + ["min"] = 15, }, - ["Helmet"] = { - ["max"] = 10, - ["min"] = 6, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 15, }, - ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 6, + ["specialCaseData"] = { }, - ["Shield"] = { - ["max"] = 10, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "rune.stat_3981240776", + ["text"] = "# to Spirit", + ["type"] = "augment", }, - ["Spear"] = { + ["usePositiveSign"] = true, + }, + ["3984865854"] = { + ["1HWeapon"] = { ["max"] = 10, - ["min"] = 6, + ["min"] = 10, }, - ["Staff"] = { - ["max"] = 10, - ["min"] = 6, + ["specialCaseData"] = { }, - ["Talisman"] = { - ["max"] = 10, - ["min"] = 6, + ["tradeMod"] = { + ["id"] = "rune.stat_3984865854", + ["text"] = "#% increased Spirit", + ["type"] = "augment", }, - ["Wand"] = { - ["max"] = 10, - ["min"] = 6, + }, + ["4010677958"] = { + ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_4080418644", - ["text"] = "# to Strength", + ["id"] = "rune.stat_4010677958", + ["text"] = "Allies in your Presence Regenerate # Life per second", ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["948"] = { + ["4064396395"] = { ["1HMace"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 15, + ["min"] = 15, }, ["1HWeapon"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 15, + ["min"] = 15, }, ["2HMace"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 15, + ["min"] = 15, }, ["2HWeapon"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Boots"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 15, + ["min"] = 15, }, ["Bow"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Chest"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 15, + ["min"] = 15, }, ["Claw"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 15, + ["min"] = 15, }, ["Crossbow"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 15, + ["min"] = 15, }, ["Flail"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Focus"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Gloves"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Helmet"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 15, + ["min"] = 15, }, ["Quarterstaff"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Shield"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 15, + ["min"] = 15, }, ["Spear"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Staff"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 15, + ["min"] = 15, }, ["Talisman"] = { - ["max"] = 10, - ["min"] = 6, - }, - ["Wand"] = { - ["max"] = 10, - ["min"] = 6, + ["max"] = 15, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3261801346", - ["text"] = "# to Dexterity", + ["id"] = "rune.stat_4064396395", + ["text"] = "Attacks with this Weapon Penetrate #% Elemental Resistances", ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["949"] = { + ["4080418644"] = { ["1HMace"] = { ["max"] = 10, ["min"] = 6, @@ -27056,88 +21398,17 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_328541901", - ["text"] = "# to Intelligence", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["950"] = { - ["Chest"] = { - ["max"] = 20, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", - ["type"] = "augment", - }, - }, - ["9505"] = { - ["Chest"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3286003349", - ["text"] = "Bonded: Storm Skills have +# to Limit", + ["id"] = "rune.stat_4080418644", + ["text"] = "# to Strength", ["type"] = "augment", }, ["usePositiveSign"] = true, }, - ["953"] = { - ["1HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Claw"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Flail"] = { - ["max"] = 2, - ["min"] = 2, - }, + ["4095671657"] = { ["Gloves"] = { ["max"] = 1, ["min"] = 1, }, - ["Quarterstaff"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Spear"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 2, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -27147,7 +21418,7 @@ return { }, ["usePositiveSign"] = true, }, - ["9531"] = { + ["416040624"] = { ["Staff"] = { ["max"] = 14, ["min"] = 10, @@ -27164,133 +21435,7 @@ return { ["type"] = "augment", }, }, - ["954"] = { - ["1HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Bow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Claw"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Flail"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Spear"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_4042480703", - ["text"] = "Bonded: #% to Maximum Cold Resistance", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["955"] = { - ["1HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["1HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HMace"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["2HWeapon"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Boots"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["Bow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Claw"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Crossbow"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Flail"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Quarterstaff"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Spear"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["Talisman"] = { - ["max"] = 2, - ["min"] = 2, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_1011760251", - ["text"] = "#% to Maximum Lightning Resistance", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["957"] = { - ["Helmet"] = { - ["max"] = 10, - ["min"] = 10, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_953010920", - ["text"] = "Bonded: #% to all Elemental Resistances", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["958"] = { + ["4220027924"] = { ["Boots"] = { ["max"] = 14, ["min"] = 10, @@ -27318,259 +21463,172 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3372524247", - ["text"] = "#% to Fire Resistance", + ["id"] = "rune.stat_4220027924", + ["text"] = "#% to Cold Resistance", ["type"] = "augment", }, ["usePositiveSign"] = true, }, - ["959"] = { - ["Boots"] = { - ["max"] = 14, - ["min"] = 10, - }, - ["Chest"] = { - ["max"] = 14, + ["4236566306"] = { + ["1HMace"] = { + ["max"] = 10, ["min"] = 10, }, - ["Focus"] = { - ["max"] = 14, + ["1HWeapon"] = { + ["max"] = 10, ["min"] = 10, }, - ["Gloves"] = { - ["max"] = 14, + ["2HMace"] = { + ["max"] = 10, ["min"] = 10, }, - ["Helmet"] = { - ["max"] = 14, + ["2HWeapon"] = { + ["max"] = 10, ["min"] = 10, }, - ["Shield"] = { - ["max"] = 14, + ["Bow"] = { + ["max"] = 10, ["min"] = 10, }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_4220027924", - ["text"] = "#% to Cold Resistance", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["960"] = { - ["Boots"] = { - ["max"] = 14, + ["Claw"] = { + ["max"] = 10, ["min"] = 10, }, - ["Chest"] = { - ["max"] = 14, + ["Crossbow"] = { + ["max"] = 10, ["min"] = 10, }, - ["Focus"] = { - ["max"] = 14, + ["Flail"] = { + ["max"] = 10, ["min"] = 10, }, - ["Gloves"] = { - ["max"] = 14, + ["Quarterstaff"] = { + ["max"] = 10, ["min"] = 10, }, - ["Helmet"] = { - ["max"] = 14, + ["Spear"] = { + ["max"] = 10, ["min"] = 10, }, - ["Shield"] = { - ["max"] = 14, + ["Talisman"] = { + ["max"] = 10, ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1671376347", - ["text"] = "#% to Lightning Resistance", + ["id"] = "rune.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["961"] = { + ["426207520"] = { ["Gloves"] = { - ["max"] = 7, - ["min"] = 7, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_3351086592", - ["text"] = "Bonded: #% to Chaos Resistance", - ["type"] = "augment", - }, - ["usePositiveSign"] = true, - }, - ["962"] = { - ["Helmet"] = { - ["max"] = 12, - ["min"] = 12, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "rune.stat_770672621", - ["text"] = "Minions have #% increased maximum Life", - ["type"] = "augment", - }, - }, - ["9642"] = { - ["Helmet"] = { - ["max"] = 50, - ["min"] = 50, + ["max"] = 10, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_915264788", - ["text"] = "#% increased Thorns Critical Hit Chance", + ["id"] = "rune.stat_426207520", + ["text"] = "Each Runic Inscription from your Curse Skills causes you to Regenerate Mana per second equal to #% of that Skill's Mana Cost", ["type"] = "augment", }, }, - ["9645"] = { - ["Helmet"] = { - ["max"] = 40, - ["min"] = 40, + ["4282982513"] = { + ["Boots"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3925507006", - ["text"] = "Bonded: Thorns Damage has #% chance to ignore Enemy Armour", + ["id"] = "rune.stat_4282982513", + ["text"] = "Increases and Reductions to Movement Speed also apply to Energy Shield Recharge Rate", ["type"] = "augment", }, }, - ["9646"] = { - ["Boots"] = { - ["max"] = 15, - ["min"] = 15, - }, + ["458438597"] = { ["Chest"] = { ["max"] = 15, ["min"] = 15, }, - ["Focus"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Gloves"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Helmet"] = { - ["max"] = 15, - ["min"] = 15, - }, - ["Shield"] = { - ["max"] = 15, - ["min"] = 15, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3266426611", - ["text"] = "Bonded: #% increased Thorns damage", + ["id"] = "rune.stat_458438597", + ["text"] = "#% of Damage is taken from Mana before Life", ["type"] = "augment", }, }, - ["9652"] = { - ["Boots"] = { - ["max"] = 50.5, - ["min"] = 50.5, - }, - ["Chest"] = { - ["max"] = 50.5, - ["min"] = 50.5, - }, - ["Focus"] = { - ["max"] = 50.5, - ["min"] = 50.5, - }, - ["Gloves"] = { - ["max"] = 50.5, - ["min"] = 50.5, - }, - ["Helmet"] = { - ["max"] = 50.5, - ["min"] = 50.5, + ["473429811"] = { + ["1HMace"] = { + ["max"] = 30, + ["min"] = 30, }, - ["Shield"] = { - ["max"] = 50.5, - ["min"] = 50.5, + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 30, }, - ["specialCaseData"] = { + ["2HMace"] = { + ["max"] = 30, + ["min"] = 30, }, - ["tradeMod"] = { - ["id"] = "rune.stat_757050353", - ["text"] = "# to # Lightning Thorns damage", - ["type"] = "augment", + ["2HWeapon"] = { + ["max"] = 30, + ["min"] = 30, }, - }, - ["966"] = { - ["Chest"] = { - ["max"] = 50, - ["min"] = 50, + ["Bow"] = { + ["max"] = 30, + ["min"] = 30, }, - ["Staff"] = { - ["max"] = 18, - ["min"] = 12, + ["Claw"] = { + ["max"] = 30, + ["min"] = 30, }, - ["Wand"] = { - ["max"] = 18, - ["min"] = 12, + ["Crossbow"] = { + ["max"] = 30, + ["min"] = 30, }, - ["specialCaseData"] = { + ["Flail"] = { + ["max"] = 30, + ["min"] = 30, }, - ["tradeMod"] = { - ["id"] = "rune.stat_2339757871", - ["text"] = "#% increased Energy Shield Recharge Rate", - ["type"] = "augment", + ["Quarterstaff"] = { + ["max"] = 30, + ["min"] = 30, }, - }, - ["967"] = { - ["Chest"] = { + ["Spear"] = { ["max"] = 30, - ["min"] = 20, + ["min"] = 30, }, - ["Focus"] = { + ["Talisman"] = { ["max"] = 30, ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", + ["id"] = "rune.stat_473429811", + ["text"] = "#% increased Freeze Buildup", ["type"] = "augment", }, }, - ["970"] = { - ["Helmet"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Staff"] = { - ["max"] = 8, - ["min"] = 8, - }, - ["Wand"] = { - ["max"] = 8, - ["min"] = 8, + ["554899692"] = { + ["Chest"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", + ["id"] = "rune.stat_554899692", + ["text"] = "# Charm Slot (Global)", ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["972"] = { + ["55876295"] = { ["1HMace"] = { ["max"] = 3, ["min"] = 2, @@ -27623,101 +21681,46 @@ return { ["type"] = "augment", }, }, - ["975"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 10, - }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 10, - }, - ["2HMace"] = { - ["max"] = 30, - ["min"] = 10, - }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 10, - }, - ["Bow"] = { - ["max"] = 30, - ["min"] = 10, - }, - ["Claw"] = { - ["max"] = 30, - ["min"] = 10, - }, - ["Crossbow"] = { - ["max"] = 30, - ["min"] = 10, - }, - ["Flail"] = { - ["max"] = 30, - ["min"] = 10, - }, - ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 10, - }, - ["Spear"] = { - ["max"] = 30, - ["min"] = 10, - }, - ["Talisman"] = { - ["max"] = 30, - ["min"] = 10, + ["594547430"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_3695891184", - ["text"] = "Gain # Life per enemy killed", + ["id"] = "rune.stat_594547430", + ["text"] = "Remove a Damaging Ailment when you use a Command Skill", ["type"] = "augment", }, }, - ["976"] = { - ["Boots"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["Chest"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["Focus"] = { - ["max"] = 18, - ["min"] = 12, - }, + ["624954515"] = { ["Gloves"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["Helmet"] = { - ["max"] = 18, - ["min"] = 12, - }, - ["Shield"] = { - ["max"] = 18, - ["min"] = 12, + ["max"] = 15, + ["min"] = 15, }, - ["Staff"] = { - ["max"] = 24, - ["min"] = 16, + ["specialCaseData"] = { }, - ["Wand"] = { - ["max"] = 24, - ["min"] = 16, + ["tradeMod"] = { + ["id"] = "rune.stat_624954515", + ["text"] = "#% increased Accuracy Rating", + ["type"] = "augment", + }, + }, + ["649025131"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_789117908", - ["text"] = "#% increased Mana Regeneration Rate", + ["id"] = "rune.stat_649025131", + ["text"] = "#% increased Movement Speed when on Low Life", ["type"] = "augment", }, }, - ["978"] = { + ["669069897"] = { ["1HMace"] = { ["max"] = 2.5, ["min"] = 1.5, @@ -27770,320 +21773,451 @@ return { ["type"] = "augment", }, }, - ["980"] = { - ["1HMace"] = { - ["max"] = 24, + ["681332047"] = { + ["Gloves"] = { + ["max"] = 8, ["min"] = 8, }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_681332047", + ["text"] = "#% increased Attack Speed", + ["type"] = "augment", + }, + }, + ["687156079"] = { + ["Helmet"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_687156079", + ["text"] = "# to Accuracy Rating per 1 Item Evasion Rating on Equipped Helmet", + ["type"] = "augment", + }, + ["usePositiveSign"] = true, + }, + ["691932474"] = { + ["1HMace"] = { + ["max"] = 110, + ["min"] = 50, + }, ["1HWeapon"] = { - ["max"] = 24, - ["min"] = 8, + ["max"] = 110, + ["min"] = 50, }, ["2HMace"] = { - ["max"] = 24, - ["min"] = 8, + ["max"] = 110, + ["min"] = 50, }, ["2HWeapon"] = { - ["max"] = 24, - ["min"] = 8, + ["max"] = 110, + ["min"] = 50, }, ["Bow"] = { - ["max"] = 24, - ["min"] = 8, + ["max"] = 110, + ["min"] = 50, }, ["Claw"] = { - ["max"] = 24, - ["min"] = 8, + ["max"] = 110, + ["min"] = 50, }, ["Crossbow"] = { - ["max"] = 24, - ["min"] = 8, + ["max"] = 110, + ["min"] = 50, }, ["Flail"] = { - ["max"] = 24, - ["min"] = 8, + ["max"] = 110, + ["min"] = 50, }, ["Quarterstaff"] = { - ["max"] = 24, - ["min"] = 8, + ["max"] = 110, + ["min"] = 50, }, ["Spear"] = { - ["max"] = 24, - ["min"] = 8, + ["max"] = 110, + ["min"] = 50, }, ["Talisman"] = { - ["max"] = 24, - ["min"] = 8, + ["max"] = 110, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1368271171", - ["text"] = "Gain # Mana per enemy killed", + ["id"] = "rune.stat_691932474", + ["text"] = "# to Accuracy Rating (Local)", ["type"] = "augment", }, + ["usePositiveSign"] = true, }, - ["985"] = { + ["709508406"] = { ["1HMace"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 28.5, + ["min"] = 5, }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 28.5, + ["min"] = 5, }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 28.5, + ["min"] = 5, }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 28.5, + ["min"] = 5, }, ["Bow"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 28.5, + ["min"] = 5, }, ["Claw"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 28.5, + ["min"] = 5, }, ["Crossbow"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 28.5, + ["min"] = 5, }, ["Flail"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 28.5, + ["min"] = 5, }, ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 28.5, + ["min"] = 5, }, ["Spear"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 28.5, + ["min"] = 5, }, ["Talisman"] = { - ["max"] = 30, - ["min"] = 20, + ["max"] = 28.5, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_791928121", - ["text"] = "Causes #% increased Stun Buildup", + ["id"] = "rune.stat_709508406", + ["text"] = "Adds # to # Fire Damage", ["type"] = "augment", }, }, - ["988"] = { + ["731403740"] = { ["1HMace"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 5, + ["min"] = 5, }, ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 5, + ["min"] = 5, }, ["2HMace"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 5, + ["min"] = 5, }, ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 5, + ["min"] = 5, }, ["Bow"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 5, + ["min"] = 5, }, ["Claw"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 5, + ["min"] = 5, }, ["Crossbow"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 5, + ["min"] = 5, }, ["Flail"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 5, + ["min"] = 5, }, ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 5, + ["min"] = 5, }, ["Spear"] = { - ["max"] = 30, - ["min"] = 30, + ["max"] = 5, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 5, + ["min"] = 5, }, ["Talisman"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_731403740", + ["text"] = "Gain #% of Damage as Extra Damage of all Elements", + ["type"] = "augment", + }, + }, + ["737908626"] = { + ["Staff"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_737908626", + ["text"] = "#% increased Critical Hit Chance for Spells", + ["type"] = "augment", + }, + }, + ["757050353"] = { + ["Boots"] = { + ["max"] = 50.5, + ["min"] = 50.5, + }, + ["Chest"] = { + ["max"] = 50.5, + ["min"] = 50.5, + }, + ["Focus"] = { + ["max"] = 50.5, + ["min"] = 50.5, + }, + ["Gloves"] = { + ["max"] = 50.5, + ["min"] = 50.5, + }, + ["Helmet"] = { + ["max"] = 50.5, + ["min"] = 50.5, + }, + ["Shield"] = { + ["max"] = 50.5, + ["min"] = 50.5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_757050353", + ["text"] = "# to # Lightning Thorns damage", + ["type"] = "augment", + }, + }, + ["770672621"] = { + ["Helmet"] = { + ["max"] = 12, + ["min"] = 12, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_770672621", + ["text"] = "Minions have #% increased maximum Life", + ["type"] = "augment", + }, + }, + ["782230869"] = { + ["Gloves"] = { ["max"] = 30, ["min"] = 30, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2968503605", - ["text"] = "#% increased Flammability Magnitude", + ["id"] = "rune.stat_782230869", + ["text"] = "#% increased Magnitude of Non-Damaging Ailments you inflict", ["type"] = "augment", }, }, - ["9889"] = { + ["789117908"] = { + ["Boots"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Chest"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Focus"] = { + ["max"] = 18, + ["min"] = 12, + }, ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, + ["max"] = 18, + ["min"] = 12, + }, + ["Helmet"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Shield"] = { + ["max"] = 18, + ["min"] = 12, + }, + ["Staff"] = { + ["max"] = 24, + ["min"] = 16, + }, + ["Wand"] = { + ["max"] = 24, + ["min"] = 16, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_2663359259", - ["text"] = "#% increased total Power counted by Warcries", + ["id"] = "rune.stat_789117908", + ["text"] = "#% increased Mana Regeneration Rate", ["type"] = "augment", }, }, - ["990"] = { + ["791928121"] = { ["1HMace"] = { ["max"] = 30, - ["min"] = 30, + ["min"] = 20, }, ["1HWeapon"] = { ["max"] = 30, - ["min"] = 30, + ["min"] = 20, }, ["2HMace"] = { ["max"] = 30, - ["min"] = 30, + ["min"] = 20, }, ["2HWeapon"] = { ["max"] = 30, - ["min"] = 30, + ["min"] = 20, }, ["Bow"] = { ["max"] = 30, - ["min"] = 30, + ["min"] = 20, }, ["Claw"] = { ["max"] = 30, - ["min"] = 30, + ["min"] = 20, }, ["Crossbow"] = { ["max"] = 30, - ["min"] = 30, + ["min"] = 20, }, ["Flail"] = { ["max"] = 30, - ["min"] = 30, + ["min"] = 20, }, ["Quarterstaff"] = { ["max"] = 30, - ["min"] = 30, + ["min"] = 20, }, ["Spear"] = { ["max"] = 30, - ["min"] = 30, - }, - ["Staff"] = { - ["max"] = 30, - ["min"] = 30, + ["min"] = 20, }, ["Talisman"] = { ["max"] = 30, - ["min"] = 30, - }, - ["Wand"] = { - ["max"] = 30, - ["min"] = 30, + ["min"] = 20, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1817052494", - ["text"] = "Bonded: #% increased Freeze Buildup", + ["id"] = "rune.stat_791928121", + ["text"] = "Causes #% increased Stun Buildup", ["type"] = "augment", }, }, - ["9915"] = { - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, + ["836936635"] = { + ["Boots"] = { + ["max"] = 0.35, + ["min"] = 0.25, }, - ["specialCaseData"] = { + ["Chest"] = { + ["max"] = 1.5, + ["min"] = 0.25, }, - ["tradeMod"] = { - ["id"] = "rune.stat_3973629633", - ["text"] = "#% increased Withered Magnitude", - ["type"] = "augment", + ["Focus"] = { + ["max"] = 0.35, + ["min"] = 0.25, }, - }, - ["992"] = { - ["1HMace"] = { - ["max"] = 30, - ["min"] = 30, + ["Gloves"] = { + ["max"] = 0.35, + ["min"] = 0.25, }, - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 30, + ["Helmet"] = { + ["max"] = 0.35, + ["min"] = 0.25, }, - ["2HMace"] = { - ["max"] = 30, - ["min"] = 30, + ["Shield"] = { + ["max"] = 0.35, + ["min"] = 0.25, }, - ["2HWeapon"] = { - ["max"] = 30, - ["min"] = 30, + ["specialCaseData"] = { }, - ["Bow"] = { - ["max"] = 30, - ["min"] = 30, + ["tradeMod"] = { + ["id"] = "rune.stat_836936635", + ["text"] = "Regenerate #% of maximum Life per second", + ["type"] = "augment", }, - ["Claw"] = { - ["max"] = 30, - ["min"] = 30, + }, + ["889552744"] = { + ["Boots"] = { + ["max"] = 10, + ["min"] = 10, }, - ["Crossbow"] = { - ["max"] = 30, - ["min"] = 30, + ["Chest"] = { + ["max"] = 10, + ["min"] = 10, }, - ["Flail"] = { - ["max"] = 30, - ["min"] = 30, + ["Focus"] = { + ["max"] = 10, + ["min"] = 10, }, - ["Quarterstaff"] = { - ["max"] = 30, - ["min"] = 30, + ["Gloves"] = { + ["max"] = 10, + ["min"] = 10, }, - ["Spear"] = { - ["max"] = 30, - ["min"] = 30, + ["Helmet"] = { + ["max"] = 10, + ["min"] = 10, }, - ["Talisman"] = { - ["max"] = 30, - ["min"] = 30, + ["Shield"] = { + ["max"] = 10, + ["min"] = 10, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_293638271", - ["text"] = "#% increased chance to Shock", + ["id"] = "rune.stat_889552744", + ["text"] = "Minions take #% of Physical Damage as Lightning Damage", ["type"] = "augment", }, }, - ["9922"] = { - ["1HWeapon"] = { - ["max"] = 20, - ["min"] = 20, + ["915264788"] = { + ["Helmet"] = { + ["max"] = 50, + ["min"] = 50, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_826685275", - ["text"] = "Bonded: #% of Armour also applies to Elemental Damage while Shapeshifted", + ["id"] = "rune.stat_915264788", + ["text"] = "#% increased Thorns Critical Hit Chance", ["type"] = "augment", }, - ["usePositiveSign"] = true, }, - ["994"] = { + ["915769802"] = { ["Boots"] = { ["max"] = 80, ["min"] = 40, @@ -28117,36 +22251,96 @@ return { }, ["usePositiveSign"] = true, }, - ["999"] = { + ["924253255"] = { ["Boots"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = -15, + ["min"] = -15, }, - ["Chest"] = { - ["max"] = 10, - ["min"] = 10, + ["invertOnNegative"] = true, + ["specialCaseData"] = { }, - ["Focus"] = { - ["max"] = 10, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "rune.stat_924253255", + ["text"] = "#% increased Slowing Potency of Debuffs on You", + ["type"] = "augment", }, + }, + ["935518591"] = { ["Gloves"] = { - ["max"] = 10, - ["min"] = 10, + ["max"] = 1, + ["min"] = 1, }, - ["Helmet"] = { - ["max"] = 10, - ["min"] = 10, + ["specialCaseData"] = { }, - ["Shield"] = { - ["max"] = 10, - ["min"] = 10, + ["tradeMod"] = { + ["id"] = "rune.stat_935518591", + ["text"] = "Critical Hit chance is Lucky against Parried enemies", + ["type"] = "augment", + }, + }, + ["970213192"] = { + ["1HMace"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["1HWeapon"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["2HMace"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["2HWeapon"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Bow"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Claw"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Crossbow"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Flail"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Quarterstaff"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Spear"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["Talisman"] = { + ["max"] = 8, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "rune.stat_970213192", + ["text"] = "#% increased Skill Speed", + ["type"] = "augment", + }, + }, + ["983749596"] = { + ["Chest"] = { + ["max"] = 3, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "rune.stat_1441491952", - ["text"] = "Bonded: #% reduced Shock duration on you", + ["id"] = "rune.stat_983749596", + ["text"] = "#% increased maximum Life", ["type"] = "augment", }, }, diff --git a/src/Export/Scripts/soulcores.lua b/src/Export/Scripts/soulcores.lua index 515b758247..186d600a1b 100644 --- a/src/Export/Scripts/soulcores.lua +++ b/src/Export/Scripts/soulcores.lua @@ -50,6 +50,7 @@ directiveTable.base = function(state, args, out) out:write('\t\t\t\t"'..table.concat(modLine.label, '",\n\t\t\t\t"')..'",\n') local statOrder = modLine.statOrder or {} out:write('\t\t\t\tstatOrder = { '..table.concat(statOrder, ', ')..' },\n') + out:write('\t\t\t\ttradeHashes = { '..table.concat(modLine.tradeHashes, ', ')..' },\n') end out:write('\t\t\t\trank = { '..(modLine.rank or 0)..' },\n') out:write('\t\t},\n') @@ -66,8 +67,10 @@ directiveTable.base = function(state, args, out) rank = soulCores.LevelReq or 0 local stats = { } + local statHashes = {} for i, statKey in ipairs(soulCoreStat.Stats) do local statValue = soulCoreStat["StatValue"][i] + table.insert(statHashes, intToBytes(statKey.Hash)) stats[statKey.Id] = { min = statValue, max = statValue } end local bondedStats = { } @@ -89,12 +92,31 @@ directiveTable.base = function(state, args, out) table.insert(orders, order) end if #orders > 0 then + local tradeHashes = {} + -- -- stat hashes might be multiple different modifiers, or + -- -- they can be the minimum and maximum of a single modifier + for _, stat in ipairs(stats) do + if stat:find("^Bonded:") then + -- continue + -- range stat: output a single tradehash + elseif stat:find("%d+ to %d+") then + local tradeHash = murmurHash2(table.concat(statHashes), 0x02312233) + table.insert(tradeHashes, tradeHash) + -- otherwise output separate tradehashes + else + for _, statHash in ipairs(statHashes) do + local tradeHash = murmurHash2(statHash, 0x02312233) + table.insert(tradeHashes, tradeHash) + end + end + end local out = { type = "Rune", slotType = class, label = stats, statOrder = orders, rank = rank, + tradeHashes = tradeHashes } table.insert(modLines, out) end From c99361d6868b26f5e83de90d0755ed51d57f6a91 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Sun, 19 Apr 2026 20:20:07 +0300 Subject: [PATCH 06/42] wip: change poesessid to bearer token --- src/Classes/ImportTab.lua | 71 ++++++++-------- src/Classes/PoEAPI.lua | 20 +++-- src/Classes/TradeQuery.lua | 128 +++++++++++++++++++++++------ src/Classes/TradeQueryRequests.lua | 30 ++----- src/Modules/Build.lua | 1 + src/Modules/Main.lua | 5 -- 6 files changed, 161 insertions(+), 94 deletions(-) diff --git a/src/Classes/ImportTab.lua b/src/Classes/ImportTab.lua index 701cbe43aa..5edfd2faa9 100644 --- a/src/Classes/ImportTab.lua +++ b/src/Classes/ImportTab.lua @@ -20,7 +20,10 @@ local ImportTabClass = newClass("ImportTab", "ControlHost", "Control", function( self.Control() self.build = build - self.api = new("PoEAPI", main.lastToken, main.lastRefreshToken, main.tokenExpiry) + if not main.api then + main.api = new("PoEAPI", main.lastToken, main.lastRefreshToken, main.tokenExpiry) + end + self.charImportMode = "AUTHENTICATION" self.charImportStatus = colorCodes.WARNING.."Not authenticated" @@ -31,17 +34,17 @@ local ImportTabClass = newClass("ImportTab", "ControlHost", "Control", function( self.controls.logoutApiButton = new("ButtonControl", {"TOPLEFT",self.controls.charImportStatusLabel,"TOPRIGHT"}, {4, 0, 180, 16}, "^7Logout from Path of Exile API", function() main.lastToken = nil - self.api.authToken = nil + main.api.authToken = nil main.lastRefreshToken = nil - self.api.refreshToken = nil + main.api.refreshToken = nil main.tokenExpiry = nil - self.api.tokenExpiry = nil + main.api.tokenExpiry = nil main:SaveSettings() self.charImportMode = "AUTHENTICATION" self.charImportStatus = colorCodes.WARNING.."Not authenticated" end) self.controls.logoutApiButton.shown = function() - return (self.charImportMode == "SELECTCHAR" or self.charImportMode == "GETACCOUNTNAME") and self.api.authToken ~= nil + return (self.charImportMode == "SELECTCHAR" or self.charImportMode == "GETACCOUNTNAME") and main.api.authToken ~= nil end self.controls.characterImportAnchor = new("Control", {"TOPLEFT",self.controls.sectionCharImport,"TOPLEFT"}, {6, 40, 200, 16}) @@ -49,17 +52,17 @@ local ImportTabClass = newClass("ImportTab", "ControlHost", "Control", function( -- Stage: Authenticate self.controls.authenticateButton = new("ButtonControl", {"TOPLEFT",self.controls.characterImportAnchor,"TOPLEFT"}, {0, 0, 200, 16}, "^7Authorize with Path of Exile", function() - self.api:FetchAuthToken(function(_, errMsg) - if self.api.authToken then + main.api:FetchAuthToken(function() + if main.api.authToken then self.charImportMode = "GETACCOUNTNAME" self.charImportStatus = "Authenticated" - main.lastToken = self.api.authToken - main.lastRefreshToken = self.api.refreshToken - main.tokenExpiry = self.api.tokenExpiry + main.lastToken = main.api.authToken + main.lastRefreshToken = main.api.refreshToken + main.tokenExpiry = main.api.tokenExpiry main:SaveSettings() self:DownloadCharacterList() - elseif errMsg and errMsg ~= self.api.ERROR_NO_AUTH then + elseif errMsg and errMsg ~= main.api.ERROR_NO_AUTH then self.charImportStatus = colorCodes.NEGATIVE.."Authentication failed: "..errMsg else self.charImportStatus = colorCodes.WARNING.."Not authenticated" @@ -343,26 +346,30 @@ local ImportTabClass = newClass("ImportTab", "ControlHost", "Control", function( end -- validate the status of the api the first time - self.api:ValidateAuth(function(valid, updateSettings) - if valid then - if self.charImportMode == "AUTHENTICATION" then - self.charImportMode = "GETACCOUNTNAME" - self.charImportStatus = "Authenticated" - end - if updateSettings then - self:SaveApiSettings() - end - else - self.charImportMode = "AUTHENTICATION" - self.charImportStatus = colorCodes.WARNING.."Not authenticated" - end - end) + self:RefreshAuthStatus() end) +function ImportTabClass:RefreshAuthStatus() + main.api:ValidateAuth(function(valid, updateSettings) + if valid then + if self.charImportMode == "AUTHENTICATION" then + self.charImportMode = "GETACCOUNTNAME" + self.charImportStatus = "Authenticated" + end + if updateSettings then + self:SaveApiSettings() + end + else + self.charImportMode = "AUTHENTICATION" + self.charImportStatus = colorCodes.WARNING.."Not authenticated" + end + end) +end + function ImportTabClass:SaveApiSettings() - main.lastToken = self.api.authToken - main.lastRefreshToken = self.api.refreshToken - main.tokenExpiry = self.api.tokenExpiry + main.lastToken = main.api.authToken + main.lastRefreshToken = main.api.refreshToken + main.tokenExpiry = main.api.tokenExpiry main:SaveSettings() end @@ -436,11 +443,11 @@ function ImportTabClass:DownloadCharacterList() self.charImportMode = "DOWNLOADCHARLIST" self.charImportStatus = "Retrieving character list..." local realm = realmList[self.controls.accountRealm.selIndex] - self.api:DownloadCharacterList(realm.realmCode, function(body, errMsg, updateSettings) + main.api:DownloadCharacterList(realm.realmCode, function(body, errMsg, updateSettings) if updateSettings then self:SaveApiSettings() end - if errMsg == self.api.ERROR_NO_AUTH then + if errMsg == main.api.ERROR_NO_AUTH then self.charImportMode = "AUTHENTICATION" self.charImportStatus = colorCodes.WARNING.."Not authenticated" return @@ -581,13 +588,13 @@ function ImportTabClass:DownloadCharacter(callback) local realm = realmList[self.controls.accountRealm.selIndex] local charSelect = self.controls.charSelect local charData = charSelect.list[charSelect.selIndex].char - self.api:DownloadCharacter(realm.realmCode, charData.name, function(body, errMsg, updateSettings) + main.api:DownloadCharacter(realm.realmCode, charData.name, function(body, errMsg, updateSettings) self.charImportMode = "SELECTCHAR" if updateSettings then self:SaveApiSettings() end if errMsg then - if errMsg == self.api.ERROR_NO_AUTH then + if errMsg == main.api.ERROR_NO_AUTH then self.charImportMode = "AUTHENTICATION" self.charImportStatus = colorCodes.WARNING.."Not authenticated" return diff --git a/src/Classes/PoEAPI.lua b/src/Classes/PoEAPI.lua index c1685d5bbb..1f90b3f5f4 100644 --- a/src/Classes/PoEAPI.lua +++ b/src/Classes/PoEAPI.lua @@ -6,6 +6,7 @@ local scopesOAuth = { "account:profile", "account:leagues", "account:characters", + "account:trade" } local filename = "poe_api_response.json" @@ -21,6 +22,7 @@ local PoEAPIClass = newClass("PoEAPI", function(self, authToken, refreshToken, t self.ERROR_NO_AUTH = "No auth token" end) + -- func callback(valid, updateSettings) function PoEAPIClass:ValidateAuth(callback) ConPrintf("Validating auth token") @@ -57,6 +59,12 @@ local function base64_encode(secret) return base64.encode(secret):gsub("+","-"):gsub("/","_"):gsub("=$", "") end +function PoEAPIClass:ResetDetails() + self.authToken = nil + self.refreshToken = nil + self.tokenExpiry = nil +end + -- func callback(response, errorMsg, updateSettings) function PoEAPIClass:FetchAuthToken(callback) math.randomseed(os.time()) @@ -84,9 +92,7 @@ function PoEAPIClass:FetchAuthToken(callback) callback = function(code, errMsg, state, port) if not code then ConPrintf("Failed to get code from server: %s", errMsg) - self.authToken = nil - self.refreshToken = nil - self.tokenExpiry = nil + self:ResetDetails() callback(nil, errMsg or self.ERROR_NO_AUTH, true) return end @@ -103,9 +109,7 @@ function PoEAPIClass:FetchAuthToken(callback) launch:DownloadPage("https://www.pathofexile.com/oauth/token", function (response, errMsg) if errMsg then ConPrintf("Failed to get token from server: " .. errMsg) - self.authToken = nil - self.refreshToken = nil - self.tokenExpiry = nil + self:ResetDetails() callback(nil, errMsg, true) return end @@ -127,9 +131,7 @@ function PoEAPIClass:DownloadWithRefresh(endpoint, callback) self:ValidateAuth(function(valid, updateSettings) if not valid then -- Clean info about token and refresh token - self.authToken = nil - self.refreshToken = nil - self.tokenExpiry = nil + self:ResetDetails() callback(nil, self.ERROR_NO_AUTH, true) return end diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index 258837e58e..6357e9ca2c 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -55,6 +55,9 @@ local TradeQueryClass = newClass("TradeQuery", function(self, itemsTab) main.onFrameFuncs["TradeQueryRequests"] = function() self.tradeQueryRequests:ProcessQueue() end + if not main.api then + main.api = new("PoEAPI", main.lastToken, main.lastRefreshToken, main.tokenExpiry) + end -- set self.hostName = "https://www.pathofexile.com/" @@ -252,35 +255,71 @@ function TradeQueryClass:PriceItem() return #self.itemsTab.itemSetOrderList > 1 end - self.controls.poesessidButton = new("ButtonControl", {"TOPLEFT", self.controls.setSelect, "TOPLEFT"}, {0, row_height + row_vertical_padding, 188, row_height}, function() return main.POESESSID ~= "" and "^2Session Mode" or colorCodes.WARNING.."No Session Mode" end, function() - local poesessid_controls = {} - poesessid_controls.sessionInput = new("EditControl", nil, {0, 18, 350, 18}, main.POESESSID, nil, "%X", 32) - poesessid_controls.sessionInput:SetProtected(true) - poesessid_controls.sessionInput.placeholder = "Enter your session ID here" - poesessid_controls.sessionInput.tooltipText = "You can get this from your web browser's cookies while logged into the Path of Exile website." - poesessid_controls.save = new("ButtonControl", {"TOPRIGHT", poesessid_controls.sessionInput, "TOP"}, {-8, 24, 90, row_height}, "Save", function() - main.POESESSID = poesessid_controls.sessionInput.buf - main:ClosePopup() - main:SaveSettings() - self:UpdateRealms() - end) - poesessid_controls.save.enabled = function() return #poesessid_controls.sessionInput.buf == 32 or poesessid_controls.sessionInput.buf == "" end - poesessid_controls.cancel = new("ButtonControl", {"TOPLEFT", poesessid_controls.sessionInput, "TOP"}, {8, 24, 90, row_height}, "Cancel", function() - main:ClosePopup() + self.loginStatus = function() + if main.api.authToken then + self.clickTime = nil + return "Authenticated" + elseif self.clickTime then + local left = m_max(0,(self.clickTime + 30) - os.time()) + if left == 0 then + self.clickTime = nil + return "Not authenticated" + else + return "Logging in... (" .. left .. ")" + end + else + return colorCodes.WARNING.."Not authenticated" + end + end + + if main.api.authToken then + main.api:ValidateAuth(function(valid, _updateSettings) + if valid then + return + else + main.api:ResetDetails() + end end) - main:OpenPopup(364, 72, "Change session ID", poesessid_controls) + end + self.controls.poesessidButton = new("ButtonControl", {"TOPLEFT", self.controls.setSelect, "TOPLEFT"}, {0, row_height + row_vertical_padding, 188, row_height}, self.loginStatus, function() + -- LOGIN + if not main.api.authToken then + main.api:FetchAuthToken(function() + if main.api.authToken then + self.loginStatus = "Authenticated" + + main.lastToken = main.api.authToken + main.lastRefreshToken = main.api.refreshToken + main.tokenExpiry = main.api.tokenExpiry + main:SaveSettings() + else + self.loginStatus = colorCodes.WARNING.."Not authenticated" + end + end) + self.clickTime = os.time() + -- LOGOUT + else + main.lastToken = nil + main.api.authToken = nil + main.lastRefreshToken = nil + main.api.refreshToken = nil + main.tokenExpiry = nil + main.api.tokenExpiry = nil + main:SaveSettings() + end end) self.controls.poesessidButton.tooltipText = [[ -The Trader feature supports two modes of operation depending on the POESESSID availability. -You can click this button to enter your POESESSID. +The Trader feature supports two modes of operation depending on the authorization availability. +You can click this button to authorize PoB by logging in. ^2Session Mode^7 -- Requires POESESSID. +- Requires authorization on pathofexile.com. - You can search, compare, and quickly import items without leaving Path of Building. +- You can select an item and search it directly. - You can generate and perform searches for the private leagues you are participating. ^xFF9922No Session Mode^7 -- Doesn't require POESESSID. +- Doesn't require authorization. - You cannot search and compare items in Path of Building. - You can generate weighted search URLs but have to visit the trade site and manually import items. - You can only generate weighted searches for public leagues. (Generated searches can be modified @@ -442,8 +481,41 @@ Highest Weight - Displays the order retrieved from trade]] for _, nodeId in ipairs(activeSocketList) do t_insert(slotTables, { slotName = self.itemsTab.sockets[nodeId].label, nodeId = nodeId }) end + self.controls.logoutApiButton = new("ButtonControl", {"TOPLEFT",self.controls.charImportStatusLabel,"TOPRIGHT"}, {4, 0, 180, 16}, "^7Logout from Path of Exile API", function() + main.lastToken = nil + main.api.authToken = nil + main.lastRefreshToken = nil + main.api.refreshToken = nil + main.tokenExpiry = nil + main.api.tokenExpiry = nil + main:SaveSettings() + self.charImportStatus = colorCodes.WARNING.."Not authenticated" + end) + self.controls.logoutApiButton.shown = function() + return (main.api.authToken) and main.api.authToken ~= nil + end + + self.controls.authenticateButton = new("ButtonControl", {"TOPLEFT",self.controls.characterImportAnchor,"TOPLEFT"}, {0, 0, 200, 16}, "^7Authorize with Path of Exile", function() + main.api:FetchAuthToken(function() + if main.api.authToken then + self.charImportStatus = "Authenticated" + + main.lastToken = main.api.authToken + main.lastRefreshToken = main.api.refreshToken + main.tokenExpiry = main.api.tokenExpiry + main:SaveSettings() + else + self.charImportStatus = colorCodes.WARNING.."Not authenticated" + end + end) + local clickTime = os.time() + self.charImportStatus = function() return "Logging in... (" .. m_max(0, (clickTime + 30) - os.time()) .. ")" end + end) + self.controls.authenticateButton.shown = function() + return self.charImportMode == "AUTHENTICATION" + end - self.controls.sectionAnchor = new("LabelControl", {"LEFT", self.controls.tradeTypeSelection, "LEFT"}, {0, row_vertical_padding + row_height, 0, 0}, "") + self.controls.sectionAnchor = new("LabelControl", {"LEFT", self.controls.tradeTypeSelection, "LEFT"}, {0, row_vertical_padding + row_height*10, 0, 0}, "") top_pane_alignment_ref = {"TOPLEFT", self.controls.sectionAnchor, "TOPLEFT"} local scrollBarShown = #slotTables > 21 -- clipping starts beyond this -- dynamically hide rows that are above or below the scrollBar @@ -481,6 +553,8 @@ Highest Weight - Displays the order retrieved from trade]] end row_count = row_count + 1 + row_count = row_count + 5 + local effective_row_count = row_count - ((scrollBarShown and #slotTables >= 19) and #slotTables-19 or 0) + 2 + 2 -- Two top menu rows, two bottom rows, slots after #19 overlap the other controls at the bottom of the pane self.effective_rows_height = row_height * (effective_row_count - #slotTables + (18 - (#slotTables > 37 and 3 or 0))) -- scrollBar height, "18 - slotTables > 37" logic is fine tuning whitespace after last row self.pane_height = (row_height + row_vertical_padding) * effective_row_count + 3 * pane_margins_vertical + row_height / 2 @@ -894,7 +968,7 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro else self:SetNotice(context.controls.pbNotice, "") end - if main.POESESSID == nil or main.POESESSID == "" then + if main.api.authToken == nil then local url = self.tradeQueryRequests:buildUrl(self.hostName .. "trade2/search", self.pbRealm, self.pbLeague) url = url .. "?q=" .. urlEncode(query) controls["uri"..context.row_idx]:SetText(url, true) @@ -996,15 +1070,15 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro end) end) controls["priceButton"..row_idx].enabled = function() - local poesessidAvailable = main.POESESSID and main.POESESSID ~= "" + local isAuthorized = main.authToken ~= nil local validURL = controls["uri"..row_idx].validURL local isSearching = controls["priceButton"..row_idx].label == "Searching..." - return poesessidAvailable and validURL and not isSearching + return isAuthorized and validURL and not isSearching end controls["priceButton"..row_idx].tooltipFunc = function(tooltip) tooltip:Clear() - if not main.POESESSID or main.POESESSID == "" then - tooltip:AddLine(16, "You must set your POESESSID to use search feature") + if not main.authToken then + tooltip:AddLine(16, "You must log in to use the search feature") elseif not controls["uri"..row_idx].validURL then tooltip:AddLine(16, "Enter a valid trade URL") end @@ -1174,7 +1248,7 @@ function TradeQueryClass:UpdateRealms() end) end - -- perform a generic search to make sure POESESSID if valid. + -- perform a generic search to make sure POESESSID is valid. self.tradeQueryRequests:PerformSearch("poe2", "Standard", [[{"query":{"status":{"option":"online"},"stats":[{"type":"and","filters":[]}]},"sort":{"price":"asc"}}]], function(response, errMsg) if errMsg then self:SetNotice(self.controls.pbNotice, "Error: " .. tostring(errMsg)) diff --git a/src/Classes/TradeQueryRequests.lua b/src/Classes/TradeQueryRequests.lua index 4f30c38471..237a4b74c9 100644 --- a/src/Classes/TradeQueryRequests.lua +++ b/src/Classes/TradeQueryRequests.lua @@ -39,21 +39,19 @@ function TradeQueryRequestsClass:ProcessQueue() table.insert(queue, 1, request) return end - -- if limit rules don't return account then the POESESSID is invalid. - if response.header:match("[xX]%-[rR]ate%-[lL]imit%-[rR]ules: (.-)\n"):match("Account") == nil and main.POESESSID ~= "" then - main.POESESSID = "" + -- if limit rules don't return account then the auth token is invalid. + if response.header:match("[xX]%-[rR]ate%-[lL]imit%-[rR]ules: (.-)\n"):match("Account") == nil and main.api.authToken then if errMsg then - errMsg = errMsg .. "\nPOESESSID is invalid. Please Re-Log and reset" + errMsg = errMsg .. "\nAuthorization is invalid. Please Re-Log and reset" else - errMsg = "POESESSID is invalid. Please Re-Log and reset" + errMsg = "Authorization is invalid. Please Re-Log and reset" end end request.callback(response.body, errMsg, unpack(request.callbackParams or {})) end - -- self:SendRequest(request.url , onComplete, {body = request.body, poesessid = main.POESESSID}) local header = "Content-Type: application/json" - if main.POESESSID ~= "" then - header = header .. "\nCookie: POESESSID=" .. main.POESESSID + if main.api.authToken then + header = header .."\nAuthorization: Bearer "..main.api.authToken end launch:DownloadPage(request.url, onComplete, { header = header, @@ -198,7 +196,7 @@ function TradeQueryRequestsClass:PerformSearch(realm, league, query, callback) url = self:buildUrl(self.hostName .. "api/trade2/search", realm, league), body = query, callback = function(response, errMsg) - if errMsg and not errMsg:find("Response code: 400") and not errMsg:find("POESESSID") then + if errMsg and not errMsg:find("Response code: 400") then return callback(nil, errMsg) end local response = dkjson.decode(response) @@ -214,12 +212,7 @@ function TradeQueryRequestsClass:PerformSearch(realm, league, query, callback) callback(response, errMsg) end if response.error.message:find("Logging in will increase this limit") then - if main.POESESSID ~= "" then - errMsg = "POESESSID is invalid. Please Re-Log and reset" - main.POESESSID = "" - else - errMsg = "Session is invalid. Please add your POESESSID" - end + errMsg = "Authorization is invalid. Please Re-Log and reset" else -- Report unhandled error errMsg = "[ " .. response.error.code .. ": " .. response.error.message .. " ]" @@ -425,11 +418,6 @@ function TradeQueryRequestsClass:FetchResultBlock(url, callback) table.insert(items, { amount = trade_entry.listing.price.amount, currency = trade_entry.listing.price.currency, - -- note: using these to travel to the hideout or for a - -- direct whisper is not allowed, even if they are provided - -- right here - -- hideout_token = trade_entry.listing.hideout_token, - -- whisper_token = trade_entry.listing.whisper_token, item_string = table.concat(rawLines, "\n"), whisper = trade_entry.listing.whisper, trader = trade_entry.listing.account.name, @@ -507,7 +495,7 @@ end ---@param realm string ---@param callback fun(query:table, errMsg:string) function TradeQueryRequestsClass:FetchLeagues(realm, callback) - local header = "Cookie: POESESSID=" .. main.POESESSID + local header = "Authorization: Bearer ".. (main.api.authToken or "") launch:DownloadPage( self.hostName .. "api/trade2/data/leagues", function(response, errMsg) diff --git a/src/Modules/Build.lua b/src/Modules/Build.lua index ee4b202c7b..35d6cabacd 100644 --- a/src/Modules/Build.lua +++ b/src/Modules/Build.lua @@ -405,6 +405,7 @@ function buildMode:Init(dbFileName, buildName, buildXML, convertBuild, importLin self.controls.modeImport = new("ButtonControl", {"TOPLEFT",self.anchorSideBar,"TOPLEFT"}, {0, 0, 134, 20}, "Import/Export Build", function() self.viewMode = "IMPORT" + self.importTab:RefreshAuthStatus() end) self.controls.modeImport.locked = function() return self.viewMode == "IMPORT" end self.controls.modeNotes = new("ButtonControl", {"LEFT",self.controls.modeImport,"RIGHT"}, {4, 0, 58, 20}, "Notes", function() diff --git a/src/Modules/Main.lua b/src/Modules/Main.lua index 9958b2a000..429056da0c 100644 --- a/src/Modules/Main.lua +++ b/src/Modules/Main.lua @@ -111,7 +111,6 @@ function main:Init() self.migrateAugments = true self.notSupportedModTooltips = true self.notSupportedTooltipText = " ^8(Not supported in PoB yet)" - self.POESESSID = "" --self.showPublicBuilds = true self.showFlavourText = true self.showAnimations = true @@ -642,9 +641,6 @@ function main:LoadSettings(ignoreBuild) if node.attrib.notSupportedModTooltips then self.notSupportedModTooltips = node.attrib.notSupportedModTooltips == "true" end - if node.attrib.POESESSID then - self.POESESSID = node.attrib.POESESSID or "" - end if node.attrib.invertSliderScrollDirection then self.invertSliderScrollDirection = node.attrib.invertSliderScrollDirection == "true" end @@ -792,7 +788,6 @@ function main:SaveSettings() slotOnlyTooltips = tostring(self.slotOnlyTooltips), migrateAugments = tostring(self.migrateAugments), notSupportedModTooltips = tostring(self.notSupportedModTooltips), - POESESSID = self.POESESSID, invertSliderScrollDirection = tostring(self.invertSliderScrollDirection), disableDevAutoSave = tostring(self.disableDevAutoSave), --showPublicBuilds = tostring(self.showPublicBuilds), From 05a0349dd365ee3d386db8fc361a6e66c994e62e Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Mon, 20 Apr 2026 11:16:42 +0300 Subject: [PATCH 07/42] Cleanup: remove extra logout button and fix poeapi comments --- src/Classes/PoEAPI.lua | 18 +++++++++++++----- src/Classes/TradeQuery.lua | 15 +-------------- 2 files changed, 14 insertions(+), 19 deletions(-) diff --git a/src/Classes/PoEAPI.lua b/src/Classes/PoEAPI.lua index 1f90b3f5f4..f9f8747348 100644 --- a/src/Classes/PoEAPI.lua +++ b/src/Classes/PoEAPI.lua @@ -23,7 +23,7 @@ local PoEAPIClass = newClass("PoEAPI", function(self, authToken, refreshToken, t end) --- func callback(valid, updateSettings) +--- @param callback fun(valid: bool, updateSettings: bool) function PoEAPIClass:ValidateAuth(callback) ConPrintf("Validating auth token") -- make a call for profile if not error we are good @@ -55,17 +55,20 @@ function PoEAPIClass:ValidateAuth(callback) end end + +--- @param secret string local function base64_encode(secret) return base64.encode(secret):gsub("+","-"):gsub("/","_"):gsub("=$", "") end +--- resets current authorization details function PoEAPIClass:ResetDetails() self.authToken = nil self.refreshToken = nil self.tokenExpiry = nil end --- func callback(response, errorMsg, updateSettings) +--- @param callback fun(response: table?, errCode: string?, updateSettings: boolean) function PoEAPIClass:FetchAuthToken(callback) math.randomseed(os.time()) local secret = math.random(2^32-1) @@ -126,7 +129,8 @@ function PoEAPIClass:FetchAuthToken(callback) end end --- func callback(response, errorMsg, updateSettings) +--- @param endpoint string +--- @param callback fun(response: table, errorMsg: string, updateSettings: bool) function PoEAPIClass:DownloadWithRefresh(endpoint, callback) self:ValidateAuth(function(valid, updateSettings) if not valid then @@ -161,6 +165,10 @@ function PoEAPIClass:DownloadWithRefresh(endpoint, callback) end) end +--- @alias DownloadCallback fun(timeOrBody: table|integer, err: string?) +--- @param policy string +--- @param url string +--- @param callback DownloadCallback function PoEAPIClass:DownloadWithRateLimit(policy, url, callback) local now = os.time() local timeNext = self.rateLimiter:NextRequestTime(policy, now) @@ -184,7 +192,7 @@ end ---Fetches character list from PoE's OAuth api ---@param realm string Realm to fetch the list from (always poe2) ----@param callback function callback(response, errorMsg, updateSettings) +---@param callback DownloadCallback function PoEAPIClass:DownloadCharacterList(realm, callback) self:DownloadWithRateLimit("character-list-request-limit-poe2", "/character" .. (realm == "pc" and "" or "/" .. realm), callback) end @@ -193,7 +201,7 @@ end ---Fetches character from PoE's OAuth api ---@param realm string Realm to fetch the character from (always poe2) ---@param name string Character name to fetch ----@param callback function callback(response, errorMsg, updateSettings) +---@param callback DownloadCallback function PoEAPIClass:DownloadCharacter(realm, name, callback) self:DownloadWithRateLimit("character-request-limit-poe2", "/character" .. (realm == "pc" and "" or "/" .. realm) .. "/" .. name, callback) end diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index 6357e9ca2c..b45d8be779 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -481,19 +481,6 @@ Highest Weight - Displays the order retrieved from trade]] for _, nodeId in ipairs(activeSocketList) do t_insert(slotTables, { slotName = self.itemsTab.sockets[nodeId].label, nodeId = nodeId }) end - self.controls.logoutApiButton = new("ButtonControl", {"TOPLEFT",self.controls.charImportStatusLabel,"TOPRIGHT"}, {4, 0, 180, 16}, "^7Logout from Path of Exile API", function() - main.lastToken = nil - main.api.authToken = nil - main.lastRefreshToken = nil - main.api.refreshToken = nil - main.tokenExpiry = nil - main.api.tokenExpiry = nil - main:SaveSettings() - self.charImportStatus = colorCodes.WARNING.."Not authenticated" - end) - self.controls.logoutApiButton.shown = function() - return (main.api.authToken) and main.api.authToken ~= nil - end self.controls.authenticateButton = new("ButtonControl", {"TOPLEFT",self.controls.characterImportAnchor,"TOPLEFT"}, {0, 0, 200, 16}, "^7Authorize with Path of Exile", function() main.api:FetchAuthToken(function() @@ -1248,7 +1235,7 @@ function TradeQueryClass:UpdateRealms() end) end - -- perform a generic search to make sure POESESSID is valid. + -- perform a generic search to make sure the authorization is valid. self.tradeQueryRequests:PerformSearch("poe2", "Standard", [[{"query":{"status":{"option":"online"},"stats":[{"type":"and","filters":[]}]},"sort":{"price":"asc"}}]], function(response, errMsg) if errMsg then self:SetNotice(self.controls.pbNotice, "Error: " .. tostring(errMsg)) From adaed6e34e1e2436ee07d050fa695c55921b3887 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Mon, 20 Apr 2026 13:12:49 +0300 Subject: [PATCH 08/42] Fix trader crash when rate limited on startup --- src/Classes/TradeQueryRateLimiter.lua | 6 ++++++ src/Classes/TradeQueryRequests.lua | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/Classes/TradeQueryRateLimiter.lua b/src/Classes/TradeQueryRateLimiter.lua index c7281b0cbf..6d5754e879 100644 --- a/src/Classes/TradeQueryRateLimiter.lua +++ b/src/Classes/TradeQueryRateLimiter.lua @@ -75,6 +75,9 @@ function TradeQueryRateLimiterClass:ParsePolicy(headerString) local policies = {} local headers = self:ParseHeader(headerString) local policyName = headers["x-rate-limit-policy"] + if not policyName then + return + end policies[policyName] = {} local retryAfter = headers["retry-after"] if retryAfter then @@ -111,6 +114,9 @@ end function TradeQueryRateLimiterClass:UpdateFromHeader(headerString) local newPolicies = self:ParsePolicy(headerString) + if not newPolicies then + return + end for policyKey, policyValue in pairs(newPolicies) do if self.requestHistory[policyKey] == nil then self.requestHistory[policyKey] = { timestamps = {} } diff --git a/src/Classes/TradeQueryRequests.lua b/src/Classes/TradeQueryRequests.lua index 237a4b74c9..00900977d4 100644 --- a/src/Classes/TradeQueryRequests.lua +++ b/src/Classes/TradeQueryRequests.lua @@ -34,7 +34,7 @@ function TradeQueryRequestsClass:ProcessQueue() self.rateLimiter:UpdateFromHeader(response.header) if response.header:match("HTTP/[%d%.]+ (%d+)") == "429" then request.attempts = (request.attempts or 0) + 1 - local backoff = m_min(2 ^ request.attempts, 60) + local backoff = math.min(2 ^ request.attempts, 60) request.retryTime = os.time() + backoff table.insert(queue, 1, request) return From 307ffb2532ec0dd71ba44355de8afa8030cafa8a Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Mon, 20 Apr 2026 13:14:14 +0300 Subject: [PATCH 09/42] Use https://poe.ninja/poe2/api/economy/exchange/current/overview for currency rates --- src/Classes/TradeQuery.lua | 204 ++++++++++------------------ src/Classes/TradeQueryGenerator.lua | 2 +- 2 files changed, 71 insertions(+), 135 deletions(-) diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index b45d8be779..27e1e12395 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -34,8 +34,9 @@ local TradeQueryClass = newClass("TradeQuery", function(self, itemsTab) -- default set of trade item sort selection self.slotTables = { } self.pbItemSortSelectionIndex = 1 + -- for each league, a table of values of each currency in div + --- @type table> self.pbCurrencyConversion = { } - self.currencyConversionTradeMap = { } self.lastCurrencyConversionRequest = 0 self.lastCurrencyFileTime = { } self.pbFileTimestampDiff = { } @@ -63,34 +64,6 @@ local TradeQueryClass = newClass("TradeQuery", function(self, itemsTab) self.hostName = "https://www.pathofexile.com/" end) ----Fetch currency short-names from Poe API (used for PoeNinja price pairing) ----@param callback fun() -function TradeQueryClass:FetchCurrencyConversionTable(callback) - launch:DownloadPage( - "https://www.pathofexile.com/api/trade2/data/static", - function(response, errMsg) - if errMsg then - -- SKIP CALLBACK ON ERROR TO PREVENT PARTIAL DATA - return - end - local obj = dkjson.decode(response.body) - local currencyConversionTradeMap = {} - local currencyTable - for _, value in pairs(obj.result) do - if value.id and value.id == "Currency" then - currencyTable = value.entries - break - end - end - for _, value in pairs(currencyTable) do - currencyConversionTradeMap[value.text:lower()] = value.id - end - self.currencyConversionTradeMap = currencyConversionTradeMap - if callback then - callback() - end - end) -end -- Method to pull down and interpret available leagues from PoE @@ -126,24 +99,18 @@ function TradeQueryClass:PullLeagueList() end) end --- Method to convert currency to chaos equivalent -function TradeQueryClass:ConvertCurrencyToChaos(currency, amount) - local conversionTable = self.pbCurrencyConversion[self.pbLeague] - - -- we take the ceiling of all prices to integer chaos - -- to prevent dealing with shenanigans of people asking 4.9 chaos - if conversionTable and conversionTable[currency:lower()] then - --ConPrintf("Converted '"..currency.."' at " ..tostring(conversionTable[currency:lower()])) - return m_ceil(amount * conversionTable[currency:lower()]) - elseif currency:lower() == "chaos" then - return m_ceil(amount) - else - ConPrintf("Unhandled Currency Conversion: '" .. currency:lower() .. "'") - return nil +--- @param currencyId string +--- @param amount integer +--- @return number? +function TradeQueryClass:ConvertCurrencyToDivs(currencyId, amount) + local map = self.pbCurrencyConversion[self.pbLeague] + if map and map[currencyId] then + return amount * map[currencyId] end end -- Method to pull down and interpret the PoE.Ninja JSON endpoint data +--- @param league string function TradeQueryClass:PullPoENinjaCurrencyConversion(league) local now = get_time() -- Limit PoE Ninja Currency Conversion request to 1 per hour @@ -151,59 +118,52 @@ function TradeQueryClass:PullPoENinjaCurrencyConversion(league) self:SetNotice(self.controls.pbNotice, "PoE Ninja Rate Limit Exceeded: " .. tostring(3600 - (now - self.lastCurrencyConversionRequest))) return end - -- We are getting currency short-names from Poe API before getting PoeNinja rates - -- Potentially, currency short-names could be cached but this request runs - -- once per hour at most and the Poe API response is already Cloudflare cached - self:FetchCurrencyConversionTable(function(data, errMsg) - if errMsg then - self:SetNotice(self.controls.pbNotice, "Error: " .. tostring(errMsg)) - return - end - self.pbCurrencyConversion[league] = { } - self.lastCurrencyConversionRequest = now - launch:DownloadPage( - "https://poe.ninja/api/data/CurrencyRates?league=" .. urlEncode(league), - function(response, errMsg) - if errMsg then - self:SetNotice(self.controls.pbNotice, "Error: " .. tostring(errMsg)) - return - end - local json_data = dkjson.decode(response.body) - if not json_data then - self:SetNotice(self.controls.pbNotice, "Failed to Get PoE Ninja response") - return - end - self:PriceBuilderProcessPoENinjaResponse(json_data, self.controls) - local print_str = "" - for key, value in pairs(self.pbCurrencyConversion[self.pbLeague]) do - print_str = print_str .. '"'..key..'": '..tostring(value)..',' - end - local foo = io.open("../"..self.pbLeague.."_currency_values.json", "w") - foo:write("{" .. print_str .. '"updateTime": ' .. tostring(get_time()) .. "}") - foo:close() - self:SetCurrencyConversionButton() - end) - end) + + self.pbCurrencyConversion[league] = { } + self.lastCurrencyConversionRequest = now + launch:DownloadPage( + "https://poe.ninja/poe2/api/economy/exchange/current/overview?type=Currency&league=" .. urlEncode(league), + function(response, errMsg) + if errMsg then + self:SetNotice(self.controls.pbNotice, "Error: " .. tostring(errMsg)) + return + end + local json_data = dkjson.decode(response.body) + if not json_data then + self:SetNotice(self.controls.pbNotice, "Failed to Get PoE Ninja response") + return + end + self:PriceBuilderProcessPoENinjaResponse(json_data) + local print_str = "" + for key, value in pairs(self.pbCurrencyConversion[self.pbLeague]) do + print_str = print_str .. '"'..key..'": '..tostring(value)..',' + end + local foo = io.open("../"..self.pbLeague.."_currency_values.json", "w") + foo:write("{" .. print_str .. '"updateTime": ' .. tostring(get_time()) .. "}") + foo:close() + self:SetCurrencyConversionButton() + end) + end -- Method to process the PoE.Ninja response +--- @param resp table function TradeQueryClass:PriceBuilderProcessPoENinjaResponse(resp) - if resp then - -- Populate the chaos-converted values for each tradeId - for currencyName, chaosEquivalent in pairs(resp) do - local currencyName = currencyName:lower() - if self.currencyConversionTradeMap[currencyName] then - self.pbCurrencyConversion[self.pbLeague][self.currencyConversionTradeMap[currencyName]] = chaosEquivalent - else - ConPrintf("Unhandled Currency Name: '"..currencyName.."'") - end - end - -- if nothing was actually found, we should add a notice - if next(self.pbCurrencyConversion[self.pbLeague]) == nil then - self:SetNotice(self.controls.pbNotice, "No currencies received from PoE Ninja") - end - else - self:SetNotice(self.controls.pbNotice, "PoE Ninja JSON Processing Error") + -- Populate the chaos-converted values for each tradeId + local data = resp.lines + for _, currencyDetails in ipairs(data) do + -- these use the same ids as the trade site, which are also short + -- readable names, like "transmute" or "aug", which means there's no + -- need for conversion. + local id = currencyDetails.id + -- poe.ninja uses divs as the primary currency, and as far as I know, + -- this figure is equivalent to the best ratio in equivalent divs + local divs = currencyDetails.primaryValue + self.pbCurrencyConversion[self.pbLeague][id] = divs + end + -- if nothing was actually found, we should add a notice + if next(self.pbCurrencyConversion[self.pbLeague]) == nil then + self:SetNotice(self.controls.pbNotice, "No currencies received from PoE Ninja") end end @@ -538,9 +498,7 @@ Highest Weight - Displays the order retrieved from trade]] self.controls["name"..row_count].shown = function() return hideRowFunc(self, row_count) end - row_count = row_count + 1 - - row_count = row_count + 5 + row_count = row_count + 2 local effective_row_count = row_count - ((scrollBarShown and #slotTables >= 19) and #slotTables-19 or 0) + 2 + 2 -- Two top menu rows, two bottom rows, slots after #19 overlap the other controls at the bottom of the pane self.effective_rows_height = row_height * (effective_row_count - #slotTables + (18 - (#slotTables > 37 and 3 or 0))) -- scrollBar height, "18 - slotTables > 37" logic is fine tuning whitespace after last row @@ -687,16 +645,6 @@ function TradeQueryClass:SetCurrencyConversionButton() if self.pbLeague == nil then return end - if true then -- tbd once poe ninja has data for poe2 - self.controls.updateCurrencyConversion.label = "Currency Rates are not available" - self.controls.updateCurrencyConversion.enabled = false - self.controls.updateCurrencyConversion.tooltipFunc = function(tooltip) - tooltip:Clear() - tooltip:AddLine(16, "Currency Conversion rates are pulled from PoE Ninja") - tooltip:AddLine(16, "The data is only available for the PC realm.") - end - return - end local values_file = io.open("../"..self.pbLeague.."_currency_values.json", "r") if values_file then local lines = values_file:read "*a" @@ -815,10 +763,10 @@ function TradeQueryClass:UpdateControlsWithItems(row_idx) local sortMode = self.itemSortSelectionList[self.pbItemSortSelectionIndex] local sortedItems, errMsg = self:SortFetchResults(row_idx, sortMode) if errMsg == "MissingConversionRates" then - self:SetNotice(self.controls.pbNotice, "^4Price sorting is not available, falling back to Stat Value sort.") + self:SetNotice(self.controls.pbNotice, "^4Please update currency rates to sort by price. Falling back to Stat Value sort.") sortedItems, errMsg = self:SortFetchResults(row_idx, self.sortModes.StatValue) - end - if errMsg then + return + elseif errMsg then self:SetNotice(self.controls.pbNotice, "Error: " .. errMsg) return else @@ -861,19 +809,20 @@ function TradeQueryClass:SortFetchResults(row_idx, mode) end return sum end + --- @return table? local function getPriceTable() - local out = {} - local pricedItems = self:addChaosEquivalentPriceToItems(self.resultTbl[row_idx]) - if pricedItems == nil then - return nil - end - for index, tbl in pairs(pricedItems) do - local chaosAmount = self:ConvertCurrencyToChaos(tbl.currency, tbl.amount) - if chaosAmount > 0 then - out[index] = chaosAmount - end + --- @type table + local divPrices = {} + for idx, item in ipairs(self.resultTbl[row_idx]) do + if item.currency and item.amount then + local divs = self:ConvertCurrencyToDivs(item.currency, item.amount) + if not divs then + return nil + end + divPrices[idx] = divs + else return nil end end - return out + return divPrices end local newTbl = {} if mode == self.sortModes.Weight then @@ -923,19 +872,6 @@ function TradeQueryClass:SortFetchResults(row_idx, mode) return newTbl end ---- Convert item prices to chaos equivalent using poeninja data, returns nil if fails to convert any -function TradeQueryClass:addChaosEquivalentPriceToItems(items) - local outputItems = copyTable(items) - for _, item in ipairs(outputItems) do - local chaosAmount = self:ConvertCurrencyToChaos(item.currency, item.amount) - if chaosAmount == nil then - return nil - end - item.chaosEquivalent = chaosAmount - end - return outputItems -end - -- Method to generate pane elements for each item slot function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, row_vertical_padding, row_height) local controls = self.controls @@ -1057,14 +993,14 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro end) end) controls["priceButton"..row_idx].enabled = function() - local isAuthorized = main.authToken ~= nil + local isAuthorized = main.api.authToken ~= nil local validURL = controls["uri"..row_idx].validURL local isSearching = controls["priceButton"..row_idx].label == "Searching..." return isAuthorized and validURL and not isSearching end controls["priceButton"..row_idx].tooltipFunc = function(tooltip) tooltip:Clear() - if not main.authToken then + if not main.api.authToken then tooltip:AddLine(16, "You must log in to use the search feature") elseif not controls["uri"..row_idx].validURL then tooltip:AddLine(16, "Enter a valid trade URL") diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index b37b692fa0..4ce141a102 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -608,7 +608,7 @@ local currencyTable = { { name = "Orb of Transmutation", id = "transmute" }, { name = "Regal Orb", id = "regal" }, { name = "Vaal Orb", id = "vaal" }, - { name = "Annulment Orb", id = "annul" }, + { name = "Orb of Annulment", id = "annul" }, { name = "Orb of Alchemy", id = "alch" }, { name = "Mirror of Kalandra", id = "mirror" } } From ab369efc0769decb667a96be3591487b76702de4 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Mon, 20 Apr 2026 13:31:42 +0300 Subject: [PATCH 10/42] Fix poe.ninja tests --- spec/System/TestTradeQueryCurrency_spec.lua | 55 ++++++++++----------- src/Classes/TradeQuery.lua | 23 ++++++--- 2 files changed, 42 insertions(+), 36 deletions(-) diff --git a/spec/System/TestTradeQueryCurrency_spec.lua b/spec/System/TestTradeQueryCurrency_spec.lua index 897de51637..7dcdeb8a18 100644 --- a/spec/System/TestTradeQueryCurrency_spec.lua +++ b/spec/System/TestTradeQueryCurrency_spec.lua @@ -4,40 +4,21 @@ describe("TradeQuery Currency Conversion", function() before_each(function() mock_tradeQuery = new("TradeQuery", { itemsTab = {} }) end) - -- test case for commit: "Skip callback on errors to prevent incomplete conversions" - describe("FetchCurrencyConversionTable", function() - -- Pass: Callback not called on error - -- Fail: Callback called, indicating partial data risk - it("skips callback on error", function() - local orig_launch = launch - local spy = { called = false } - launch = { - DownloadPage = function(url, callback, opts) - callback(nil, "test error") - end - } - mock_tradeQuery:FetchCurrencyConversionTable(function() - spy.called = true - end) - launch = orig_launch - assert.is_false(spy.called) - end) - end) - describe("ConvertCurrencyToChaos", function() - -- Pass: Ceils amount to integer (e.g., 4.9 -> 5) - -- Fail: Wrong value or nil, indicating broken rounding/baseline logic, causing inaccurate chaos totals + describe("ConvertCurrencyToDivs", function() + -- Pass: Calculates price in divs + -- Fail: Wrong value or nil, indicating broken rounding/baseline logic it("handles chaos currency", function() - mock_tradeQuery.pbCurrencyConversion = { league = { chaos = 1 } } + mock_tradeQuery.pbCurrencyConversion = { league = { chaos = 0.1 } } mock_tradeQuery.pbLeague = "league" - local result = mock_tradeQuery:ConvertCurrencyToChaos("chaos", 4.9) - assert.are.equal(result, 5) + local result = mock_tradeQuery:ConvertCurrencyToDivs("chaos", 5) + assert.are.equal(result, 0.5) end) -- Pass: Returns nil without crash -- Fail: Crashes or wrong value, indicating unhandled currencies, corrupting price conversions it("returns nil for unmapped", function() - local result = mock_tradeQuery:ConvertCurrencyToChaos("exotic", 10) + local result = mock_tradeQuery:ConvertCurrencyToDivs("exotic", 10) assert.is_nil(result) end) end) @@ -45,19 +26,35 @@ describe("TradeQuery Currency Conversion", function() describe("PriceBuilderProcessPoENinjaResponse", function() -- Pass: Processes without error, restoring map while adding a notice -- Fail: Corrupts map or crashes, indicating fragile API response handling, breaking future conversions - it("handles unmapped currency", function() + it("handles empty response", function() local orig_conv = mock_tradeQuery.currencyConversionTradeMap mock_tradeQuery.currencyConversionTradeMap = { div = "id" } mock_tradeQuery.pbLeague = "league" mock_tradeQuery.pbCurrencyConversion = { league = {} } mock_tradeQuery.controls.pbNotice = { label = "" } - local resp = { exotic = 10 } - mock_tradeQuery:PriceBuilderProcessPoENinjaResponse(resp) + local resp = { lines = { }} + mock_tradeQuery:PriceBuilderProcessPoENinjaResponse(resp.lines) -- No crash expected assert.is_true(true) assert.is_true(mock_tradeQuery.controls.pbNotice.label == "No currencies received from PoE Ninja") mock_tradeQuery.currencyConversionTradeMap = orig_conv end) + + -- Pass: Processes without error, restoring map while adding a notice + -- Fail: Corrupts map or crashes, indicating fragile API response handling, breaking future conversions + it("handles empty response", function() + local orig_conv = mock_tradeQuery.currencyConversionTradeMap + mock_tradeQuery.currencyConversionTradeMap = { div = "id" } + mock_tradeQuery.pbLeague = "league" + mock_tradeQuery.pbCurrencyConversion = { league = {} } + mock_tradeQuery.controls.pbNotice = { label = "" } + local resp = { lines = { { malformedLine = "lol"} }} + mock_tradeQuery:PriceBuilderProcessPoENinjaResponse(resp.lines) + -- No crash expected + assert.is_true(true) + assert.is_true(mock_tradeQuery.controls.pbNotice.label == "Currencies not updated: malformed PoE Ninja response") + mock_tradeQuery.currencyConversionTradeMap = orig_conv + end) end) describe("GetTotalPriceString", function() diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index 27e1e12395..f381e7ff9e 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -129,11 +129,14 @@ function TradeQueryClass:PullPoENinjaCurrencyConversion(league) return end local json_data = dkjson.decode(response.body) - if not json_data then + if not json_data or not json_data.lines then self:SetNotice(self.controls.pbNotice, "Failed to Get PoE Ninja response") return end - self:PriceBuilderProcessPoENinjaResponse(json_data) + if not self:PriceBuilderProcessPoENinjaResponse(json_data.lines) then + -- don't edit json on failure + return + end local print_str = "" for key, value in pairs(self.pbCurrencyConversion[self.pbLeague]) do print_str = print_str .. '"'..key..'": '..tostring(value)..',' @@ -147,11 +150,11 @@ function TradeQueryClass:PullPoENinjaCurrencyConversion(league) end -- Method to process the PoE.Ninja response ---- @param resp table -function TradeQueryClass:PriceBuilderProcessPoENinjaResponse(resp) - -- Populate the chaos-converted values for each tradeId - local data = resp.lines - for _, currencyDetails in ipairs(data) do +--- @param responseLines table[] +--- @return bool +function TradeQueryClass:PriceBuilderProcessPoENinjaResponse(responseLines) + -- Populate the divine-converted values for each tradeId + for _, currencyDetails in ipairs(responseLines) do -- these use the same ids as the trade site, which are also short -- readable names, like "transmute" or "aug", which means there's no -- need for conversion. @@ -159,12 +162,18 @@ function TradeQueryClass:PriceBuilderProcessPoENinjaResponse(resp) -- poe.ninja uses divs as the primary currency, and as far as I know, -- this figure is equivalent to the best ratio in equivalent divs local divs = currencyDetails.primaryValue + if not id or not divs then + self:SetNotice(self.controls.pbNotice, "Currencies not updated: malformed PoE Ninja response") + return false + end self.pbCurrencyConversion[self.pbLeague][id] = divs end -- if nothing was actually found, we should add a notice if next(self.pbCurrencyConversion[self.pbLeague]) == nil then self:SetNotice(self.controls.pbNotice, "No currencies received from PoE Ninja") + return false end + return true end local function initStatSortSelectionList(list) From 09b7e3c840db4b4cc31e9905e40078e1819cb5c9 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Mon, 20 Apr 2026 13:36:52 +0300 Subject: [PATCH 11/42] Fix trader section anchor --- src/Classes/TradeQuery.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index f381e7ff9e..613d2bc0eb 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -471,7 +471,7 @@ Highest Weight - Displays the order retrieved from trade]] return self.charImportMode == "AUTHENTICATION" end - self.controls.sectionAnchor = new("LabelControl", {"LEFT", self.controls.tradeTypeSelection, "LEFT"}, {0, row_vertical_padding + row_height*10, 0, 0}, "") + self.controls.sectionAnchor = new("LabelControl", {"LEFT", self.controls.tradeTypeSelection, "LEFT"}, {0, row_vertical_padding, 0, 0}, "") top_pane_alignment_ref = {"TOPLEFT", self.controls.sectionAnchor, "TOPLEFT"} local scrollBarShown = #slotTables > 21 -- clipping starts beyond this -- dynamically hide rows that are above or below the scrollBar From b5f08523f4ed2c63bc72b03a6246ebf408f07dfb Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Mon, 20 Apr 2026 13:51:16 +0300 Subject: [PATCH 12/42] Adjust price scaling factor due to things being in divs (still an abitrary number) --- src/Classes/TradeQuery.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index 613d2bc0eb..ac4e19b424 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -860,7 +860,7 @@ function TradeQueryClass:SortFetchResults(row_idx, mode) -- still seems to overrate very cheap items that are bad -- scaling factor for price - local k = 0.03 + local k = 0.1 t_insert(newTbl, { outputAttr = getResultWeight(result_index) - k * math.log(priceTable[result_index], 10), index = result_index }) From 55129941d625cecb1cc34c68313e59758897da7d Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Mon, 20 Apr 2026 14:50:37 +0300 Subject: [PATCH 13/42] Clarify price options and rate limit waits, and use Retry-After for rate limiting waits if possible --- src/Classes/TradeQuery.lua | 16 +++++++++++++++- src/Classes/TradeQueryGenerator.lua | 4 ++-- src/Classes/TradeQueryRequests.lua | 13 +++++++++++-- 3 files changed, 28 insertions(+), 5 deletions(-) diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index ac4e19b424..f9bea99bc3 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -49,12 +49,26 @@ local TradeQueryClass = newClass("TradeQuery", function(self, itemsTab) self.realmIds = { ["PoE 2"] = "poe2", } + --- @type integer? + self.backoffFinish = nil -- last query for each row self.lastQueries = {} self.tradeQueryRequests = new("TradeQueryRequests") + local function onRateLimit(backoff) + self.backoffFinish = get_time() + backoff + end main.onFrameFuncs["TradeQueryRequests"] = function() - self.tradeQueryRequests:ProcessQueue() + self.tradeQueryRequests:ProcessQueue(onRateLimit) + if self.backoffFinish then + local now = get_time() + if self.backoffFinish < now then + self.backoffFinish = nil + return + end + local msg = s_format("Rate limited. Retrying after %s seconds...", self.backoffFinish - now) + self:SetNotice(self.controls.pbNotice, colorCodes.WARNING..msg) + end end if not main.api then main.api = new("PoEAPI", main.lastToken, main.lastRefreshToken, main.tokenExpiry) diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index 4ce141a102..34def66ec7 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -600,7 +600,7 @@ function TradeQueryGeneratorClass:OnFrame() end local currencyTable = { - { name = "Relative", id = nil }, + { name = "Exalted Orb Equivalent", id = nil }, { name = "Exalted Orb", id = "exalted" }, { name = "Chaos Orb", id = "chaos" }, { name = "Divine Orb", id = "divine" }, @@ -975,7 +975,7 @@ Remove: anoints are completely ignored, and removed from items.]] end controls.maxPrice = new("EditControl", {"TOPLEFT",lastItemAnchor,"BOTTOMLEFT"}, {0, 5, 70, 18}, nil, nil, "%D") controls.maxPrice.buf = self.lastMaxPrice and tostring(self.lastMaxPrice) or "" - controls.maxPriceType = new("DropDownControl", {"LEFT",controls.maxPrice,"RIGHT"}, {5, 0, 150, 18}, currencyDropdownNames, nil) + controls.maxPriceType = new("DropDownControl", {"LEFT",controls.maxPrice,"RIGHT"}, {5, 0, 150, 18}, currencyDropdownNames, nil, "The trade site will filter out listings with other currencies,\nif anything other than \"Exalted Orb Equivalent\" is chosen and a maximum is specified.") controls.maxPriceType.selIndex = self.lastMaxPriceTypeIndex or 1 controls.maxPriceLabel = new("LabelControl", {"RIGHT",controls.maxPrice,"LEFT"}, {-5, 0, 0, 16}, "^7Max Price:") updateLastAnchor(controls.maxPrice) diff --git a/src/Classes/TradeQueryRequests.lua b/src/Classes/TradeQueryRequests.lua index 00900977d4..8d7d29bf26 100644 --- a/src/Classes/TradeQueryRequests.lua +++ b/src/Classes/TradeQueryRequests.lua @@ -19,7 +19,8 @@ local TradeQueryRequestsClass = newClass("TradeQueryRequests", function(self, ra end) ---Main routine for processing request queue -function TradeQueryRequestsClass:ProcessQueue() +--- @param onRateLimit fun(integer)? +function TradeQueryRequestsClass:ProcessQueue(onRateLimit) for key, queue in pairs(self.requestQueue) do if #queue > 0 then local policy = self.rateLimiter:GetPolicyName(key) @@ -33,10 +34,18 @@ function TradeQueryRequestsClass:ProcessQueue() self.rateLimiter:FinishRequest(policy, requestId) self.rateLimiter:UpdateFromHeader(response.header) if response.header:match("HTTP/[%d%.]+ (%d+)") == "429" then + local retryAfter = response.header:match("Retry%-After:%s+(%d+)") + retryAfter = retryAfter and tonumber(retryAfter) or 0 request.attempts = (request.attempts or 0) + 1 - local backoff = math.min(2 ^ request.attempts, 60) + + local backoff = math.max(math.min(2 ^ request.attempts, 60), retryAfter) request.retryTime = os.time() + backoff table.insert(queue, 1, request) + -- optional callback with the backoff time when rate + -- limited to inform user + if onRateLimit then + onRateLimit(backoff) + end return end -- if limit rules don't return account then the auth token is invalid. From 9f8170672e2aaf8965ce5f63ab3ddab3412545ab Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Mon, 20 Apr 2026 16:43:26 +0300 Subject: [PATCH 14/42] rate limiting pls work --- src/Classes/PoEAPI.lua | 2 +- src/Classes/TradeQuery.lua | 1 + src/Classes/TradeQueryRateLimiter.lua | 13 ++++++------- src/Classes/TradeQueryRequests.lua | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/src/Classes/PoEAPI.lua b/src/Classes/PoEAPI.lua index f9f8747348..b6d5b376ef 100644 --- a/src/Classes/PoEAPI.lua +++ b/src/Classes/PoEAPI.lua @@ -176,7 +176,7 @@ function PoEAPIClass:DownloadWithRateLimit(policy, url, callback) local requestId = self.rateLimiter:InsertRequest(policy) local onComplete = function(response, errMsg) self.rateLimiter:FinishRequest(policy, requestId) - self.rateLimiter:UpdateFromHeader(response.header) + self.rateLimiter:UpdateFromHeader(response.header, policy) if response.header:match("HTTP/[%d%.]+ (%d+)") == "429" then timeNext = self.rateLimiter:NextRequestTime(policy, now) callback(timeNext, "Response code: 429") diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index f9bea99bc3..8634279a11 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -64,6 +64,7 @@ local TradeQueryClass = newClass("TradeQuery", function(self, itemsTab) local now = get_time() if self.backoffFinish < now then self.backoffFinish = nil + self:SetNotice(self.controls.pbNotice, "") return end local msg = s_format("Rate limited. Retrying after %s seconds...", self.backoffFinish - now) diff --git a/src/Classes/TradeQueryRateLimiter.lua b/src/Classes/TradeQueryRateLimiter.lua index 6d5754e879..5a9c675ee4 100644 --- a/src/Classes/TradeQueryRateLimiter.lua +++ b/src/Classes/TradeQueryRateLimiter.lua @@ -71,16 +71,15 @@ function TradeQueryRateLimiterClass:ParseHeader(headerString) return headers end -function TradeQueryRateLimiterClass:ParsePolicy(headerString) +function TradeQueryRateLimiterClass:ParsePolicy(headerString, policy) local policies = {} local headers = self:ParseHeader(headerString) - local policyName = headers["x-rate-limit-policy"] - if not policyName then - return - end + local policyName = headers["x-rate-limit-policy"] or policy + ConPrintf("policy: %s, headers: %s", policy, headerString) policies[policyName] = {} local retryAfter = headers["retry-after"] if retryAfter then + ConPrintf("retry after: %d", retryAfter) policies[policyName].retryAfter = os.time() + retryAfter end local ruleNames = {} @@ -112,8 +111,8 @@ function TradeQueryRateLimiterClass:ParsePolicy(headerString) return policies end -function TradeQueryRateLimiterClass:UpdateFromHeader(headerString) - local newPolicies = self:ParsePolicy(headerString) +function TradeQueryRateLimiterClass:UpdateFromHeader(headerString, policy) + local newPolicies = self:ParsePolicy(headerString, policy) if not newPolicies then return end diff --git a/src/Classes/TradeQueryRequests.lua b/src/Classes/TradeQueryRequests.lua index 8d7d29bf26..3376b046b8 100644 --- a/src/Classes/TradeQueryRequests.lua +++ b/src/Classes/TradeQueryRequests.lua @@ -32,7 +32,7 @@ function TradeQueryRequestsClass:ProcessQueue(onRateLimit) local requestId = self.rateLimiter:InsertRequest(policy) local onComplete = function(response, errMsg) self.rateLimiter:FinishRequest(policy, requestId) - self.rateLimiter:UpdateFromHeader(response.header) + self.rateLimiter:UpdateFromHeader(response.header, policy) if response.header:match("HTTP/[%d%.]+ (%d+)") == "429" then local retryAfter = response.header:match("Retry%-After:%s+(%d+)") retryAfter = retryAfter and tonumber(retryAfter) or 0 From 69ceb617597f073132dc5c7d8be558551a382242 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Mon, 20 Apr 2026 19:21:19 +0300 Subject: [PATCH 15/42] Fix perfect essences not appearing in generated weights, and regenerate querymods.lua --- src/Classes/TradeQueryGenerator.lua | 17 + src/Data/QueryMods.lua | 609 ++++++++++++++++++++++++++-- 2 files changed, 588 insertions(+), 38 deletions(-) diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index 34def66ec7..89a04b2dac 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -383,6 +383,23 @@ function TradeQueryGeneratorClass:InitMods() self:GenerateModData(data.itemMods.Flask, tradeQueryStatsParsed, { ["LifeFlask"] = true, ["ManaFlask"] = true }) self:GenerateModData(data.itemMods.Charm, tradeQueryStatsParsed, { ["Charm"] = true }) + -- essences, because in item mod data they don't have equipment tags + for name, essence in pairs(data.essences) do + -- weird exception: linked to mod that says "% dex int or str" + if name:find("Perfect") and not (name == "Metadata/Items/Currency/CurrencyPerfectEssenceAttribute") then + for itemType, modName in pairs(essence.mods) do + local mask = {} + local itemType = itemType == "Warstaff" and "Quarterstaff" or itemType + mask[itemType] = true + self:ProcessMod(data.itemMods.Item[modName], tradeQueryStatsParsed, regularItemMask, mask) + end + end + end + -- fix the weird exception + for _, v in ipairs({"EssencePercentStrength1", "EssencePercentDexterity1", "EssencePercentIntelligence1"}) do + self:ProcessMod(data.itemMods.Item[v], tradeQueryStatsParsed, regularItemMask, { Amulet = true }) + end + for _, entry in ipairs(tradeQueryStatsParsed.result[tradeStatCategoryIndices.AllocatesXEnchant].entries) do if entry.text:sub(1, 10) == "Allocates " then -- The trade id for allocatesX enchants end with "|[nodeID]" for the allocated node. diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index e36901f51b..f168403f33 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -7395,6 +7395,10 @@ return { }, ["Corrupted"] = { ["1004011302"] = { + ["Helmet"] = { + ["max"] = 12, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -7418,6 +7422,10 @@ return { ["usePositiveSign"] = true, }, ["101878827"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -7586,6 +7594,10 @@ return { }, }, ["1316278494"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -7624,6 +7636,18 @@ return { }, }, ["1436284579"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -7741,6 +7765,18 @@ return { ["usePositiveSign"] = true, }, ["1658498488"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -7750,6 +7786,14 @@ return { }, }, ["1671376347"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["Belt"] = { ["max"] = 25, ["min"] = 20, @@ -7758,6 +7802,10 @@ return { ["max"] = 25, ["min"] = 20, }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -8176,6 +8224,10 @@ return { }, }, ["2353576063"] = { + ["Helmet"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -8337,6 +8389,10 @@ return { }, }, ["280731498"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -8419,10 +8475,22 @@ return { ["usePositiveSign"] = true, }, ["2923486259"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["Chest"] = { ["max"] = 19, ["min"] = 13, }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["Ring"] = { ["max"] = 19, ["min"] = 13, @@ -8559,10 +8627,22 @@ return { ["max"] = 15, ["min"] = 10, }, + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, ["Belt"] = { ["max"] = 15, ["min"] = 10, }, + ["RadiusJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, ["Ring"] = { ["max"] = 15, ["min"] = 10, @@ -8581,10 +8661,22 @@ return { ["max"] = 15, ["min"] = 10, }, + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, ["Belt"] = { ["max"] = 15, ["min"] = 10, }, + ["RadiusJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, ["Ring"] = { ["max"] = 15, ["min"] = 10, @@ -8695,6 +8787,14 @@ return { }, }, ["3372524247"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["Belt"] = { ["max"] = 25, ["min"] = 20, @@ -8703,6 +8803,10 @@ return { ["max"] = 25, ["min"] = 20, }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -8713,6 +8817,10 @@ return { ["usePositiveSign"] = true, }, ["3377888098"] = { + ["Helmet"] = { + ["max"] = 25, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -8722,6 +8830,10 @@ return { }, }, ["3398787959"] = { + ["Helmet"] = { + ["max"] = 8, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -8744,6 +8856,18 @@ return { }, }, ["3429557654"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -9121,10 +9245,22 @@ return { ["max"] = 15, ["min"] = 10, }, + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, ["Belt"] = { ["max"] = 15, ["min"] = 10, }, + ["RadiusJewel"] = { + ["max"] = 6, + ["min"] = 4, + }, ["Ring"] = { ["max"] = 15, ["min"] = 10, @@ -9166,6 +9302,14 @@ return { ["usePositiveSign"] = true, }, ["4220027924"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["Belt"] = { ["max"] = 25, ["min"] = 20, @@ -9174,6 +9318,10 @@ return { ["max"] = 25, ["min"] = 20, }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -9210,6 +9358,10 @@ return { ["usePositiveSign"] = true, }, ["4236566306"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -9440,6 +9592,18 @@ return { }, }, ["721014846"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["BaseJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10379,6 +10543,10 @@ return { ["usePositiveSign"] = true, }, ["1389153006"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10965,6 +11133,10 @@ return { }, }, ["1742651309"] = { + ["Belt"] = { + ["max"] = 30, + ["min"] = 26, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11256,6 +11428,58 @@ return { }, }, ["1881230714"] = { + ["Bow"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Crossbow"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Dagger"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Flail"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["One Hand Axe"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["One Hand Mace"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["One Hand Sword"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Quarterstaff"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Spear"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Talisman"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Two Hand Axe"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Two Hand Mace"] = { + ["max"] = 25, + ["min"] = 20, + }, + ["Two Hand Sword"] = { + ["max"] = 25, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12204,10 +12428,62 @@ return { ["max"] = 60, ["min"] = 26, }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Axe"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Mace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Sword"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, + }, ["Staff"] = { ["max"] = 60, ["min"] = 26, }, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Axe"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Mace"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Sword"] = { + ["max"] = 33, + ["min"] = 25, + }, ["Wand"] = { ["max"] = 30, ["min"] = 13, @@ -12556,6 +12832,10 @@ return { ["max"] = 8, ["min"] = 3, }, + ["Ring"] = { + ["max"] = 6, + ["min"] = 4, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12962,6 +13242,10 @@ return { }, }, ["2970621759"] = { + ["Gloves"] = { + ["max"] = 30, + ["min"] = 26, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13045,31 +13329,83 @@ return { ["max"] = 1, ["min"] = 1, }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_300723956", + ["text"] = "Attack Hits apply Incision", + ["type"] = "explicit", + }, + }, + ["3015669065"] = { + ["1HWeapon"] = { + ["max"] = 30, + ["min"] = 13, + }, + ["2HWeapon"] = { + ["max"] = 60, + ["min"] = 26, + }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Axe"] = { + ["max"] = 20, + ["min"] = 15, }, - ["specialCaseData"] = { + ["One Hand Mace"] = { + ["max"] = 20, + ["min"] = 15, }, - ["tradeMod"] = { - ["id"] = "explicit.stat_300723956", - ["text"] = "Attack Hits apply Incision", - ["type"] = "explicit", + ["One Hand Sword"] = { + ["max"] = 20, + ["min"] = 15, }, - }, - ["3015669065"] = { - ["1HWeapon"] = { - ["max"] = 30, - ["min"] = 13, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 25, }, - ["2HWeapon"] = { - ["max"] = 60, - ["min"] = 26, + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, }, ["Staff"] = { ["max"] = 60, ["min"] = 26, }, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Axe"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Mace"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Sword"] = { + ["max"] = 33, + ["min"] = 25, + }, ["Wand"] = { ["max"] = 30, ["min"] = 13, @@ -13154,6 +13490,58 @@ return { }, }, ["3035140377"] = { + ["Bow"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["Crossbow"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Dagger"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["Flail"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["One Hand Axe"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["One Hand Mace"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["One Hand Sword"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["Quarterstaff"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 3, + ["min"] = 3, + }, + ["Talisman"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Two Hand Axe"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Two Hand Mace"] = { + ["max"] = 5, + ["min"] = 5, + }, + ["Two Hand Sword"] = { + ["max"] = 5, + ["min"] = 5, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13295,6 +13683,10 @@ return { }, }, ["315791320"] = { + ["Sceptre"] = { + ["max"] = 20, + ["min"] = 15, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13356,6 +13748,10 @@ return { }, }, ["3175163625"] = { + ["Gloves"] = { + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13512,10 +13908,62 @@ return { ["max"] = 60, ["min"] = 26, }, + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Axe"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Mace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Sword"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, + }, ["Staff"] = { ["max"] = 60, ["min"] = 26, }, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Axe"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Mace"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Sword"] = { + ["max"] = 33, + ["min"] = 25, + }, ["Wand"] = { ["max"] = 30, ["min"] = 13, @@ -14404,6 +14852,10 @@ return { ["usePositiveSign"] = true, }, ["3679418014"] = { + ["Helmet"] = { + ["max"] = 30, + ["min"] = 26, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14771,6 +15223,10 @@ return { }, }, ["3855016469"] = { + ["Body Armour"] = { + ["max"] = 50, + ["min"] = 40, + }, ["Shield"] = { ["max"] = 54, ["min"] = 21, @@ -15044,6 +15500,58 @@ return { }, }, ["4019237939"] = { + ["Bow"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Dagger"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Axe"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Mace"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["One Hand Sword"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Spear"] = { + ["max"] = 20, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Axe"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Mace"] = { + ["max"] = 33, + ["min"] = 25, + }, + ["Two Hand Sword"] = { + ["max"] = 33, + ["min"] = 25, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15246,6 +15754,18 @@ return { ["usePositiveSign"] = true, }, ["4101445926"] = { + ["Focus"] = { + ["max"] = 20, + ["min"] = 18, + }, + ["Staff"] = { + ["max"] = 32, + ["min"] = 28, + }, + ["Wand"] = { + ["max"] = 20, + ["min"] = 18, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15255,6 +15775,10 @@ return { }, }, ["4129825612"] = { + ["Body Armour"] = { + ["max"] = 15, + ["min"] = 10, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15264,6 +15788,10 @@ return { }, }, ["4139681126"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 7, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15946,6 +16474,10 @@ return { }, }, ["656461285"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 7, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16238,6 +16770,10 @@ return { }, }, ["734614379"] = { + ["Amulet"] = { + ["max"] = 10, + ["min"] = 7, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16836,6 +17372,10 @@ return { ["max"] = 8, ["min"] = 3, }, + ["Body Armour"] = { + ["max"] = 10, + ["min"] = 8, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17394,23 +17934,6 @@ return { }, ["usePositiveSign"] = true, }, - ["2527686725"] = { - ["2HWeapon"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["Talisman"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_2527686725", - ["text"] = "#% increased Magnitude of Shock you inflict", - ["type"] = "implicit", - }, - }, ["2646093132"] = { ["Ring"] = { ["max"] = 1, @@ -17719,6 +18242,20 @@ return { ["type"] = "implicit", }, }, + ["3489782002"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["3544800472"] = { ["Chest"] = { ["max"] = 40, @@ -19511,7 +20048,7 @@ return { }, }, ["2481353198"] = { - ["Helmet"] = { + ["Chest"] = { ["max"] = 10, ["min"] = 10, }, @@ -21000,10 +21537,6 @@ return { ["max"] = 20, ["min"] = 20, }, - ["Helmet"] = { - ["max"] = 20, - ["min"] = 20, - }, ["specialCaseData"] = { }, ["tradeMod"] = { From deb5c7ced64d69705f251de024238117cc7086d8 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Mon, 20 Apr 2026 20:55:04 +0300 Subject: [PATCH 16/42] Fix tradehashes for radius jewels --- src/Classes/TradeQueryGenerator.lua | 2 +- src/Data/ModItemExclusive.lua | 4863 +++++++++++++++++++++++++++ src/Data/ModJewel.lua | 361 ++ src/Data/ModVeiled.lua | 349 ++ src/Data/QueryMods.lua | 3986 ++++++++++++++++------ 5 files changed, 8525 insertions(+), 1036 deletions(-) diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index 89a04b2dac..fedd1196dd 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -730,7 +730,7 @@ function TradeQueryGeneratorClass:ExecuteQuery() self:GenerateModWeights(radiusMods) else - -- radius mods are not filtered out here, but they valued at zero and + -- radius mods are not filtered out here, but they are valued at zero and -- ignored as the base item won't have a "radius:" line self:GenerateModWeights(self.modData["Explicit"]) end diff --git a/src/Data/ModItemExclusive.lua b/src/Data/ModItemExclusive.lua index 70794c1e5c..3af7c0948b 100644 --- a/src/Data/ModItemExclusive.lua +++ b/src/Data/ModItemExclusive.lua @@ -4865,4 +4865,4867 @@ return { ["CorruptionUpgradePhysicalDamageOverTimeTaken"] = { affix = "", "(20-30)% reduced Physical Damage taken over time", statOrder = { 4599 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical" }, tradeHashes = { [511024200] = { "(20-30)% reduced Physical Damage taken over time" }, } }, ["CorruptionUpgradeGlobalChanceToBlindOnHit"] = { affix = "", "(30-50)% Global chance to Blind Enemies on Hit", statOrder = { 2592 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2221570601] = { "(30-50)% Global chance to Blind Enemies on Hit" }, } }, ["CorruptionUpgradeAdditionalFissureChance"] = { affix = "", "Skills which create Fissures have a (20-40)% chance to create an additional Fissure", statOrder = { 9296 }, level = 1, group = "AdditionalFissureChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (20-40)% chance to create an additional Fissure" }, } }, + ["LocalBaseEvasionRatingAndEnergyShieldPerLevelImplicit"] = { affix = "[DNT-UNUSED] Hand Wraps", "DNT-UNUSED +5 to Evasion Rating per level", statOrder = { 7161 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 939934080, }, + ["UniqueNearbyAlliesAddedChaosDamage1"] = { affix = "", "Allies in your Presence deal (13-17) to (25-37) added Attack Chaos Damage", statOrder = { 886 }, level = 82, group = "AlliesInPresenceAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 262946222, }, + ["UniqueChanceForExertedAttackToNoteReduceCount1"] = { affix = "", "Skills which Empower an Attack have (10-20)% chance to not count that Attack", statOrder = { 5028 }, level = 1, group = "SkillsExertAttacksDoNotCountChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2538411280, }, + ["UniqueGlobalColdSpellGemsLevel1"] = { affix = "", "+(5-7) to Level of all Cold Spell Skills", statOrder = { 925 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, }, + ["UniqueAttackCriticalStrikeChance1UNUSED"] = { affix = "", "(20-40)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 2194114101, }, + ["UniqueAttackCriticalStrikeMultiplier1UNUSED"] = { affix = "", "(20-40)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 3714003708, }, + ["UniqueArmourAppliesToDeflection1"] = { affix = "", "Gain Deflection Rating equal to 20% of Armour", statOrder = { 965 }, level = 1, group = "ArmourAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1752419596, }, + ["UniqueEvasionAppliesToDeflection1"] = { affix = "", "Gain Deflection Rating equal to (20-30)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 3033371881, }, + ["UniqueEvasionAppliesToDeflection2"] = { affix = "", "Gain Deflection Rating equal to (40-60)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 3033371881, }, + ["UniqueEvasionAppliesToDeflection3"] = { affix = "", "Gain Deflection Rating equal to (20-30)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 3033371881, }, + ["UniqueEvasionAppliesToDeflection4"] = { affix = "", "Gain Deflection Rating equal to (40-60)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 3033371881, }, + ["UniqueEvasionAppliesToDeflection5"] = { affix = "", "Gain Deflection Rating equal to (24-32)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 3033371881, }, + ["UniqueDeflectDamagePrevented1"] = { affix = "", "-(12-6)% to amount of Damage Prevented by Deflection", statOrder = { 4541 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3552135623, }, + ["UniqueAdditionalAmmo1"] = { affix = "", "Loads an additional bolt", statOrder = { 943 }, level = 1, group = "AdditionalAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1039380318, }, + ["UniqueFlaskIncreasedRecoverySpeed1"] = { affix = "", "50% reduced Recovery rate", statOrder = { 913 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 173226756, }, + ["UniqueFlaskRecoveryAmount1"] = { affix = "", "(70-80)% reduced Amount Recovered", statOrder = { 905 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 700317374, }, + ["QuiverImplicitPhysicalDamage1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, }, + ["QuiverImplicitFireDamage1"] = { affix = "", "Adds 3 to 5 Fire damage to Attacks", statOrder = { 844 }, level = 11, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, }, + ["QuiverImplicitLifeGainPerTarget1"] = { affix = "", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 21, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, }, + ["QuiverImplicitIncreasedAccuracy1"] = { affix = "", "(20-30)% increased Accuracy Rating", statOrder = { 1268 }, level = 30, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 624954515, }, + ["QuiverImplicitStunThresholdReduction1"] = { affix = "", "(25-40)% increased Stun Buildup", statOrder = { 984 }, level = 40, group = "StunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 239367161, }, + ["QuiverImplicitChanceToPoison1"] = { affix = "", "(20-30)% chance to Poison on Hit with Attacks", statOrder = { 2791 }, level = 49, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3954735777, }, + ["QuiverImplicitChanceToBleed1"] = { affix = "", "Attacks have (20-30)% chance to cause Bleeding", statOrder = { 2159 }, level = 56, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3204820200, }, + ["QuiverImplicitIncreasedAttackSpeed1"] = { affix = "", "(7-10)% increased Attack Speed", statOrder = { 941 }, level = 64, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, + ["QuiverImplicitArrowAdditionalPierce1"] = { affix = "", "100% chance to Pierce an Enemy", statOrder = { 1001 }, level = 69, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2321178454, }, + ["QuiverImplicitArrowSpeed1"] = { affix = "", "(20-30)% increased Arrow Speed", statOrder = { 1479 }, level = 75, group = "ArrowSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1207554355, }, + ["QuiverImplicitCriticalStrikeChance1"] = { affix = "", "(20-30)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 80, group = "AttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 2194114101, }, + ["AmuletImplicitLifeRegeneration1"] = { affix = "", "(2-4) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["AmuletImplicitManaRegeneration1"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["AmuletImplicitStrength1"] = { affix = "", "+(10-15) to Strength", statOrder = { 947 }, level = 10, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["AmuletImplicitDexterity1"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 948 }, level = 10, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["AmuletImplicitIntelligence1"] = { affix = "", "+(10-15) to Intelligence", statOrder = { 949 }, level = 10, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["AmuletImplicitEnergyShield1"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 867 }, level = 18, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, }, + ["AmuletImplicitIncreasedLife1"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 869 }, level = 23, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["AmuletImplicitAllAttributes1"] = { affix = "", "+(5-7) to all Attributes", statOrder = { 946 }, level = 31, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["AmuletImplicitBaseSpirit1"] = { affix = "", "+(10-15) to Spirit", statOrder = { 874 }, level = 38, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, + ["AmuletImplicitItemFoundRarityIncrease1"] = { affix = "", "(12-20)% increased Rarity of Items found", statOrder = { 916 }, level = 44, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["AmuletImplicitAllElementalResistances"] = { affix = "", "+(7-10)% to all Elemental Resistances", statOrder = { 957 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["AmuletImplicitPrefixSuffixAllowed1"] = { affix = "", "+1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, }, + ["AmuletImplicitPrefixSuffixAllowed2"] = { affix = "", "-1 Prefix Modifier allowed", "+1 Suffix Modifier allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, }, + ["AmuletImplicitPrefixSuffixAllowed3"] = { affix = "", "+2 Prefix Modifiers allowed", "-2 Suffix Modifiers allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, }, + ["AmuletImplicitPrefixSuffixAllowed4"] = { affix = "", "-2 Prefix Modifiers allowed", "+2 Suffix Modifiers allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, }, + ["AmuletImplicitPrefixSuffixAllowed5"] = { affix = "", "-1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, }, + ["RingImplicitPhysicalDamage1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, }, + ["RingImplicitIncreasedMana1"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["RingImplicitFireResistance1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 10, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["RingImplicitColdResistance1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 15, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["RingImplicitLightningResistance1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 960 }, level = 20, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["RingImplicitChaosResistance1"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 961 }, level = 25, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["RingImplicitIncreasedAccuracy1"] = { affix = "", "+(120-160) to Accuracy Rating", statOrder = { 862 }, level = 33, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, + ["RingImplicitIncreasedCastSpeed1"] = { affix = "", "(7-10)% increased Cast Speed", statOrder = { 942 }, level = 40, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["RingImplicitAllResistances1"] = { affix = "", "+(7-10)% to all Elemental Resistances", statOrder = { 957 }, level = 44, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["RingImplicitItemFoundRarityIncrease1"] = { affix = "", "(6-15)% increased Rarity of Items found", statOrder = { 916 }, level = 50, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["RingImplicitAdditionalSkillSlots1"] = { affix = "", "Grants 1 additional Skill Slot", statOrder = { 55 }, level = 56, group = "AdditionalSkillSlots", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 958696139, }, + ["RingImplicitMaximumQualityOverride1"] = { affix = "", "Maximum Quality is 40%", statOrder = { 7328 }, level = 50, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 275498888, }, + ["RingImplicitPrefixSuffixAllowed1"] = { affix = "", "+1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, }, + ["RingImplicitPrefixSuffixAllowed2"] = { affix = "", "-1 Prefix Modifier allowed", "+1 Suffix Modifier allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, }, + ["RingImplicitPrefixSuffixAllowed3"] = { affix = "", "+2 Prefix Modifiers allowed", "-2 Suffix Modifiers allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, }, + ["RingImplicitPrefixSuffixAllowed4"] = { affix = "", "-2 Prefix Modifiers allowed", "+2 Suffix Modifiers allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, }, + ["BeltImplicitFlaskLifeRecovery1"] = { affix = "", "(20-30)% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, }, + ["BeltImplicitFlaskManaRecovery1"] = { affix = "", "(20-30)% increased Mana Recovery from Flasks", statOrder = { 1720 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, }, + ["BeltImplicitIncreasedFlaskChargesGained1"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6216 }, level = 18, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, }, + ["BeltImplicitIncreasedCharmDuration1"] = { affix = "", "(15-20)% increased Charm Effect Duration", statOrder = { 878 }, level = 25, group = "BeltIncreasedCharmDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1389754388, }, + ["BeltImplicitPhysicalDamageReductionRating1"] = { affix = "", "+(100-140) to Armour", statOrder = { 863 }, level = 31, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 809229260, }, + ["BeltImplicitReducedCharmChargesUsed1"] = { affix = "", "(10-15)% reduced Charm Charges used", statOrder = { 5229 }, level = 39, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1570770415, }, + ["BeltImplicitReducedFlaskChargesUsed1"] = { affix = "", "(10-15)% reduced Flask Charges used", statOrder = { 982 }, level = 50, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 644456512, }, + ["BeltImplicitIncreasedCharmChargesGained1"] = { affix = "", "(20-30)% increased Charm Charges gained", statOrder = { 5227 }, level = 55, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3585532255, }, + ["BeltImplicitIncreasedStunThreshold1"] = { affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2878 }, level = 63, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 680068163, }, + ["BeltImplicitInstantFlaskRecoveryPercent1"] = { affix = "", "20% of Flask Recovery applied Instantly", statOrder = { 6222 }, level = 69, group = "InstantFlaskRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 462041840, }, + ["BeltImplicitFlaskPassiveChargeGain1"] = { affix = "", "Flasks gain 0.17 charges per Second", statOrder = { 6447 }, level = 78, group = "AllFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 731781020, }, + ["BeltImplicitCharmSlots1"] = { affix = "", "Has 1 Charm Slot", statOrder = { 4630 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1416292992, }, + ["BeltImplicitCharmSlots2"] = { affix = "", "Has (1-2) Charm Slot", statOrder = { 4630 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1416292992, }, + ["BeltImplicitCharmSlots3"] = { affix = "", "Has (1-3) Charm Slot", statOrder = { 4630 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1416292992, }, + ["CharmImplicitUseOnFreeze1"] = { affix = "", "Used when you become Frozen", statOrder = { 680 }, level = 1, group = "FlaskUseOnAffectedByFreeze", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1691862754, }, + ["CharmImplicitUseOnBleed1"] = { affix = "", "Used when you start Bleeding", statOrder = { 678 }, level = 1, group = "FlaskUseOnAffectedByBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3676540188, }, + ["CharmImplicitUseOnPoison1"] = { affix = "", "Used when you become Poisoned", statOrder = { 682 }, level = 1, group = "FlaskUseOnAffectedByPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1412682799, }, + ["CharmImplicitUseOnIgnite1"] = { affix = "", "Used when you become Ignited", statOrder = { 681 }, level = 1, group = "FlaskUseOnAffectedByIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 585126960, }, + ["CharmImplicitUseOnShock1"] = { affix = "", "Used when you become Shocked", statOrder = { 683 }, level = 1, group = "FlaskUseOnAffectedByShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3699444296, }, + ["CharmImplicitUseOnStun1"] = { affix = "", "Used when you become Stunned", statOrder = { 696 }, level = 1, group = "FlaskUseOnAffectedByStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1810482573, }, + ["CharmImplicitUseOnSlow1"] = { affix = "", "Used when you are affected by a Slow", statOrder = { 684 }, level = 1, group = "FlaskUseOnAffectedBySlow", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2778646494, }, + ["CharmImplicitUseOnFireDamage1"] = { affix = "", "Used when you take Fire damage from a Hit", statOrder = { 688 }, level = 1, group = "FlaskUseOnTakingFireDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3854901951, }, + ["CharmImplicitUseOnColdDamage1"] = { affix = "", "Used when you take Cold damage from a Hit", statOrder = { 686 }, level = 1, group = "FlaskUseOnTakingColdDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2994271459, }, + ["CharmImplicitUseOnLightningDamage1"] = { affix = "", "Used when you take Lightning damage from a Hit", statOrder = { 695 }, level = 1, group = "FlaskUseOnTakingLightningDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2016937536, }, + ["CharmImplicitUseOnChaosDamage1"] = { affix = "", "Used when you take Chaos damage from a Hit", statOrder = { 685 }, level = 1, group = "FlaskUseOnTakingChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3310778564, }, + ["CharmImplicitUseOnRareUniqueKill1"] = { affix = "", "Used when you kill a Rare or Unique enemy", statOrder = { 694 }, level = 1, group = "FlaskUseOnKillingRareUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4010341289, }, + ["CharmImplicitUseOnCurse1"] = { affix = "", "Used when you become Cursed", statOrder = { 676 }, level = 1, group = "FlaskUseOnAffectedByCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4146282829, }, + ["BodyArmourImplicitIncreasedStunThreshold1"] = { affix = "", "(30-40)% increased Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 680068163, }, + ["BodyArmourImplicitLifeRegenerationPercent1"] = { affix = "", "Regenerate (1.5-2.5)% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, + ["BodyArmourImplicitIncreasedAilmentThreshold1"] = { affix = "", "(30-40)% increased Elemental Ailment Threshold", statOrder = { 4147 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3544800472, }, + ["BodyArmourImplicitSlowPotency1"] = { affix = "", "(20-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 924253255, }, + ["BodyArmourImplicitEnergyShieldDelay1"] = { affix = "", "(40-50)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, }, + ["BodyArmourImplicitManaRegeneration1"] = { affix = "", "(40-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["BodyArmourImplicitIncreasedLife1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["BodyArmourImplicitFireResistance1"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["BodyArmourImplicitColdResistance1"] = { affix = "", "+(20-25)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["BodyArmourImplicitLightningResistance1"] = { affix = "", "+(20-25)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["BodyArmourImplicitMaximumElementalResistance1"] = { affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 952 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1978899297, }, + ["BodyArmourImplicitIncreasedSpirit1"] = { affix = "", "+(20-30) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, + ["BodyArmourImplicitChaosResistance1"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["BodyArmourImplicitMovementVelocity1"] = { affix = "", "5% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["BodyArmourImplicitReducedCriticalStrikeDamageTaken1"] = { affix = "", "Hits against you have (15-25)% reduced Critical Damage Bonus", statOrder = { 950 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3855016469, }, + ["BodyArmourImplicitMovementVelocityPenaltyWhilePerformingAction1"] = { affix = "", "(10-20)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 8594 }, level = 1, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2590797182, }, + ["BodyArmourImplicitDamageRemovedFromManaBeforeLife1"] = { affix = "", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 458438597, }, + ["BodyArmourImplicitArmourAppliesToElementalDamage1"] = { affix = "", "+(15-25)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "armour", "defences", "elemental" }, tradeHash = 3362812763, }, + ["BodyArmourImplicitLifeRecoupForJewel1"] = { affix = "", "(8-14)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "LifeRecoupForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1444556985, }, + ["BodyArmourImplicitSelfStatusAilmentDuration1"] = { affix = "", "(10-15)% reduced Elemental Ailment Duration on you", statOrder = { 1549 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 1745952865, }, + ["BodyArmourImplicitLevelOfAllCorruptedSkillGems1"] = { affix = "", "+1 to Level of all Corrupted Skill Gems", statOrder = { 5388 }, level = 1, group = "GlobalCorruptedSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 2251279027, }, + ["SwordImplicitLifeLeechLocal1"] = { affix = "", "Leeches 6% of Physical Damage as Life", statOrder = { 972 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, }, + ["SwordImplicitItemFoundRarity1"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["SwordImplicitSpellDamage1"] = { affix = "", "(40-60)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, + ["AxeImplicitRageOnHit1"] = { affix = "", "Grants 1 Rage on Hit", statOrder = { 7239 }, level = 1, group = "LocalRageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1725749947, }, + ["AxeImplicitAccuracyUnaffectedByDistance1"] = { affix = "", "Has no Accuracy Penalty from Range", statOrder = { 7436 }, level = 1, group = "LocalAccuracyUnaffectedDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1050883682, }, + ["AxeImplicitManaGainedFromEnemyDeath1"] = { affix = "", "Gain (28-35) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, + ["AxeImplicitDamageTaken1"] = { affix = "", "10% increased Damage taken", statOrder = { 1888 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3691641145, }, + ["AxeImplicitCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 7186 }, level = 1, group = "LocalCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1574531783, }, + ["AxeImplicitLifeGainedFromEnemyDeath1"] = { affix = "", "Gain (34-43) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, + ["AxeImplicitLocalChanceToBleed1"] = { affix = "", "(15-25)% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, + ["AxeImplicitCannotBeThrown1"] = { affix = "", "Cannot use Projectile Attacks", statOrder = { 7172 }, level = 1, group = "CannotBeThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1961849903, }, + ["MaceImplicitCriticalMultiplier1"] = { affix = "", "+(5-10)% to Critical Damage Bonus", statOrder = { 918 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, }, + ["MaceImplicitLocalDazeBuildup1"] = { affix = "", "40% chance to Daze on Hit", statOrder = { 7439 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2933846633, }, + ["MaceImplicitStunDamageIncrease1"] = { affix = "", "Causes (20-40)% increased Stun Buildup", statOrder = { 985 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 791928121, }, + ["MaceImplicitStunDamageIncrease2"] = { affix = "", "Causes (30-50)% increased Stun Buildup", statOrder = { 985 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 791928121, }, + ["MaceImplicitAlwaysHit1"] = { affix = "", "Always Hits", statOrder = { 1704 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 4126210832, }, + ["MaceImplicitSplashDamage1"] = { affix = "", "Strikes deal Splash Damage", statOrder = { 1067 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3675300253, }, + ["MaceImplicitEnemiesExplodeOnCrit1"] = { affix = "", "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage", statOrder = { 7235 }, level = 1, group = "EnemiesExplodeOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1541903247, }, + ["MaceImplicitLocalCrushOnHit1"] = { affix = "", "Crushes Enemies on Hit", statOrder = { 7184 }, level = 1, group = "LocalCrushOnHit", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 1503146834, }, + ["MaceImplicitWarcryExert1"] = { affix = "", "Warcries Empower an additional Attack", statOrder = { 9887 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1434716233, }, + ["TalismanImplicitFireDamageAndFlammability1"] = { affix = "", "(50-80)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "WeaponImplicitDamageIsFireAndFlammability", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 804511626, }, + ["TalismanImplicitMinionDamage1"] = { affix = "", "Minions deal (30-50)% increased Damage", statOrder = { 1646 }, level = 1, group = "WeaponImplicitMinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 1589917703, }, + ["TalismanImplicitRageOnMeleeHit1"] = { affix = "", "Gain (2-4) Rage on Melee Hit", statOrder = { 6431 }, level = 1, group = "WeaponImplicitRageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2709367754, }, + ["TalismanImplicitLightningDamageAndShockMagnitude1"] = { affix = "", "(15-25)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "WeaponImplicitDamageIsLightningAndShockMagnitude", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 91591709, }, + ["TalismanImplicitMaximumRage1"] = { affix = "", "+(8-12) to Maximum Rage", statOrder = { 9032 }, level = 1, group = "WeaponImplicitMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1181501418, }, + ["TalismanImplicitMarkEffect1"] = { affix = "", "(10-20)% increased Effect of your Mark Skills", statOrder = { 2268 }, level = 1, group = "WeaponImplicitMarkEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 712554801, }, + ["TalismanImplicitAdditionalBlock1"] = { affix = "", "+(10-15)% to Block chance", statOrder = { 2130 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, }, + ["SpearImplicitLocalChanceToMaim1"] = { affix = "", "(15-25)% chance to Maim on Hit", statOrder = { 7320 }, level = 1, group = "LocalChanceToMaim", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2763429652, }, + ["SpearImplicitLocalProjectileSpeed1"] = { affix = "", "(25-35)% increased Projectile Speed with this Weapon", statOrder = { 7335 }, level = 1, group = "LocalIncreasedProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 535217483, }, + ["SpearImplicitDeflectDamagePrevented1"] = { affix = "", "Prevent +(3-7)% of Damage from Deflected Hits", statOrder = { 4541 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3552135623, }, + ["SpearImplicitWeaponRange1"] = { affix = "", "25% increased Melee Strike Range with this weapon", statOrder = { 7131 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 548198834, }, + ["SpearImplicitFasterBleed1"] = { affix = "", "Bleeding you inflict deals Damage (10-20)% faster", statOrder = { 6123 }, level = 1, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHash = 3828375170, }, + ["ClawImplicitLifeGainPerTargetLocal1"] = { affix = "", "Grants 8 Life per Enemy Hit", statOrder = { 974 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHash = 821021828, }, + ["ClawImplicitLocalChanceToBlind1"] = { affix = "", "(15-25)% chance to Blind Enemies on hit", statOrder = { 1937 }, level = 1, group = "BlindingHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2301191210, }, + ["ClawImplicitLocalChanceToPoison1"] = { affix = "", "(15-25)% chance to Poison on Hit with this weapon", statOrder = { 7334 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, }, + ["ClawImplicitManaGainPerTargetLocal1"] = { affix = "", "Grants 8 Mana per Enemy Hit", statOrder = { 1434 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 640052854, }, + ["DaggerImplicitManaLeechLocal1"] = { affix = "", "Leeches 4% of Physical Damage as Mana", statOrder = { 978 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 669069897, }, + ["DaggerImplicitSpellLifeCostPercent1"] = { affix = "", "25% of Spell Mana Cost Converted to Life Cost", statOrder = { 9436 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 3544050945, }, + ["DaggerImplicitBreakArmour1"] = { affix = "", "Breaks (400-500) Armour on Critical Hit", statOrder = { 7146 }, level = 1, group = "LocalBreakArmourOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4270348114, }, + ["FlailImplicitRollCritTwice1"] = { affix = "", "Bifurcates Critical Hits", statOrder = { 1292 }, level = 1, group = "RollCriticalChanceTwice", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1451444093, }, + ["FlailImplicitIgnoreBlock1"] = { affix = "", "Unblockable", statOrder = { 7155 }, level = 1, group = "LocalIgnoreBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1137147997, }, + ["QuarterstaffWeaponRange1"] = { affix = "", "16% increased Melee Strike Range with this weapon", statOrder = { 7131 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 548198834, }, + ["QuarterstaffImplicitAdditionalBlock1"] = { affix = "", "+(12-18)% to Block chance", statOrder = { 2130 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, }, + ["QuarterstaffImplicitDazeChance1"] = { affix = "", "(20-50)% chance to Daze on Hit", statOrder = { 7439 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2933846633, }, + ["BowImplicitLocalChanceToChain1"] = { affix = "", "(20-30)% chance to Chain an additional time", statOrder = { 7134 }, level = 1, group = "LocalAdditionalChainChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1028592286, }, + ["BowImplicitAdditionalArrows1"] = { affix = "", "+50% Surpassing chance to fire an additional Arrow", statOrder = { 5137 }, level = 1, group = "AdditionalArrowChanceCanExceed100%", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2463230181, }, + ["BowImplicitProjectileAttackRange1"] = { affix = "", "50% reduced Projectile Range", statOrder = { 8966 }, level = 1, group = "LocalIncreasedProjectileAttackRange", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3398402065, }, + ["CrossbowImplicitBoltSpeed1"] = { affix = "", "(20-30)% increased Bolt Speed", statOrder = { 1480 }, level = 1, group = "BoltSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1803308202, }, + ["CrossbowImplicitAdditionalAmmo1"] = { affix = "", "Loads an additional bolt", statOrder = { 943 }, level = 1, group = "AdditionalAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1039380318, }, + ["CrossbowImplicitGrenadeProjectiles1"] = { affix = "", "Grenade Skills Fire an additional Projectile", statOrder = { 6501 }, level = 1, group = "GrenadeProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1980802737, }, + ["CrossbowImplicitChanceToPierce1"] = { affix = "", "(20-30)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 1, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2321178454, }, + ["CrossbowImplicitAdditionalBallistaTotem1"] = { affix = "", "+1 to maximum number of Summoned Ballista Totems", statOrder = { 4058 }, level = 1, group = "AdditionalBallistaTotem", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1823942939, }, + ["TrapImplicitCooldownRecovery1"] = { affix = "", "(20-30)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 3044 }, level = 1, group = "TrapCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3417757416, }, + ["BucklerImplicitStunThreshold1"] = { affix = "", "+16 to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, + ["UniqueJewelRadiusMana"] = { affix = "", "1% increased maximum Mana", statOrder = { 872 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, nodeType = 1, tradeHash = 1247628870, }, + ["UniqueJewelRadiusLife"] = { affix = "", "1% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, nodeType = 1, tradeHash = 1809641701, }, + ["UniqueJewelRadiusIncreasedLife"] = { affix = "", "+8 to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, nodeType = 1, tradeHash = 1316656343, }, + ["UniqueJewelRadiusIncreasedMana"] = { affix = "", "+8 to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, nodeType = 1, tradeHash = 1294464552, }, + ["UniqueJewelRadiusIgniteDurationOnSelf"] = { affix = "", "(4-6)% reduced Ignite Duration on you", statOrder = { 996 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, nodeType = 1, tradeHash = 3474941090, }, + ["UniqueJewelRadiusFreezeDurationOnSelf"] = { affix = "", "(4-6)% reduced Freeze Duration on you", statOrder = { 998 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, nodeType = 1, tradeHash = 860443350, }, + ["UniqueJewelRadiusShockDurationOnSelf"] = { affix = "", "(4-6)% reduced Shock duration on you", statOrder = { 999 }, level = 1, group = "ReducedShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 1, tradeHash = 1627878766, }, + ["UniqueJewelRadiusFireResistance"] = { affix = "", "+(2-4)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, nodeType = 1, tradeHash = 2948688907, }, + ["UniqueJewelRadiusColdResistance"] = { affix = "", "+(2-4)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, nodeType = 1, tradeHash = 2884937919, }, + ["UniqueJewelRadiusLightningResistance"] = { affix = "", "+(2-4)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, nodeType = 1, tradeHash = 3994876825, }, + ["UniqueJewelRadiusChaosResistance"] = { affix = "", "+(2-3)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, nodeType = 1, tradeHash = 2264240911, }, + ["UniqueJewelRadiusMaxFireResistance"] = { affix = "", "+1% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, nodeType = 2, tradeHash = 4151994709, }, + ["UniqueJewelRadiusMaxColdResistance"] = { affix = "", "+1% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, nodeType = 2, tradeHash = 1862508014, }, + ["UniqueJewelRadiusMaxLightningResistance"] = { affix = "", "+1% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, nodeType = 2, tradeHash = 2217513089, }, + ["UniqueJewelRadiusMaxChaosResistance"] = { affix = "", "+1% to Maximum Chaos Resistance", statOrder = { 956 }, level = 1, group = "MaximumChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, nodeType = 2, tradeHash = 1731760476, }, + ["UniqueJewelRadiusPercentStrenth"] = { affix = "", "(2-3)% increased Strength", statOrder = { 1080 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, nodeType = 2, tradeHash = 1842384813, }, + ["UniqueJewelRadiusPercentIntelligence"] = { affix = "", "(2-3)% increased Intelligence", statOrder = { 1082 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, nodeType = 2, tradeHash = 40618390, }, + ["UniqueJewelRadiusPercentDexterity"] = { affix = "", "(2-3)% increased Dexterity", statOrder = { 1081 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, nodeType = 2, tradeHash = 2717786748, }, + ["UniqueJewelRadiusSpirit"] = { affix = "", "+(8-12) to Spirit", statOrder = { 873 }, level = 1, group = "JewelSpirit", weightKey = { }, weightVal = { }, modTags = { }, nodeType = 2, tradeHash = 3991877392, }, + ["UniqueJewelRadiusDamageAsFire"] = { affix = "", "Gain (2-4)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 2, tradeHash = 338620903, }, + ["UniqueJewelRadiusDamageAsCold"] = { affix = "", "Gain (2-4)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 2, tradeHash = 833138896, }, + ["UniqueJewelRadiusDamageAsLightning"] = { affix = "", "Gain (2-4)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 2, tradeHash = 852470634, }, + ["UniqueJewelRadiusDamageAsChaos"] = { affix = "", "Gain (2-4)% of Damage as Extra Chaos Damage", statOrder = { 1602 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, nodeType = 2, tradeHash = 2603051299, }, + ["UniqueStrength1"] = { affix = "", "+(30-50) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength2"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength3"] = { affix = "", "+(10-15) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength4"] = { affix = "", "-(20-10) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength5"] = { affix = "", "+(5-15) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength6"] = { affix = "", "+(40-50) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength7"] = { affix = "", "+(20-40) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength8"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength9"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength10"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength11"] = { affix = "", "+(5-10) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength12"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength13"] = { affix = "", "+(10-15) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength14"] = { affix = "", "+(0-10) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength15"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength16"] = { affix = "", "+(10-15) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength17"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength18"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength19"] = { affix = "", "+10 to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength20"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength21"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength22"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength23"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength24"] = { affix = "", "+(15-25) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength25"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength26"] = { affix = "", "+(10-15) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength27"] = { affix = "", "+(10-15) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength28"] = { affix = "", "+(10-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength29"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength30"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength31"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength32"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength33"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength34"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength35"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength36"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength37"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength38"] = { affix = "", "+(15-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength39"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength40"] = { affix = "", "+(8-15) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength41"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength42"] = { affix = "", "+10 to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength43"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 82, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength44"] = { affix = "", "+(25-40) to Strength", statOrder = { 947 }, level = 82, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength45"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength46"] = { affix = "", "+(30-40) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueStrength47"] = { affix = "", "+(15-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["UniqueDexterity1"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity2"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity3"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity4"] = { affix = "", "+10 to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity5"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity6"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity7"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity8"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity9"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity10"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity11"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity12"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity13"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity14"] = { affix = "", "+(0-10) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity15"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity16"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity17"] = { affix = "", "+10 to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity18"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity19"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity20"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity21"] = { affix = "", "+5 to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity22"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity23"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity24"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity25"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity26"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity27"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity28"] = { affix = "", "+(5-15) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity29"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity30"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity31"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity32"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity33"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity34"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity35"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity36"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity37"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity38"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity39"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity40"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity41"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity42"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity43"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueDexterity44"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 82, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["UniqueIntelligence1"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence2"] = { affix = "", "+(10-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence3"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence4"] = { affix = "", "+(5-15) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence5"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence6"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence7"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence8"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence9"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence10"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence11"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence12"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence13"] = { affix = "", "+(10-15) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence14"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence15"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence16"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence17"] = { affix = "", "+(0-10) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence18"] = { affix = "", "+(10-15) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence19"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence20"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence21"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence22"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence23"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence24"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence25"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence26"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence27"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence28"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence29"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence30"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence31"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence32"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence33"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence34"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence35"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence36"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence37"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence38"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence39"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence40"] = { affix = "", "+15 to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence41"] = { affix = "", "+10 to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence42"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 82, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence43"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence44"] = { affix = "", "+(8-15) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence45"] = { affix = "", "+(8-15) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueIntelligence46"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["UniqueAllAttributes1"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["UniqueAllAttributes2"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["UniqueAllAttributes3"] = { affix = "", "+(50-100) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["UniqueAllAttributes4"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["UniqueAllAttributes5"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["UniqueAllAttributes6"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["UniqueAllAttributes7"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["UniqueAllAttributes8"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["UniqueAllAttributes9"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["UniqueAllAttributes10"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["UniqueAllAttributes11"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["UniqueAllAttributes12"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["UniqueAllAttributes13"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["UniqueAllAttributes14"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["UniqueAllAttributes15"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["UniqueAllAttributes16"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["UniqueAllAttributes17"] = { affix = "", "+(7-13) to all Attributes", statOrder = { 946 }, level = 82, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["UniqueAllAttributes18"] = { affix = "", "+(7-13) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["UniqueFireResist1"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist2"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist3"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist4"] = { affix = "", "-(20-10)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist5"] = { affix = "", "+(5-10)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist6"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist7"] = { affix = "", "+(5-15)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist8"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist9"] = { affix = "", "-10% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist10"] = { affix = "", "+(15-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist11"] = { affix = "", "+(0-10)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist12"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist13"] = { affix = "", "+20% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist14"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist15"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist16"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist17"] = { affix = "", "-(15-10)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist18"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist19"] = { affix = "", "-10% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist20"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist21"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist22"] = { affix = "", "+(-30-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist23"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist24"] = { affix = "", "+(-40-40)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist25"] = { affix = "", "+(50-100)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist26"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist27"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist28"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist29"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist30"] = { affix = "", "+(25-35)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist31"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist32"] = { affix = "", "+(5-15)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist33"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist34"] = { affix = "", "+(10-15)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueFireResist35"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["UniqueColdResist1"] = { affix = "", "-(20-10)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist2"] = { affix = "", "+50% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist3"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist4"] = { affix = "", "+(5-10)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist5"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist6"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist7"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist8"] = { affix = "", "+(30-50)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist9"] = { affix = "", "+(5-15)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist10"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist11"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist12"] = { affix = "", "+(10-15)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist13"] = { affix = "", "+(0-10)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist14"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist15"] = { affix = "", "+40% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist16"] = { affix = "", "+(50-75)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist17"] = { affix = "", "+(25-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist18"] = { affix = "", "+(5-10)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist19"] = { affix = "", "+(-30-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist20"] = { affix = "", "+(-40-40)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist21"] = { affix = "", "+(50-100)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist22"] = { affix = "", "-(15-10)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist23"] = { affix = "", "-10% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist24"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist25"] = { affix = "", "+(10-15)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist26"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist27"] = { affix = "", "-15% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist28"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist29"] = { affix = "", "+(25-35)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist30"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist31"] = { affix = "", "+(25-35)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist32"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist33"] = { affix = "", "+(5-15)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueColdResist34"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["UniqueLightningResist1"] = { affix = "", "+(5-10)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist2"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist3"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist4"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist5"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist6"] = { affix = "", "+(30-50)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist7"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist8"] = { affix = "", "+(15-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist9"] = { affix = "", "+(0-10)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist10"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist11"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist12"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist13"] = { affix = "", "-(40-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist14"] = { affix = "", "+(10-15)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist15"] = { affix = "", "+(10-15)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist16"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist17"] = { affix = "", "+(-30-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist18"] = { affix = "", "+(-40-40)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist19"] = { affix = "", "+(50-100)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist20"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist21"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist22"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist23"] = { affix = "", "+(30-50)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist24"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist25"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist26"] = { affix = "", "+(25-35)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist27"] = { affix = "", "+(5-15)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist28"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueLightningResist29"] = { affix = "", "+(1-33)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueAllResistances1"] = { affix = "", "+(25-35)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances2"] = { affix = "", "+(5-15)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances3"] = { affix = "", "-20% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances4"] = { affix = "", "-10% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances5"] = { affix = "", "+(5-15)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances6"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances7"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances8"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances9"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances10"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances11"] = { affix = "", "-30% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances12"] = { affix = "", "-(20-5)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances13"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances14"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances15"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances16"] = { affix = "", "+(5-40)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances17"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances18"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances19"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances20"] = { affix = "", "+(30-40)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances21"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances22"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances23"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances24"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances25"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances26"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueAllResistances27"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["UniqueChaosResist1"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist2"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist3"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist4"] = { affix = "", "+(29-37)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist5"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist6"] = { affix = "", "+(7-17)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist7"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist8"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist9"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist10"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist11"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist12"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist13"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist14"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist15"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist16"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist17"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist18"] = { affix = "", "-(23-3)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist19"] = { affix = "", "-17% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist20"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist21"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist22"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist23"] = { affix = "", "+13% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist24"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist25"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist26"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist27"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist28"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist29"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist30"] = { affix = "", "+(23-29)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist31"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist32"] = { affix = "", "+(23-29)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist33"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist34"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueChaosResist35"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueIncreasedLife1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife2"] = { affix = "", "+1500 to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife3"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife4"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife5"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife6"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife7"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife8"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife9"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife10"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife11"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife12"] = { affix = "", "+100 to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife13"] = { affix = "", "+(40-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife14"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife15"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife16"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife17"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife18"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife19"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife20"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife21"] = { affix = "", "+(0-30) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife22"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife23"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife24"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife25"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife26"] = { affix = "", "+300 to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife27"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife28"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife29"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife30"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife31"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife32"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife33"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife34"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife35"] = { affix = "", "+100 to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife36"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife37"] = { affix = "", "+(50-150) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife38"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife39"] = { affix = "", "+(0-80) to maximum Life", statOrder = { 869 }, level = 81, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife40"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife41"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife42"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife43"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife44"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife45"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife46"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife47"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife48"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife49"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife50"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife51"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife52"] = { affix = "", "+(25-35) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife53"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife54"] = { affix = "", "+100 to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife55"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueIncreasedLife56"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["UniqueMaximumLifeIncrease1"] = { affix = "", "(20-30)% reduced maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, }, + ["UniqueMaximumLifeIncrease2"] = { affix = "", "50% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, }, + ["UniqueMaximumLifeIncrease3"] = { affix = "", "20% reduced maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, }, + ["UniqueMaximumLifeIncrease4"] = { affix = "", "(10-15)% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, }, + ["UniqueMaximumLifeIncrease5"] = { affix = "", "20% reduced maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, }, + ["UniqueMaximumLifeIncrease6"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 870 }, level = 71, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, }, + ["UniqueMaximumLifeIncrease7"] = { affix = "", "(10-20)% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, }, + ["UniqueMaximumLifeIncrease8"] = { affix = "", "(10-20)% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, }, + ["UniqueIncreasedMana1"] = { affix = "", "+(10-20) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana2"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana3"] = { affix = "", "+(50-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana4"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana5"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana6"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana7"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana8"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana9"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana10"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana11"] = { affix = "", "+(0-20) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana12"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana13"] = { affix = "", "+(50-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana14"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana15"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana16"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana17"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana18"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana19"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana20"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana21"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana22"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana23"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana24"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana25"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana26"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana27"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana28"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana29"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana30"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana31"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana32"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana33"] = { affix = "", "+(50-150) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana34"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana35"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana36"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana37"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana38"] = { affix = "", "+(50-80) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana39"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana40"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana41"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana42"] = { affix = "", "+(60-90) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana43"] = { affix = "", "+(70-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana44"] = { affix = "", "+(60-80) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana45"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana46"] = { affix = "", "+(35-45) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana47"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana48"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana49"] = { affix = "", "+(80-120) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana50"] = { affix = "", "+(50-80) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana51"] = { affix = "", "+(50-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueIncreasedMana52"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 871 }, level = 82, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["UniqueMaximumManaIncrease1"] = { affix = "", "(10-15)% increased maximum Mana", statOrder = { 872 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2748665614, }, + ["UniqueMaximumManaIncrease2"] = { affix = "", "25% reduced maximum Mana", statOrder = { 872 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2748665614, }, + ["UniqueMaximumManaIncrease3"] = { affix = "", "(10-15)% reduced maximum Mana", statOrder = { 872 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2748665614, }, + ["UniqueMaximumManaIncrease4"] = { affix = "", "25% reduced maximum Mana", statOrder = { 872 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2748665614, }, + ["UniqueIncreasedPhysicalDamageReductionRating1"] = { affix = "", "+(100-150) to Armour", statOrder = { 863 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 809229260, }, + ["UniqueIncreasedPhysicalDamageReductionRating2"] = { affix = "", "+(100-150) to Armour", statOrder = { 863 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 809229260, }, + ["UniqueIncreasedPhysicalDamageReductionRating3"] = { affix = "", "+(100-150) to Armour", statOrder = { 863 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 809229260, }, + ["UniqueIncreasedPhysicalDamageReductionRating4"] = { affix = "", "+(150-200) to Armour", statOrder = { 863 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 809229260, }, + ["UniqueIncreasedEvasionRating1"] = { affix = "", "+(75-125) to Evasion Rating", statOrder = { 865 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, }, + ["UniqueIncreasedEvasionRating2"] = { affix = "", "+(40-50) to Evasion Rating", statOrder = { 865 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, }, + ["UniqueIncreasedEvasionRating3"] = { affix = "", "+(100-150) to Evasion Rating", statOrder = { 865 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, }, + ["UniqueIncreasedEvasionRating4"] = { affix = "", "+100 to Evasion Rating", statOrder = { 865 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, }, + ["UniqueIncreasedEvasionRating5"] = { affix = "", "+(300-600) to Evasion Rating", statOrder = { 865 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, }, + ["UniqueIncreasedEnergyShield1"] = { affix = "", "+(50-100) to maximum Energy Shield", statOrder = { 867 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, }, + ["UniqueIncreasedEnergyShield2"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 867 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, }, + ["UniqueIncreasedEnergyShield3"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 867 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, }, + ["UniqueIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(25-50)% increased Armour", statOrder = { 864 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 2866361420, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRating1"] = { affix = "", "+(0-40) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 3484657501, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRating2"] = { affix = "", "+(40-60) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 3484657501, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRating3"] = { affix = "", "+(15-25) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 3484657501, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRating4"] = { affix = "", "+(50-70) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 3484657501, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRating5"] = { affix = "", "+20 to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 3484657501, }, + ["UniqueLocalIncreasedEvasionRating1"] = { affix = "", "+(30-50) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, }, + ["UniqueLocalIncreasedEvasionRating2"] = { affix = "", "+(50-70) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, }, + ["UniqueLocalIncreasedEvasionRating3"] = { affix = "", "+(0-30) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, }, + ["UniqueLocalIncreasedEvasionRating4"] = { affix = "", "+(15-25) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, }, + ["UniqueLocalIncreasedEvasionRating5"] = { affix = "", "+(20-30) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, }, + ["UniqueLocalIncreasedEvasionRating6"] = { affix = "", "+(20-30) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, }, + ["UniqueLocalIncreasedEnergyShield1"] = { affix = "", "+(10-20) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, + ["UniqueLocalIncreasedEnergyShield2"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, + ["UniqueLocalIncreasedEnergyShield3"] = { affix = "", "+100 to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, + ["UniqueLocalIncreasedEnergyShield4"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, + ["UniqueLocalIncreasedEnergyShield5"] = { affix = "", "+(0-20) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, + ["UniqueLocalIncreasedEnergyShield6"] = { affix = "", "+(10-20) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, + ["UniqueLocalIncreasedEnergyShield7"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, + ["UniqueLocalIncreasedEnergyShield8"] = { affix = "", "+(80-120) to maximum Energy Shield", statOrder = { 833 }, level = 66, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, + ["UniqueLocalIncreasedEnergyShield9"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 833 }, level = 80, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, + ["UniqueLocalIncreasedEnergyShield10"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, + ["UniqueLocalIncreasedEnergyShield11"] = { affix = "", "+20 to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, + ["UniqueLocalIncreasedEnergyShield12"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, + ["UniqueLocalIncreasedEnergyShield13"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, + ["UniqueLocalIncreasedEnergyShield14"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, + ["UniqueLocalIncreasedEnergyShield15"] = { affix = "", "+(60-100) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, + ["UniqueLocalIncreasedEnergyShield16"] = { affix = "", "+(100-200) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, + ["UniqueLocalIncreasedEnergyShield17"] = { affix = "", "+(75-150) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, + ["UniqueLocalIncreasedEnergyShield18"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, + ["UniqueLocalBaseEvasionRatingAndEnergyShield1"] = { affix = "", "+(60-100) to Evasion Rating", "+(30-50) to maximum Energy Shield", statOrder = { 832, 833 }, level = 70, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, }, + ["UniqueLocalBaseEvasionRatingAndEnergyShield2"] = { affix = "", "+(20-25) to Evasion Rating", "+(10-15) to maximum Energy Shield", statOrder = { 832, 833 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(60-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent2"] = { affix = "", "(100-150)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent3"] = { affix = "", "(700-800)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent4"] = { affix = "", "(50-80)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent5"] = { affix = "", "(30-60)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent6"] = { affix = "", "(60-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent7"] = { affix = "", "(50-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent8"] = { affix = "", "(50-80)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent9"] = { affix = "", "(30-50)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent10"] = { affix = "", "(50-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent11"] = { affix = "", "(80-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent12"] = { affix = "", "(400-500)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent13"] = { affix = "", "(50-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent14"] = { affix = "", "(50-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent15"] = { affix = "", "(100-150)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent16"] = { affix = "", "(100-150)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent17"] = { affix = "", "(60-80)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent18"] = { affix = "", "(100-150)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent19"] = { affix = "", "(120-160)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent20"] = { affix = "", "(150-200)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent21"] = { affix = "", "(60-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent22"] = { affix = "", "(60-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent23"] = { affix = "", "(300-400)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent24"] = { affix = "", "(200-300)% increased Armour", statOrder = { 834 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent25"] = { affix = "", "(60-120)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent26"] = { affix = "", "(80-120)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent27"] = { affix = "", "(60-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent28"] = { affix = "", "(100-150)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent29"] = { affix = "", "(80-120)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent30"] = { affix = "", "(150-200)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueLocalIncreasedEvasionRatingPercent1"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent2"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent3"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent4"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent5"] = { affix = "", "50% reduced Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent6"] = { affix = "", "(30-50)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent7"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent8"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent9"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent10"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent11"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent12"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent13"] = { affix = "", "(100-140)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent14"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent15"] = { affix = "", "(80-120)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent16"] = { affix = "", "(150-200)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent17"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent18"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent19"] = { affix = "", "(250-300)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent20"] = { affix = "", "(50-100)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent21"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent22"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent23"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent24"] = { affix = "", "(70-100)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent25"] = { affix = "", "(100-300)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent26"] = { affix = "", "(100-200)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent27"] = { affix = "", "(50-150)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent28"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent29"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent30"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent31"] = { affix = "", "(50-70)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent32"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent33"] = { affix = "", "(200-250)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEvasionRatingPercent34"] = { affix = "", "(80-120)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueLocalIncreasedEnergyShieldPercent1"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent2"] = { affix = "", "(50-80)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent3"] = { affix = "", "(50-70)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent4"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent5"] = { affix = "", "(40-60)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent6"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent7"] = { affix = "", "(30-50)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent8"] = { affix = "", "(50-80)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent9"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent10"] = { affix = "", "(50-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent11"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent12"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent13"] = { affix = "", "(100-200)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent14"] = { affix = "", "(50-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent15"] = { affix = "", "(50-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent16"] = { affix = "", "(100-140)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent17"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent18"] = { affix = "", "(120-160)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent19"] = { affix = "", "(50-70)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent20"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent21"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent22"] = { affix = "", "(70-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent23"] = { affix = "", "(100-140)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent24"] = { affix = "", "(80-120)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent25"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent26"] = { affix = "", "(100-140)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedEnergyShieldPercent27"] = { affix = "", "(150-200)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueLocalIncreasedArmourAndEvasion1"] = { affix = "", "(40-60)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion2"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion3"] = { affix = "", "(30-50)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion4"] = { affix = "", "(80-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion5"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion6"] = { affix = "", "(50-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion7"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion8"] = { affix = "", "(50-80)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion9"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion10"] = { affix = "", "(20-30)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion11"] = { affix = "", "(60-80)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion12"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion13"] = { affix = "", "(50-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion14"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion15"] = { affix = "", "(50-70)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion16"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion17"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion18"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion19"] = { affix = "", "(50-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion20"] = { affix = "", "(60-80)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion21"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion22"] = { affix = "", "(200-300)% increased Armour and Evasion", statOrder = { 837 }, level = 66, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion23"] = { affix = "", "(200-300)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion24"] = { affix = "", "(300-450)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion25"] = { affix = "", "50% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion26"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion27"] = { affix = "", "(600-800)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion28"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion29"] = { affix = "", "(100-200)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion30"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEvasion31"] = { affix = "", "(80-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueLocalIncreasedArmourAndEnergyShield1"] = { affix = "", "(30-60)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield2"] = { affix = "", "(30-50)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield3"] = { affix = "", "(30-50)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield4"] = { affix = "", "(40-60)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield5"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield6"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield7"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield8"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield9"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield10"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield11"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield12"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield13"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield14"] = { affix = "", "(60-100)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield15"] = { affix = "", "(60-100)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield16"] = { affix = "", "(333-666)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield17"] = { affix = "", "(150-250)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield18"] = { affix = "", "(70-130)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield19"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield20"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield21"] = { affix = "", "(200-300)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield22"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield23"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield24"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedArmourAndEnergyShield25"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueLocalIncreasedEvasionAndEnergyShield1"] = { affix = "", "(30-50)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, + ["UniqueLocalIncreasedEvasionAndEnergyShield2"] = { affix = "", "(30-60)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, + ["UniqueLocalIncreasedEvasionAndEnergyShield3"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, + ["UniqueLocalIncreasedEvasionAndEnergyShield4"] = { affix = "", "(30-50)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, + ["UniqueLocalIncreasedEvasionAndEnergyShield5"] = { affix = "", "(50-80)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, + ["UniqueLocalIncreasedEvasionAndEnergyShield6"] = { affix = "", "(30-50)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, + ["UniqueLocalIncreasedEvasionAndEnergyShield7"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, + ["UniqueLocalIncreasedEvasionAndEnergyShield8"] = { affix = "", "(40-60)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, + ["UniqueLocalIncreasedEvasionAndEnergyShield9"] = { affix = "", "(60-80)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, + ["UniqueLocalIncreasedEvasionAndEnergyShield10"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, + ["UniqueLocalIncreasedEvasionAndEnergyShield11"] = { affix = "", "(60-80)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, + ["UniqueLocalIncreasedEvasionAndEnergyShield12"] = { affix = "", "(400-500)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 70, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, + ["UniqueLocalIncreasedEvasionAndEnergyShield13"] = { affix = "", "(60-120)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, + ["UniqueLocalIncreasedEvasionAndEnergyShield14"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, + ["UniqueLocalIncreasedEvasionAndEnergyShield15"] = { affix = "", "(60-100)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, + ["UniqueLocalIncreasedEvasionAndEnergyShield16"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, + ["UniqueLocalIncreasedEvasionAndEnergyShield17"] = { affix = "", "(50-70)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, + ["UniqueLocalIncreasedEvasionAndEnergyShield18"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, + ["UniqueLocalIncreasedEvasionAndEnergyShield19"] = { affix = "", "(1-111)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, + ["UniqueLocalArmourAndEvasionAndEnergyShield1"] = { affix = "", "(300-400)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHash = 3523867985, }, + ["UniqueLocalArmourAndEvasionAndEnergyShield2"] = { affix = "", "(150-200)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHash = 3523867985, }, + ["UniqueLocalArmourAndEvasionAndEnergyShield3"] = { affix = "", "(100-150)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHash = 3523867985, }, + ["UniqueLocalArmourAndEvasionAndEnergyShield4"] = { affix = "", "(100-150)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHash = 3523867985, }, + ["UniqueReducedLocalAttributeRequirements1"] = { affix = "", "25% reduced Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, }, + ["UniqueReducedLocalAttributeRequirements2"] = { affix = "", "25% reduced Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, }, + ["UniqueReducedLocalAttributeRequirements3"] = { affix = "", "50% increased Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, }, + ["UniqueReducedLocalAttributeRequirements4"] = { affix = "", "50% increased Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, }, + ["UniqueReducedLocalAttributeRequirements5"] = { affix = "", "100% increased Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, }, + ["UniqueStunThreshold1"] = { affix = "", "+(40-60) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, + ["UniqueStunThreshold2"] = { affix = "", "+(30-50) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, + ["UniqueStunThreshold3"] = { affix = "", "+(200-300) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, + ["UniqueStunThreshold4"] = { affix = "", "+(75-150) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, + ["UniqueStunThreshold5"] = { affix = "", "+(50-70) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, + ["UniqueStunThreshold6"] = { affix = "", "+(60-100) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, + ["UniqueStunThreshold7"] = { affix = "", "+(60-80) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, + ["UniqueStunThreshold8"] = { affix = "", "+(60-80) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, + ["UniqueStunThreshold9"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, + ["UniqueStunThreshold10"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, + ["UniqueStunThreshold11"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, + ["UniqueStunThreshold12"] = { affix = "", "+(150-200) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, + ["UniqueStunThreshold13"] = { affix = "", "+2500 to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, + ["UniqueStunThreshold14"] = { affix = "", "+(60-100) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, + ["UniqueStunThreshold15"] = { affix = "", "+(60-80) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, + ["UniqueStunThreshold16"] = { affix = "", "+(60-80) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, + ["UniqueStunThreshold17"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, + ["UniqueStunThreshold18"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, + ["UniqueStunThreshold19"] = { affix = "", "+(150-200) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, + ["UniqueStunThreshold20"] = { affix = "", "+(200-300) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, + ["UniqueMovementVelocity1"] = { affix = "", "10% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity2"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity3"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity4"] = { affix = "", "10% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity5"] = { affix = "", "15% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity6"] = { affix = "", "10% reduced Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity7"] = { affix = "", "10% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity8"] = { affix = "", "20% reduced Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity9"] = { affix = "", "10% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity10"] = { affix = "", "(15-25)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity11"] = { affix = "", "20% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity12"] = { affix = "", "20% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity13"] = { affix = "", "15% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity14"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity15"] = { affix = "", "20% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity16"] = { affix = "", "15% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity17"] = { affix = "", "(15-20)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity18"] = { affix = "", "10% reduced Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity19"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity20"] = { affix = "", "20% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity21"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity22"] = { affix = "", "(15-30)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity23"] = { affix = "", "10% reduced Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity24"] = { affix = "", "10% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity25"] = { affix = "", "(5-15)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity26"] = { affix = "", "5% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity27"] = { affix = "", "30% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueMovementVelocity28"] = { affix = "", "15% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["UniqueCannotSprint1"] = { affix = "", "You cannot Sprint", statOrder = { 4948 }, level = 1, group = "CannotSprint", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1536107934, }, + ["UniqueAttackerTakesDamage1"] = { affix = "", "(4-5) to (8-10) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, }, + ["UniqueAttackerTakesDamage2"] = { affix = "", "(3-5) to (6-10) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, }, + ["UniqueAttackerTakesDamage3"] = { affix = "", "(15-20) to (25-30) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, }, + ["UniqueAttackerTakesDamage4"] = { affix = "", "(10-15) to (20-25) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, }, + ["UniqueAttackerTakesDamage5"] = { affix = "", "(10-15) to (20-25) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, }, + ["UniqueAttackerTakesDamage6"] = { affix = "", "(25-30) to (35-40) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, }, + ["UniqueAttackerTakesDamage7"] = { affix = "", "(24-35) to (35-53) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, }, + ["UniqueAttackerTakesDamage8"] = { affix = "", "(20-31) to (31-49) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, }, + ["UniqueAddedPhysicalDamage1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, }, + ["UniqueAddedPhysicalDamage2"] = { affix = "", "Adds (3-5) to (8-10) Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, }, + ["UniqueAddedPhysicalDamage3"] = { affix = "", "Adds (2-3) to (5-6) Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, }, + ["UniqueAddedPhysicalDamage4"] = { affix = "", "Adds (6-10) to (12-16) Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, }, + ["UniqueAddedPhysicalDamage5"] = { affix = "", "Adds (7-11) to (14-20) Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, }, + ["UniqueAddedPhysicalDamage6"] = { affix = "", "Adds (6-10) to (13-17) Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, }, + ["UniqueAddedPhysicalDamage7"] = { affix = "", "Adds (5-7) to (9-13) Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, }, + ["UniqueAddedPhysicalDamage8"] = { affix = "", "Adds (5-7) to (9-13) Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, }, + ["UniqueAddedFireDamage1"] = { affix = "", "Adds (3-5) to (6-9) Fire damage to Attacks", statOrder = { 844 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, }, + ["UniqueAddedColdDamage1"] = { affix = "", "Adds (3-5) to (6-8) Cold damage to Attacks", statOrder = { 845 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, }, + ["UniqueAddedColdDamage2"] = { affix = "", "Adds (3-4) to (5-8) Cold damage to Attacks", statOrder = { 845 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, }, + ["UniqueAddedColdDamage3"] = { affix = "", "Adds (13-20) to (21-31) Cold damage to Attacks", statOrder = { 845 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, }, + ["UniqueAddedLightningDamage1"] = { affix = "", "Adds 1 to (30-50) Lightning damage to Attacks", statOrder = { 846 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, }, + ["UniqueAddedLightningDamage2UNUSED"] = { affix = "", "Adds 1 to (60-100) Lightning damage to Attacks", statOrder = { 846 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, }, + ["UniqueAddedLightningDamage3"] = { affix = "", "Adds 1 to (30-50) Lightning damage to Attacks", statOrder = { 846 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, }, + ["UniqueAddedChaosDamage1"] = { affix = "", "Adds (4-6) to (8-10) Chaos Damage to Attacks", statOrder = { 1225 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 674553446, }, + ["UniqueAddedChaosDamage2"] = { affix = "", "Adds (13-19) to (20-30) Chaos Damage to Attacks", statOrder = { 1225 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 674553446, }, + ["UniqueAddedChaosDamage3"] = { affix = "", "Adds (5-8) to (10-12) Chaos Damage to Attacks", statOrder = { 1225 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 674553446, }, + ["UniqueAddedChaosDamage4"] = { affix = "", "Adds (35-44) to (50-62) Chaos Damage to Attacks", statOrder = { 1225 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 674553446, }, + ["UniqueLocalAddedPhysicalDamage1"] = { affix = "", "Adds (4-6) to (7-10) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage2"] = { affix = "", "Adds (8-12) to (16-18) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage3"] = { affix = "", "Adds (2-3) to (6-8) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage4"] = { affix = "", "Adds (8-12) to (16-20) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage5"] = { affix = "", "Adds (10-14) to (16-20) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage6"] = { affix = "", "Adds (4-6) to (8-10) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage7"] = { affix = "", "Adds (5-7) to (10-12) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage8"] = { affix = "", "Adds (12-15) to (22-25) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage9"] = { affix = "", "Adds (18-22) to (24-28) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage10"] = { affix = "", "Adds (13-15) to (22-25) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage11"] = { affix = "", "Adds (16-20) to (23-27) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage12"] = { affix = "", "Adds (58-65) to (102-110) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage13"] = { affix = "", "Adds (30-36) to (75-81) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage14"] = { affix = "", "Adds (40-48) to (65-72) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage15"] = { affix = "", "Adds (25-35) to (40-50) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage16"] = { affix = "", "Adds (11-15) to (18-24) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage17"] = { affix = "", "Adds (39-48) to (69-79) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage18"] = { affix = "", "Adds (21-26) to (25-31) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage19"] = { affix = "", "Adds (13-17) to (22-28) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage20"] = { affix = "", "Adds (14-26) to (27-32) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage21"] = { affix = "", "Adds (14-18) to (30-36) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage22"] = { affix = "", "Adds (10-15) to (21-26) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage23"] = { affix = "", "Adds (40-52) to (71-82) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage24"] = { affix = "", "Adds (14-21) to (25-37) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage25"] = { affix = "", "Adds (23-30) to (35-55) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage26"] = { affix = "", "Adds (35-47) to (53-79) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedPhysicalDamage27"] = { affix = "", "Adds (16-20) to (23-27) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueLocalAddedFireDamage1"] = { affix = "", "Adds (33-41) to (47-53) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, }, + ["UniqueLocalAddedFireDamage2"] = { affix = "", "Adds (4-6) to (8-10) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, }, + ["UniqueLocalAddedFireDamage3"] = { affix = "", "Adds (25-32) to (40-50) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, }, + ["UniqueLocalAddedFireDamage4"] = { affix = "", "Adds (15-21) to (26-32) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, }, + ["UniqueLocalAddedFireDamage5"] = { affix = "", "Adds (76-98) to (126-193) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, }, + ["UniqueLocalAddedFireDamage6"] = { affix = "", "Adds (71-93) to (107-168) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, }, + ["UniqueLocalAddedFireDamage7"] = { affix = "", "Adds (503-589) to (647-713) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, }, + ["UniqueLocalAddedFireDamage8"] = { affix = "", "Adds (83-97) to (123-153) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, }, + ["UniqueLocalAddedColdDamage1"] = { affix = "", "Adds (8-10) to (15-18) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, }, + ["UniqueLocalAddedColdDamage2"] = { affix = "", "Adds (8-12) to (16-20) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, }, + ["UniqueLocalAddedColdDamage3"] = { affix = "", "Adds (12-16) to (22-25) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, }, + ["UniqueLocalAddedColdDamage4"] = { affix = "", "Adds (8-10) to (13-15) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, }, + ["UniqueLocalAddedColdDamage5"] = { affix = "", "Adds (6-9) to (10-15) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, }, + ["UniqueLocalAddedColdDamage6"] = { affix = "", "Adds (13-18) to (24-29) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, }, + ["UniqueLocalAddedColdDamage7"] = { affix = "", "Adds (24-31) to (36-46) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, }, + ["UniqueLocalAddedLightningDamage1"] = { affix = "", "Adds 1 to (80-120) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, + ["UniqueLocalAddedLightningDamage2"] = { affix = "", "Adds 1 to (40-45) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, + ["UniqueLocalAddedLightningDamage3"] = { affix = "", "Adds 1 to (50-55) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, + ["UniqueLocalAddedLightningDamage4"] = { affix = "", "Adds 1 to (60-80) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, + ["UniqueLocalAddedLightningDamage5"] = { affix = "", "Adds 1 to (19-29) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, + ["UniqueLocalAddedLightningDamage6"] = { affix = "", "Adds 1 to (300-500) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, + ["UniqueLocalAddedLightningDamage7"] = { affix = "", "Adds 1 to (133-247) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, + ["UniqueLocalAddedLightningDamage8"] = { affix = "", "Adds 1 to (193-207) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, + ["UniqueLocalAddedLightningDamage9"] = { affix = "", "Adds (1-5) to (66-90) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, + ["UniqueLocalAddedLightningDamage10"] = { affix = "", "Adds 1 to (110-115) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, + ["UniqueLocalChaosDamage1"] = { affix = "", "Adds (25-36) to (44-55) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, + ["UniqueLocalChaosDamage2"] = { affix = "", "Adds (167-201) to (267-333) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, + ["UniqueNearbyAlliesAddedFireDamage1"] = { affix = "", "Allies in your Presence deal (15-23) to (28-35) added Attack Fire Damage", statOrder = { 883 }, level = 82, group = "AlliesInPresenceAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 849987426, }, + ["UniqueNearbyAlliesAddedColdDamage1"] = { affix = "", "Allies in your Presence deal (15-23) to (28-35) added Attack Cold Damage", statOrder = { 884 }, level = 82, group = "AlliesInPresenceAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2347036682, }, + ["UniqueNearbyAlliesAddedLightningDamage1"] = { affix = "", "Allies in your Presence deal 1 to (56-70) added Attack Lightning Damage", statOrder = { 885 }, level = 82, group = "AlliesInPresenceAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2854751904, }, + ["UniqueIncreasedPhysicalDamagePercent1"] = { affix = "", "(10-20)% increased Global Physical Damage", statOrder = { 1122 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1310194496, }, + ["UniqueLocalIncreasedPhysicalDamagePercent1"] = { affix = "", "(200-300)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, + ["UniqueLocalIncreasedPhysicalDamagePercent2"] = { affix = "", "(100-150)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, + ["UniqueLocalIncreasedPhysicalDamagePercent3"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, + ["UniqueLocalIncreasedPhysicalDamagePercent4"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, + ["UniqueLocalIncreasedPhysicalDamagePercent5"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, + ["UniqueLocalIncreasedPhysicalDamagePercent6"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, + ["UniqueLocalIncreasedPhysicalDamagePercent7"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, + ["UniqueLocalIncreasedPhysicalDamagePercent8"] = { affix = "", "(100-150)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, + ["UniqueLocalIncreasedPhysicalDamagePercent9"] = { affix = "", "(300-350)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, + ["UniqueLocalIncreasedPhysicalDamagePercent10"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, + ["UniqueLocalIncreasedPhysicalDamagePercent11"] = { affix = "", "(250-350)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, + ["UniqueLocalIncreasedPhysicalDamagePercent12"] = { affix = "", "(150-200)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, + ["UniqueLocalIncreasedPhysicalDamagePercent13"] = { affix = "", "(120-150)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, + ["UniqueLocalIncreasedPhysicalDamagePercent14"] = { affix = "", "(150-240)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, + ["UniqueLocalIncreasedPhysicalDamagePercent16"] = { affix = "", "(600-700)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, + ["UniqueLocalIncreasedPhysicalDamagePercent17"] = { affix = "", "(70-100)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, + ["UniqueLocalIncreasedPhysicalDamagePercent18"] = { affix = "", "(90-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, + ["UniqueLocalIncreasedPhysicalDamagePercent19"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, + ["UniqueLocalIncreasedPhysicalDamagePercent20"] = { affix = "", "(100-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, + ["UniqueNearbyAlliesAllDamage1"] = { affix = "", "Allies in your Presence deal 50% increased Damage", statOrder = { 881 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1798257884, }, + ["UniqueSpellDamageOnWeapon1"] = { affix = "", "(20-40)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, + ["UniqueSpellDamageOnWeapon2"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, + ["UniqueSpellDamageOnWeapon3"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, + ["UniqueSpellDamageOnWeapon4"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, + ["UniqueSpellDamageOnWeapon5"] = { affix = "", "(40-50)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, + ["UniqueSpellDamageOnWeapon6"] = { affix = "", "(60-100)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, + ["UniqueSpellDamageOnWeapon7"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, + ["UniqueSpellDamageOnWeapon8"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, + ["UniqueSpellDamageOnWeapon9"] = { affix = "", "(20-40)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, + ["UniqueSpellDamageOnWeapon10"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, + ["UniqueSpellDamageOnWeapon11"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, + ["UniqueFireDamageOnWeapon1"] = { affix = "", "(80-120)% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamageWeaponPrefix", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, }, + ["UniqueColdDamageOnWeapon1"] = { affix = "", "(80-120)% increased Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamageWeaponPrefix", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, }, + ["UniqueLightningDamageOnWeapon1"] = { affix = "", "(80-120)% increased Lightning Damage", statOrder = { 857 }, level = 1, group = "LightningDamageWeaponPrefix", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, }, + ["UniqueGlobalSpellGemsLevel1"] = { affix = "", "+(1-3) to Level of all Spell Skills", statOrder = { 922 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHash = 124131830, }, + ["UniqueGlobalSpellGemsLevel2"] = { affix = "", "+3 to Level of all Spell Skills", statOrder = { 922 }, level = 82, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHash = 124131830, }, + ["UniqueGlobalFireGemLevel1"] = { affix = "", "+(1-4) to Level of all Fire Skills", statOrder = { 6165 }, level = 1, group = "GlobalFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHash = 599749213, }, + ["UniqueGlobalLightningGemLevel1"] = { affix = "", "+1 to Level of all Lightning Skills", statOrder = { 7097 }, level = 1, group = "GlobalLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHash = 1147690586, }, + ["UniqueGlobalLightningGemLevel2"] = { affix = "", "+(2-4) to Level of all Lightning Skills", statOrder = { 7097 }, level = 1, group = "GlobalLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHash = 1147690586, }, + ["UniqueGlobalElementalGemLevel1"] = { affix = "", "+(2-4) to Level of all Elemental Skills", statOrder = { 5899 }, level = 1, group = "GlobalElementalGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 2901213448, }, + ["UniqueGlobalMinionSpellSkillGemLevel1"] = { affix = "", "+(1-2) to Level of all Minion Skills", statOrder = { 931 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHash = 2162097452, }, + ["UniqueGlobalMinionSpellSkillGemLevel2"] = { affix = "", "+(2-3) to Level of all Minion Skills", statOrder = { 931 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHash = 2162097452, }, + ["UniqueGlobalCurseGemLevel1"] = { affix = "", "+(1-2) to Level of all Curse Skills", statOrder = { 5540 }, level = 1, group = "GlobalCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 805298720, }, + ["UniqueGlobalIncreaseMeleeSkillGemLevel1"] = { affix = "", "+(2-3) to Level of all Melee Skills", statOrder = { 928 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 9187492, }, + ["UniqueLifeRegeneration1"] = { affix = "", "(10-20) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueLifeRegeneration2"] = { affix = "", "(7-12) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueLifeRegeneration3"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueLifeRegeneration4"] = { affix = "", "(3-6) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueLifeRegeneration5"] = { affix = "", "(0-6) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueLifeRegeneration6"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueLifeRegeneration7"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueLifeRegeneration8"] = { affix = "", "(20-25) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueLifeRegeneration9"] = { affix = "", "(3.1-6) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueLifeRegeneration10"] = { affix = "", "(15-25) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueLifeRegeneration11"] = { affix = "", "(3-5) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueLifeRegeneration12"] = { affix = "", "(6-10) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueLifeRegeneration13"] = { affix = "", "(3-6) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueLifeRegeneration14"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueLifeRegeneration15"] = { affix = "", "(3-5) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueLifeRegeneration16"] = { affix = "", "(30-60) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueLifeRegeneration17"] = { affix = "", "(10-20) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueLifeRegeneration18"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueLifeRegeneration19"] = { affix = "", "(8-12) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueLifeRegeneration20"] = { affix = "", "(8-12) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueLifeRegeneration21"] = { affix = "", "(5-10) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueLifeRegeneration22"] = { affix = "", "(25-35) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueLifeRegeneration23"] = { affix = "", "(15-30) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueLifeRegeneration24"] = { affix = "", "5 Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["UniqueManaRegeneration1"] = { affix = "", "(10-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration2"] = { affix = "", "(15-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration3"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration4"] = { affix = "", "100% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration5"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration6"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration7"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration8"] = { affix = "", "(50-100)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration9"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration10"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration11"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration12"] = { affix = "", "50% reduced Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration13"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration14"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration15"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration16"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration17"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration18"] = { affix = "", "(25-35)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 40, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration19"] = { affix = "", "(25-35)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 40, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration20"] = { affix = "", "25% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration21"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration22"] = { affix = "", "(40-60)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration23"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration24"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration25"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration26"] = { affix = "", "(15-25)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration27"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration28"] = { affix = "", "40% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration29"] = { affix = "", "50% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration30"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueManaRegeneration31"] = { affix = "", "(-30-30)% reduced Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["UniqueLifeLeech1"] = { affix = "", "Leech 5% of Physical Attack Damage as Life", statOrder = { 971 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 2557965901, }, + ["UniqueLifeLeechLocal1"] = { affix = "", "Leeches (5-8)% of Physical Damage as Life", statOrder = { 972 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, }, + ["UniqueLifeLeechLocal2"] = { affix = "", "Leeches 10% of Physical Damage as Life", statOrder = { 972 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, }, + ["UniqueLifeLeechLocal3"] = { affix = "", "Leeches (10-20)% of Physical Damage as Life", statOrder = { 972 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, }, + ["UniqueManaLeechLocal1"] = { affix = "", "Leeches (4-7)% of Physical Damage as Mana", statOrder = { 978 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 669069897, }, + ["UniqueLifeGainedFromEnemyDeath1"] = { affix = "", "Gain 3 Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, + ["UniqueLifeGainedFromEnemyDeath2"] = { affix = "", "Gain 10 Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, + ["UniqueLifeGainedFromEnemyDeath3"] = { affix = "", "Gain (7-10) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, + ["UniqueLifeGainedFromEnemyDeath4"] = { affix = "", "Gain (20-30) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, + ["UniqueLifeGainedFromEnemyDeath5"] = { affix = "", "Gain (20-30) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, + ["UniqueLifeGainedFromEnemyDeath6"] = { affix = "", "Gain (10-20) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, + ["UniqueLifeGainedFromEnemyDeath7"] = { affix = "", "Gain (10-15) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, + ["UniqueLifeGainedFromEnemyDeath8"] = { affix = "", "Gain 30 Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, + ["UniqueLifeGainedFromEnemyDeath9"] = { affix = "", "Gain (5-10) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, + ["UniqueLifeGainedFromEnemyDeath10"] = { affix = "", "Lose 10 Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, + ["UniqueLifeGainedFromEnemyDeath11"] = { affix = "", "Gain (30-50) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, + ["UniqueManaGainedFromEnemyDeath1"] = { affix = "", "Lose 3 Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, + ["UniqueManaGainedFromEnemyDeath2"] = { affix = "", "Gain (1-10) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, + ["UniqueManaGainedFromEnemyDeath3"] = { affix = "", "Gain 10 Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, + ["UniqueManaGainedFromEnemyDeath4"] = { affix = "", "Gain (4-6) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, + ["UniqueManaGainedFromEnemyDeath5"] = { affix = "", "Gain (20-30) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, + ["UniqueManaGainedFromEnemyDeath6"] = { affix = "", "Gain (12-18) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, + ["UniqueManaGainedFromEnemyDeath7"] = { affix = "", "Gain 5 Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, + ["UniqueManaGainedFromEnemyDeath8"] = { affix = "", "Gain (25-35) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, + ["UniqueManaGainedFromEnemyDeath9"] = { affix = "", "Gain (10-15) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, + ["UniqueManaGainedFromEnemyDeath10"] = { affix = "", "Gain (25-35) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, + ["UniqueManaGainedFromEnemyDeath11"] = { affix = "", "Gain (10-15) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, + ["UniqueLifeGainPerTarget1"] = { affix = "", "Gain 25 Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, }, + ["UniqueLifeGainPerTarget2"] = { affix = "", "Gain 5 Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, }, + ["UniqueManaGainPerTarget1"] = { affix = "", "Gain 15 Mana per Enemy Hit with Attacks", statOrder = { 1433 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 820939409, }, + ["UniqueIncreasedAttackSpeed1"] = { affix = "", "(4-6)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, + ["UniqueIncreasedAttackSpeed2"] = { affix = "", "(4-8)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, + ["UniqueIncreasedAttackSpeed3"] = { affix = "", "5% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, + ["UniqueIncreasedAttackSpeed4"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, + ["UniqueIncreasedAttackSpeed5"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, + ["UniqueIncreasedAttackSpeed6"] = { affix = "", "(10-15)% reduced Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, + ["UniqueIncreasedAttackSpeed7"] = { affix = "", "5% reduced Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, + ["UniqueIncreasedAttackSpeed8"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, + ["UniqueIncreasedAttackSpeed9"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, + ["UniqueIncreasedAttackSpeed10"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, + ["UniqueIncreasedAttackSpeed11"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, + ["UniqueIncreasedAttackSpeed13"] = { affix = "", "(1-11)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, + ["UniqueIncreasedAttackSpeed14"] = { affix = "", "35% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueIncreasedAttackSpeed15"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, + ["UniqueLocalIncreasedAttackSpeed1"] = { affix = "", "10% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed2"] = { affix = "", "100% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed3"] = { affix = "", "(15-30)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed4"] = { affix = "", "10% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed5"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed6"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed7"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed8"] = { affix = "", "(30-40)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed9"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed10"] = { affix = "", "(5-30)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed11"] = { affix = "", "(20-30)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed12"] = { affix = "", "20% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed13"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed14"] = { affix = "", "10% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed15"] = { affix = "", "50% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed16"] = { affix = "", "(10-15)% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed17"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed18"] = { affix = "", "10% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed19"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed20"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed21"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed22"] = { affix = "", "10% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed23"] = { affix = "", "(7-16)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed24"] = { affix = "", "(7-13)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed25"] = { affix = "", "(6-12)% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed26"] = { affix = "", "(15-20)% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueLocalIncreasedAttackSpeed27"] = { affix = "", "(10-16)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniqueNearbyAlliesIncreasedAttackSpeed1"] = { affix = "", "Allies in your Presence have (10-20)% increased Attack Speed", statOrder = { 893 }, level = 1, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1998951374, }, + ["UniqueIncreasedCastSpeed1"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["UniqueIncreasedCastSpeed2"] = { affix = "", "(7-10)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["UniqueIncreasedCastSpeed3"] = { affix = "", "(15-25)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["UniqueIncreasedCastSpeed4"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["UniqueIncreasedCastSpeed5"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["UniqueIncreasedCastSpeed6"] = { affix = "", "(15-25)% reduced Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["UniqueIncreasedCastSpeed7"] = { affix = "", "(6-12)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["UniqueIncreasedCastSpeed8"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["UniqueIncreasedCastSpeed9"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["UniqueIncreasedCastSpeed10"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["UniqueIncreasedCastSpeed11"] = { affix = "", "(20-30)% increased Cast Speed", statOrder = { 942 }, level = 71, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["UniqueIncreasedCastSpeed12"] = { affix = "", "15% reduced Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["UniqueIncreasedCastSpeed13"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["UniqueIncreasedCastSpeed14"] = { affix = "", "(6-8)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["UniqueIncreasedCastSpeed15"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["UniqueIncreasedCastSpeed16"] = { affix = "", "(10-20)% reduced Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["UniqueIncreasedCastSpeed17"] = { affix = "", "(15-30)% increased Cast Speed", statOrder = { 942 }, level = 82, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["UniqueIncreasedCastSpeed18"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 82, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["UniqueIncreasedCastSpeed19"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 942 }, level = 82, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["UniqueIncreasedCastSpeed20"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["UniqueNearbyAlliesIncreasedCastSpeed1"] = { affix = "", "Allies in your Presence have (10-20)% increased Cast Speed", statOrder = { 894 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 289128254, }, + ["UniqueIncreasedAccuracy1"] = { affix = "", "+(200-300) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, + ["UniqueIncreasedAccuracy2"] = { affix = "", "+(50-100) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, + ["UniqueIncreasedAccuracy3"] = { affix = "", "+(0-60) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, + ["UniqueIncreasedAccuracy4"] = { affix = "", "+(60-100) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, + ["UniqueIncreasedAccuracy5"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, + ["UniqueIncreasedAccuracy6"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, + ["UniqueIncreasedAccuracy7"] = { affix = "", "+(75-125) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, + ["UniqueIncreasedAccuracy8"] = { affix = "", "+(75-125) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, + ["UniqueIncreasedAccuracy9"] = { affix = "", "+(150-200) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, + ["UniqueIncreasedAccuracy10"] = { affix = "", "+(200-400) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, + ["UniqueIncreasedAccuracy11"] = { affix = "", "+(200-300) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, + ["UniqueIncreasedAccuracy12"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, + ["UniqueIncreasedAccuracy13"] = { affix = "", "+(300-600) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, + ["UniqueIncreasedAccuracy14"] = { affix = "", "-(300-200) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, }, + ["UniqueLocalIncreasedAccuracy1"] = { affix = "", "+(30-50) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, }, + ["UniqueLocalIncreasedAccuracy2"] = { affix = "", "+(30-50) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, }, + ["UniqueLocalIncreasedAccuracy3"] = { affix = "", "+(50-70) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, }, + ["UniqueLocalIncreasedAccuracy4"] = { affix = "", "+(50-100) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, }, + ["UniqueLocalIncreasedAccuracy5"] = { affix = "", "+(300-400) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, }, + ["UniqueLocalIncreasedAccuracy6"] = { affix = "", "+(30-50) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, }, + ["UniqueLocalIncreasedAccuracy7"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, }, + ["UniqueLocalIncreasedAccuracy8"] = { affix = "", "+(300-500) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, }, + ["UniqueCriticalStrikeChance1"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, + ["UniqueCriticalStrikeChance2"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, + ["UniqueCriticalStrikeChance3"] = { affix = "", "(30-40)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, + ["UniqueCriticalStrikeChance4"] = { affix = "", "(0-30)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, + ["UniqueCriticalStrikeChance5"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, + ["UniqueCriticalStrikeChance6"] = { affix = "", "(15-25)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, + ["UniqueCriticalStrikeChance7"] = { affix = "", "(25-35)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, + ["UniqueCriticalStrikeChance8"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, + ["UniqueCriticalStrikeChance9"] = { affix = "", "(100-200)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, + ["UniqueCriticalStrikeChance10"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, + ["UniqueCriticalStrikeChance11"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, + ["UniqueCriticalStrikeChance12"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, + ["UniqueCriticalStrikeChance13"] = { affix = "", "(15-25)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, + ["UniqueCriticalStrikeChance14"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, + ["UniqueCriticalStrikeChance15"] = { affix = "", "100% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, + ["UniqueLocalCriticalStrikeChance1"] = { affix = "", "+15% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, }, + ["UniqueLocalCriticalStrikeChance2"] = { affix = "", "+(3-5)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, }, + ["UniqueLocalCriticalStrikeChance3"] = { affix = "", "+5% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, }, + ["UniqueLocalCriticalStrikeChance4"] = { affix = "", "+(5-10)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, }, + ["UniqueLocalCriticalStrikeChance5"] = { affix = "", "+5% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, }, + ["UniqueLocalCriticalStrikeChance6"] = { affix = "", "+(4-6)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, }, + ["UniqueLocalCriticalStrikeChance7"] = { affix = "", "+5% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, }, + ["UniqueLocalCriticalStrikeChance8"] = { affix = "", "+(5-8)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, }, + ["UniqueLocalCriticalStrikeChance9"] = { affix = "", "+(4-7)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, }, + ["UniqueSpellCriticalStrikeChance1"] = { affix = "", "(20-40)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 737908626, }, + ["UniqueSpellCriticalStrikeChance2"] = { affix = "", "(30-50)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 737908626, }, + ["UniqueSpellCriticalStrikeChance3"] = { affix = "", "(30-50)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 737908626, }, + ["UniqueNearbyAlliesCriticalStrikeChance1"] = { affix = "", "Allies in your Presence have (20-30)% increased Critical Hit Chance", statOrder = { 891 }, level = 1, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1250712710, }, + ["UniqueNearbyAlliesCriticalStrikeChance2"] = { affix = "", "Allies in your Presence have (30-50)% increased Critical Hit Chance", statOrder = { 891 }, level = 1, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1250712710, }, + ["UniqueCriticalMultiplier1"] = { affix = "", "(10-15)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3556824919, }, + ["UniqueCriticalMultiplier2"] = { affix = "", "(20-30)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3556824919, }, + ["UniqueCriticalMultiplier3"] = { affix = "", "(20-30)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3556824919, }, + ["UniqueLocalCriticalMultiplier1"] = { affix = "", "+(20-25)% to Critical Damage Bonus", statOrder = { 918 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, }, + ["UniqueLocalCriticalMultiplier2"] = { affix = "", "+(20-30)% to Critical Damage Bonus", statOrder = { 918 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, }, + ["UniqueSpellCriticalStrikeMultiplier1"] = { affix = "", "(30-50)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 274716455, }, + ["UniqueSpellCriticalStrikeMultiplier2"] = { affix = "", "(20-30)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 274716455, }, + ["UniqueNearbyAlliesCriticalMultiplier1"] = { affix = "", "Allies in your Presence have (30-50)% increased Critical Damage Bonus", statOrder = { 892 }, level = 1, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3057012405, }, + ["UniqueItemFoundRarityIncrease1"] = { affix = "", "(40-50)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["UniqueItemFoundRarityIncrease2"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["UniqueItemFoundRarityIncrease3"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["UniqueItemFoundRarityIncrease4"] = { affix = "", "(5-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["UniqueItemFoundRarityIncrease5"] = { affix = "", "(50-70)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["UniqueItemFoundRarityIncrease6"] = { affix = "", "(6-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["UniqueItemFoundRarityIncrease7"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["UniqueItemFoundRarityIncrease8"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["UniqueItemFoundRarityIncrease9"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["UniqueItemFoundRarityIncrease10"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["UniqueItemFoundRarityIncrease11"] = { affix = "", "(0-20)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["UniqueItemFoundRarityIncrease12"] = { affix = "", "(30-50)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["UniqueItemFoundRarityIncrease13"] = { affix = "", "(30-50)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["UniqueItemFoundRarityIncrease14"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["UniqueItemFoundRarityIncrease15"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 916 }, level = 50, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["UniqueItemFoundRarityIncrease16"] = { affix = "", "(30-40)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["UniqueItemFoundRarityIncrease17"] = { affix = "", "(-25-25)% reduced Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["UniqueItemFoundRarityIncrease18"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["UniqueItemFoundRarityIncrease19"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["UniqueItemFoundRarityIncrease20"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["UniqueItemFoundRarityIncrease21"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["UniqueItemFoundRarityIncrease22"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["UniqueItemFoundRarityIncrease23"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["UniqueLightRadius1"] = { affix = "", "25% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["UniqueLightRadius2"] = { affix = "", "20% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["UniqueLightRadius3"] = { affix = "", "25% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["UniqueLightRadius4"] = { affix = "", "20% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["UniqueLightRadius5"] = { affix = "", "40% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["UniqueLightRadius6"] = { affix = "", "25% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["UniqueLightRadius7"] = { affix = "", "30% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["UniqueLightRadius8"] = { affix = "", "30% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["UniqueLightRadius9"] = { affix = "", "25% increased Light Radius", statOrder = { 1003 }, level = 82, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["UniqueLightRadius10"] = { affix = "", "30% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["UniqueLightRadius11"] = { affix = "", "25% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["UniqueLightRadius12"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["UniqueLightRadius13"] = { affix = "", "30% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["UniqueLightRadius14"] = { affix = "", "25% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["UniqueLightRadius15"] = { affix = "", "25% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["UniqueLightRadius16"] = { affix = "", "(20-30)% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["UniqueLightRadius17"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["UniqueLightRadius18"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["UniqueLightRadius19"] = { affix = "", "10% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["UniqueLightRadius20"] = { affix = "", "23% reduced Light Radius", statOrder = { 1003 }, level = 82, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["UniqueLocalBlockChance1"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, + ["UniqueLocalBlockChance2"] = { affix = "", "(80-100)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, + ["UniqueLocalBlockChance3"] = { affix = "", "(15-20)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, + ["UniqueLocalBlockChance4"] = { affix = "", "(20-25)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, + ["UniqueLocalBlockChance5"] = { affix = "", "(20-30)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, + ["UniqueLocalBlockChance6"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, + ["UniqueLocalBlockChance7"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, + ["UniqueLocalBlockChance8"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, + ["UniqueLocalBlockChance9"] = { affix = "", "(30-50)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, + ["UniqueLocalBlockChance10"] = { affix = "", "(20-30)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, + ["UniqueLocalBlockChance11"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, + ["UniqueLocalBlockChance12"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, + ["UniqueLocalBlockChance13"] = { affix = "", "30% reduced Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, + ["UniqueLocalBlockChance14"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, + ["UniqueIncreasedSpirit1"] = { affix = "", "+100 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, + ["UniqueIncreasedSpirit2"] = { affix = "", "+50 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, + ["UniqueIncreasedSpirit3"] = { affix = "", "+50 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, + ["UniqueIncreasedSpirit4"] = { affix = "", "+100 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, + ["UniqueIncreasedSpirit5"] = { affix = "", "+30 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, + ["UniqueIncreasedSpirit6"] = { affix = "", "+(25-35) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, + ["UniqueIncreasedSpirit7"] = { affix = "", "+(0-20) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, + ["UniqueIncreasedSpirit8"] = { affix = "", "+50 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, + ["UniqueIncreasedSpirit9"] = { affix = "", "+(20-40) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, + ["UniqueIncreasedSpirit10"] = { affix = "", "+(30-40) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, + ["UniqueIncreasedSpirit11"] = { affix = "", "+(30-50) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, + ["UniqueIncreasedSpirit12"] = { affix = "", "+(10-30) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, + ["UniqueIncreasedSpirit13"] = { affix = "", "+(100-150) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, + ["UniqueIncreasedSpirit14"] = { affix = "", "+50 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, + ["UniqueLocalIncreasedSpiritPercent1"] = { affix = "", "(30-50)% increased Spirit", statOrder = { 842 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3984865854, }, + ["UniqueLocalIncreasedSpiritPercent2"] = { affix = "", "(30-50)% increased Spirit", statOrder = { 842 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3984865854, }, + ["UniqueLocalIncreasedSpiritPercent3"] = { affix = "", "(25-35)% increased Spirit", statOrder = { 842 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3984865854, }, + ["UniqueReducedBurnDuration1"] = { affix = "", "(30-50)% reduced Ignite Duration on you", statOrder = { 996 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 986397080, }, + ["UniqueReducedBurnDuration2"] = { affix = "", "(30-50)% reduced Ignite Duration on you", statOrder = { 996 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 986397080, }, + ["UniqueReducedShockDuration1"] = { affix = "", "(30-50)% reduced Shock duration on you", statOrder = { 999 }, level = 1, group = "ReducedShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 99927264, }, + ["UniqueReducedChillDuration1"] = { affix = "", "(30-50)% reduced Chill Duration on you", statOrder = { 997 }, level = 1, group = "ReducedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1874553720, }, + ["UniqueReducedFreezeDuration1"] = { affix = "", "(30-50)% reduced Freeze Duration on you", statOrder = { 998 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2160282525, }, + ["UniqueReducedPoisonDuration1"] = { affix = "", "(40-60)% reduced Poison Duration on you", statOrder = { 1000 }, level = 1, group = "ReducedPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3301100256, }, + ["UniqueReducedBleedDuration1"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, }, + ["UniqueReducedBleedDuration2"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, }, + ["UniqueReducedBleedDuration3"] = { affix = "", "(30-50)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, }, + ["UniqueReducedBleedDuration4"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, }, + ["UniqueAdditionalPhysicalDamageReduction1"] = { affix = "", "15% additional Physical Damage Reduction", statOrder = { 951 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3771516363, }, + ["UniqueMaximumFireResist1"] = { affix = "", "+(3-5)% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, }, + ["UniqueMaximumFireResist2"] = { affix = "", "+5% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, }, + ["UniqueMaximumColdResist1"] = { affix = "", "+(3-5)% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, }, + ["UniqueMaximumColdResist2"] = { affix = "", "+5% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, }, + ["UniqueMaximumLightningResist1"] = { affix = "", "+(3-5)% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, }, + ["UniqueMaximumLightningResist2"] = { affix = "", "+5% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, }, + ["UniqueMaximumElementalResistance1"] = { affix = "", "-(5-1)% to all Maximum Elemental Resistances", statOrder = { 952 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1978899297, }, + ["UniqueEnergyShieldRechargeRate1"] = { affix = "", "(20-30)% reduced Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, }, + ["UniqueEnergyShieldRechargeRate2"] = { affix = "", "50% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, }, + ["UniqueEnergyShieldRechargeRate3"] = { affix = "", "40% reduced Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, }, + ["UniqueEnergyShieldRechargeRate4"] = { affix = "", "(30-50)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, }, + ["UniqueEnergyShieldRechargeRate5"] = { affix = "", "(50-100)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, }, + ["UniqueEnergyShieldRechargeRate6"] = { affix = "", "1000% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, }, + ["UniqueEnergyShieldRechargeRate7"] = { affix = "", "(30-50)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, }, + ["UniqueArrowPierceChance1"] = { affix = "", "(15-25)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 1, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2321178454, }, + ["UniqueAdditionalArrow1"] = { affix = "", "Bow Attacks fire 3 additional Arrows", statOrder = { 945 }, level = 1, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3885405204, }, + ["UniqueArrowsReturnAfterPiercingXTimes1"] = { affix = "", "Attack Projectiles Return if they Pierced at least (2-4) times", statOrder = { 2478 }, level = 1, group = "ArrowsReturnAfterPiercingXTimes", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2720781168, }, + ["UniqueProjectileIncreasedCriticalHitChancePerPierce1"] = { affix = "", "Projectiles have (42-64)% increased Critical Hit chance for each time they have Pierced", statOrder = { 8990 }, level = 1, group = "ProjectileIncreasedCriticalHitChancePerPierce", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1163615092, }, + ["UniqueProjectileIncreasedDamagePerPierce1"] = { affix = "", "Projectiles deal (42-64)% increased Damage with Hits for each time they have Pierced", statOrder = { 8980 }, level = 1, group = "ProjectileIncreasedDamagePerPierce", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 883169830, }, + ["UniqueFlaskLifeRecoveryRate1"] = { affix = "", "(30-50)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, }, + ["UniqueFlaskLifeRecoveryRate2"] = { affix = "", "(40-60)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, }, + ["UniqueFlaskLifeRecoveryRate3"] = { affix = "", "(20-30)% reduced Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, }, + ["UniqueFlaskLifeRecoveryRate4"] = { affix = "", "(-25-25)% reduced Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, }, + ["UniqueFlaskLifeRecoveryRate5"] = { affix = "", "(20-30)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, }, + ["UniqueFlaskLifeRecoveryRate6"] = { affix = "", "(20-30)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, }, + ["UniqueFlaskLifeRecoveryRate7"] = { affix = "", "(15-35)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, }, + ["UniqueFlaskManaRecoveryRate1"] = { affix = "", "(40-60)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, }, + ["UniqueFlaskManaRecoveryRate2"] = { affix = "", "(-25-25)% reduced Flask Mana Recovery rate", statOrder = { 877 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, }, + ["UniqueFlaskManaRecoveryRate3"] = { affix = "", "(20-30)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, }, + ["UniqueFlaskManaRecoveryRate4"] = { affix = "", "(20-30)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, }, + ["UniqueIncreasedFlaskChargesGained1"] = { affix = "", "100% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, }, + ["UniqueIncreasedFlaskChargesGained2"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, }, + ["UniqueIncreasedFlaskChargesGained3"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, }, + ["UniqueIncreasedFlaskChargesGained4"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, }, + ["UniqueReducedFlaskChargesUsed1"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, }, + ["UniqueReducedFlaskChargesUsed2"] = { affix = "", "50% increased Flask Charges used", statOrder = { 982 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 644456512, }, + ["UniqueReducedFlaskChargesUsed3"] = { affix = "", "(10-15)% reduced Flask Charges used", statOrder = { 982 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 644456512, }, + ["UniqueIncreasedCharmChargesGained1"] = { affix = "", "(-20-20)% reduced Charm Charges gained", statOrder = { 5227 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3585532255, }, + ["UniqueIncreasedCharmChargesGained2"] = { affix = "", "(20-30)% increased Charm Charges gained", statOrder = { 5227 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3585532255, }, + ["UniqueReducedCharmChargesUsed1"] = { affix = "", "(10-30)% increased Charm Charges used", statOrder = { 5229 }, level = 1, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1570770415, }, + ["UniqueReducedCharmChargesUsed2"] = { affix = "", "(-10-10)% reduced Charm Charges used", statOrder = { 5229 }, level = 1, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1570770415, }, + ["UniqueAdditionalCharm1"] = { affix = "", "+(0-2) Charm Slot", statOrder = { 944 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2582079000, }, + ["UniqueAdditionalCharm2"] = { affix = "", "+(1-2) Charm Slot", statOrder = { 944 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2582079000, }, + ["UniqueAdditionalCharm3"] = { affix = "", "+2 Charm Slots", statOrder = { 944 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2582079000, }, + ["UniqueIgniteChanceIncrease1"] = { affix = "", "100% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2968503605, }, + ["UniqueIgniteChanceIncrease2"] = { affix = "", "100% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2968503605, }, + ["UniqueIgniteChanceIncrease3"] = { affix = "", "50% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2968503605, }, + ["UniqueIgniteChanceIncrease4"] = { affix = "", "(30-50)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2968503605, }, + ["UniqueFreezeDamageIncrease1"] = { affix = "", "30% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 473429811, }, + ["UniqueFreezeDamageIncrease2"] = { affix = "", "(40-50)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 473429811, }, + ["UniqueFreezeDamageIncrease3"] = { affix = "", "(30-50)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 473429811, }, + ["UniqueFreezeDamageIncrease4"] = { affix = "", "(20-30)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 473429811, }, + ["UniqueShockChanceIncrease1"] = { affix = "", "(50-100)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 293638271, }, + ["UniqueShockChanceIncrease2"] = { affix = "", "(10-20)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 293638271, }, + ["UniqueShockChanceIncrease3UNUSED"] = { affix = "", "(50-100)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 293638271, }, + ["UniqueShockChanceIncrease4"] = { affix = "", "(20-40)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 293638271, }, + ["UniqueStunDuration1"] = { affix = "", "(10-20)% increased Stun Duration", statOrder = { 987 }, level = 1, group = "LocalStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 748522257, }, + ["UniqueStunDamageIncrease1"] = { affix = "", "(30-50)% increased Stun Buildup", statOrder = { 984 }, level = 1, group = "StunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 239367161, }, + ["UniqueStunDamageIncrease2"] = { affix = "", "(20-30)% increased Stun Buildup", statOrder = { 984 }, level = 1, group = "StunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 239367161, }, + ["UniqueLocalStunDamageIncrease1"] = { affix = "", "Causes (30-50)% increased Stun Buildup", statOrder = { 985 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 791928121, }, + ["UniqueLocalStunDamageIncrease2"] = { affix = "", "Causes (150-200)% increased Stun Buildup", statOrder = { 985 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 791928121, }, + ["UniqueLocalStunDamageIncrease3"] = { affix = "", "Causes (40-60)% increased Stun Buildup", statOrder = { 985 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 791928121, }, + ["UniqueMeleeDamageAgainstStunnedEnemies1"] = { affix = "", "(35-50)% increased Melee Damage against Heavy Stunned enemies", statOrder = { 8370 }, level = 1, group = "MeleeDamageAgainstStunnedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2677352961, }, + ["UniqueSpellDamage1"] = { affix = "", "100% increased Spell Damage", statOrder = { 853 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, + ["UniqueSpellDamage2"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, + ["UniqueSpellDamage3"] = { affix = "", "(60-100)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, + ["UniqueFireDamagePercent1"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, }, + ["UniqueFireDamagePercent2"] = { affix = "", "(20-40)% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, }, + ["UniqueColdDamagePercent1"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, }, + ["UniqueColdDamagePercent2"] = { affix = "", "(10-20)% reduced Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, }, + ["UniqueElementalDamagePercent1"] = { affix = "", "(15-30)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, + ["UniqueWeaponElementalDamage1"] = { affix = "", "100% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, }, + ["UniqueProjectileSpeed1"] = { affix = "", "(40-60)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3759663284, }, + ["UniqueProjectileSpeed2"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3759663284, }, + ["UniqueProjectileSpeed3"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3759663284, }, + ["UniqueDamageTakenGainedAsLife1"] = { affix = "", "(5-30)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1444556985, }, + ["UniqueDamageTakenGainedAsLife2"] = { affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1444556985, }, + ["UniqueDamageTakenGoesToMana1"] = { affix = "", "50% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, }, + ["UniqueDamageTakenGoesToMana2"] = { affix = "", "(5-30)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, }, + ["UniqueDamageGainedAsFire1"] = { affix = "", "Gain (40-60)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, }, + ["UniqueDamageGainedAsFire2"] = { affix = "", "Gain 25% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, }, + ["UniqueDamageGainedAsFire3"] = { affix = "", "Gain (30-50)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, }, + ["UniqueDamageGainedAsCold1"] = { affix = "", "Gain 25% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, }, + ["UniqueDamageGainedAsCold2"] = { affix = "", "Gain (15-25)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, }, + ["UniqueDamageGainedAsLightning1"] = { affix = "", "Gain 25% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, }, + ["UniqueDamageGainedAsChaos1"] = { affix = "", "Gain 27% of Damage as Extra Chaos Damage", statOrder = { 1602 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3398787959, }, + ["UniquePresenceRadius1"] = { affix = "", "50% reduced Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 101878827, }, + ["UniquePresenceRadius2"] = { affix = "", "50% reduced Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 101878827, }, + ["UniquePresenceRadius3"] = { affix = "", "(30-60)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 101878827, }, + ["UniquePresenceRadius4"] = { affix = "", "(30-40)% reduced Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 101878827, }, + ["UniquePresenceRadius5"] = { affix = "", "(60-80)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 101878827, }, + ["UniqueGlobalProjectileGemLevel1"] = { affix = "", "+(1-2) to Level of all Projectile Skills", statOrder = { 930 }, level = 1, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1202301673, }, + ["UniqueGlobalMeleeGemLevel1"] = { affix = "", "+(1-2) to Level of all Melee Skills", statOrder = { 928 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 9187492, }, + ["UniqueProjectileDamageIfMeleeHitRecently1"] = { affix = "", "(30-60)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 8973 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3596695232, }, + ["UniqueMeleeDamageIfProjectileHitRecently1"] = { affix = "", "(30-60)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8364 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3028809864, }, + ["UniqueCursesNeverExpire1"] = { affix = "", "Curses you inflict have infinite Duration", statOrder = { 1828 }, level = 1, group = "CursesNeverExpire", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2609822974, }, + ["UniqueMinionLife1"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, }, + ["UniqueMinionLife2"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, }, + ["UniqueMinionLife3"] = { affix = "", "Minions have (10-15)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, }, + ["UniqueMinionLife4"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, }, + ["UniqueMinionLife5"] = { affix = "", "Minions have 50% reduced maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, }, + ["UniqueMinionLife6"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, }, + ["UniqueMinionDamage1"] = { affix = "", "Minions deal (20-30)% increased Damage", statOrder = { 1646 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 1589917703, }, + ["UniqueMinionDamage2"] = { affix = "", "Minions deal (80-100)% increased Damage", statOrder = { 1646 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 1589917703, }, + ["UniqueFlaskChargesAddedPercent1"] = { affix = "", "(30-40)% increased Charges gained", statOrder = { 1005 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3196823591, }, + ["UniqueFlaskExtraCharges1"] = { affix = "", "(30-40)% increased Charges", statOrder = { 1008 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1366840608, }, + ["UniqueFlaskChargesUsed1"] = { affix = "", "(100-150)% increased Charges per use", statOrder = { 1006 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3139816101, }, + ["UniqueFlaskChargesUsed2"] = { affix = "", "(10-15)% reduced Charges per use", statOrder = { 1006 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3139816101, }, + ["UniqueFlaskFullInstantRecovery1"] = { affix = "", "Instant Recovery", statOrder = { 911 }, level = 1, group = "FlaskFullInstantRecovery", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 4131977470, }, + ["UniqueFlaskChanceRechargeOnKill1"] = { affix = "", "(20-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 1, group = "FlaskChanceRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 828533480, }, + ["UniqueFlaskChanceRechargeOnKill2"] = { affix = "", "(20-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 1, group = "FlaskChanceRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 828533480, }, + ["UniqueFlaskFillChargesPerMinute1"] = { affix = "", "Gains (0.15-0.2) Charges per Second", statOrder = { 610 }, level = 1, group = "FlaskGainChargePerMinute", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1873752457, }, + ["UniqueCharmIncreasedDuration1"] = { affix = "", "(15-25)% increased Duration", statOrder = { 903 }, level = 1, group = "CharmIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2541588185, }, + ["UniqueCharmIncreasedDuration2"] = { affix = "", "(10-20)% increased Duration", statOrder = { 903 }, level = 1, group = "CharmIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2541588185, }, + ["UniqueGlobalCharmIncreasedDuration1"] = { affix = "", "(10-50)% reduced Charm Effect Duration", statOrder = { 878 }, level = 1, group = "CharmDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1389754388, }, + ["UniqueDodgeRollPhasing1"] = { affix = "", "Dodge Roll passes through Enemies", statOrder = { 5803 }, level = 1, group = "DodgeRollPhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1298316550, }, + ["UniqueMaximumLifeOnKillPercent1"] = { affix = "", "Lose 2% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, + ["UniqueMaximumLifeOnKillPercent2"] = { affix = "", "Lose 1% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, + ["UniqueMaximumLifeOnKillPercent3"] = { affix = "", "Recover (2-4)% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, + ["UniqueMaximumManaOnKillPercent1"] = { affix = "", "Lose 1% of maximum Mana on Kill", statOrder = { 1439 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1030153674, }, + ["UniqueAttackerTakesFireDamage1"] = { affix = "", "25 to 35 Fire Thorns damage", statOrder = { 9651 }, level = 1, group = "ThornsFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 1993950627, }, + ["UniqueAttackerTakesColdDamage1"] = { affix = "", "25 to 35 Cold Thorns damage", statOrder = { 9650 }, level = 1, group = "ThornsColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 1515531208, }, + ["UniquePhysicalDamageTakenAsFire1"] = { affix = "", "50% of Physical Damage taken as Fire Damage", statOrder = { 8895 }, level = 1, group = "PhysicalHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1004468512, }, + ["UniqueAllAttributesPerLevel1"] = { affix = "", "-1 to all Attributes per Level", statOrder = { 7137 }, level = 1, group = "LocalAllAttributesPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2333085568, }, + ["UniqueLocalNoWeaponPhysicalDamage1"] = { affix = "", "No Physical Damage", statOrder = { 821 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 385756972, }, + ["UniqueLocalNoWeaponPhysicalDamage2"] = { affix = "", "No Physical Damage", statOrder = { 821 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 385756972, }, + ["UniqueLocalNoWeaponPhysicalDamage3"] = { affix = "", "No Physical Damage", statOrder = { 821 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 385756972, }, + ["UniqueLocalNoWeaponPhysicalDamage4"] = { affix = "", "No Physical Damage", statOrder = { 821 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 385756972, }, + ["UniqueLocalFreezeOnFullLife1"] = { affix = "", "Freezes Enemies that are on Full Life", statOrder = { 7144 }, level = 1, group = "LocalFreezeOnFullLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2260055669, }, + ["UniqueAttackDamageOnLowLife1"] = { affix = "", "100% increased Attack Damage while on Low Life", statOrder = { 4397 }, level = 1, group = "AttackDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4246007234, }, + ["UniqueAttackDamageNotOnLowMana1"] = { affix = "", "100% increased Attack Damage while not on Low Mana", statOrder = { 4401 }, level = 1, group = "AttackDamageNotOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2462683918, }, + ["UniqueQuiverModifierEffect1"] = { affix = "", "(150-250)% increased bonuses gained from Equipped Quiver", statOrder = { 9028 }, level = 1, group = "QuiverModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1200678966, }, + ["UniqueDrainManaHealLife1"] = { affix = "", "Damage over Time bypasses your Energy Shield", "While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover that much Life", statOrder = { 9778, 9778.1 }, level = 1, group = "DrainManaHealLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2894895028, }, + ["UniqueBurningGroundWhileMovingMaximumLife1"] = { affix = "", "Drop Ignited Ground while moving, which lasts 8 seconds and Ignites as though dealing Fire Damage equal to 10% of your maximum Life", statOrder = { 3877 }, level = 1, group = "BurningGroundWhileMovingMaximumLife", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2356156926, }, + ["UniqueShockedGroundWhileMoving1"] = { affix = "", "Drop Shocked Ground while moving, lasting 8 seconds", statOrder = { 3878 }, level = 1, group = "ShockedGroundWhileMoving", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 65133983, }, + ["UniqueCannotBePoisoned1"] = { affix = "", "Cannot be Poisoned", statOrder = { 2967 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3835551335, }, + ["UniqueDoubleIgniteChance1"] = { affix = "", "Flammability Magnitude is doubled", statOrder = { 5168 }, level = 1, group = "DoubleIgniteChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1540254896, }, + ["UniqueRemoveSpirit1"] = { affix = "", "You have no Spirit", statOrder = { 9456 }, level = 1, group = "RemoveSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3148264775, }, + ["UniqueBlockChanceIncrease1"] = { affix = "", "25% increased Block chance", statOrder = { 1064 }, level = 1, group = "BlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4147897060, }, + ["UniqueBlockChanceIncrease2"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 1064 }, level = 1, group = "BlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4147897060, }, + ["UniqueMaximumBlockChance1"] = { affix = "", "+(5-10)% to maximum Block chance", statOrder = { 1659 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 480796730, }, + ["UniqueMaximumBlockChance2"] = { affix = "", "-(20-10)% to maximum Block chance", statOrder = { 1659 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 480796730, }, + ["UniqueLeechLifeOnSpellCast1"] = { affix = "", "Leeches 1% of maximum Life when you Cast a Spell", statOrder = { 6994 }, level = 1, group = "LeechLifeOnSpellCast", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 335699483, }, + ["UniqueArrowSpeed1"] = { affix = "", "(50-100)% increased Arrow Speed", statOrder = { 1479 }, level = 1, group = "ArrowSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1207554355, }, + ["UniqueWeaponDamageFinalPercent1"] = { affix = "", "40% less Attack Damage", statOrder = { 2128 }, level = 1, group = "QuillRainWeaponDamageFinalPercent", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 412462523, }, + ["UniqueEnergyShieldRechargeOnKill1"] = { affix = "", "20% chance for Energy Shield Recharge to start when you Kill an Enemy", statOrder = { 6024 }, level = 1, group = "EnergyShieldRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1618482990, }, + ["UniqueCausesBleeding1"] = { affix = "", "Causes Bleeding on Hit", statOrder = { 2150 }, level = 1, group = "CausesBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2091621414, }, + ["UniqueLocalPoisonOnHit1"] = { affix = "", "Always Poison on Hit with this weapon", statOrder = { 7334 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, }, + ["UniqueAdditionalCurseOnEnemies1"] = { affix = "", "You can apply an additional Curse", statOrder = { 1833 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 30642521, }, + ["UniqueBeltFlaskRecoveryRate1"] = { affix = "", "(30-40)% increased Life and Mana Recovery from Flasks", statOrder = { 6220 }, level = 1, group = "BeltFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 2310741722, }, + ["UniqueLowLifeThreshold1"] = { affix = "", "You are considered on Low Life while at 75% of maximum Life or below instead", statOrder = { 7458 }, level = 1, group = "LowLifeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 356835700, }, + ["UniqueLoseLifeOnSkillUse1"] = { affix = "", "Lose 5 Life when you use a Skill", statOrder = { 7455 }, level = 1, group = "LoseLifeOnKillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1902409192, }, + ["UniqueChanceToAvoidDeath1"] = { affix = "", "50% chance to Avoid Death from Hits", statOrder = { 5109 }, level = 1, group = "ChanceToAvoidDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1689729380, }, + ["UniqueLowLifeOnManaThreshold1"] = { affix = "", "You count as on Low Life while at 35% of maximum Mana or below", statOrder = { 9813 }, level = 1, group = "LowLifeOnManaThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3154256486, }, + ["UniqueLowManaOnLifeThreshold1"] = { affix = "", "You count as on Low Mana while at 35% of maximum Life or below", statOrder = { 9814 }, level = 1, group = "LowManaOnLifeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1143240184, }, + ["UniqueArmourAppliesToElementalDamage1"] = { affix = "", "+(100-150)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "armour", "defences", "elemental" }, tradeHash = 3362812763, }, + ["UniqueNoExtraBleedDamageWhileMoving1"] = { affix = "", "Moving while Bleeding doesn't cause you to take extra damage", statOrder = { 2806 }, level = 1, group = "NoExtraBleedDamageWhileMoving", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 4112450013, }, + ["UniqueGainRareMonsterModsOnKill1"] = { affix = "", "When you kill a Rare monster, you gain its Modifiers for 60 seconds", statOrder = { 2470 }, level = 1, group = "GainRareMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2913235441, }, + ["UniqueGainAModifierFromEachEnemyInPresenceOnShapeshift1"] = { affix = "", "Copy a random Modifier from each enemy in your Presence when", "you Shapeshift to an Animal form", "Modifiers gained this way are lost after 30 seconds or when you next Shapeshift", statOrder = { 6301, 6301.1, 6301.2 }, level = 1, group = "ShapeshiftCopyModsInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 885925163, }, + ["UniqueIncreasedArmourWhileShapeshifted1"] = { affix = "", "(30-50)% increased Armour while Shapeshifted", statOrder = { 4270 }, level = 1, group = "IncreasedArmourWhileShapeshifted", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1364201165, }, + ["UniquePoisonOnBlock1"] = { affix = "", "Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage", statOrder = { 8916 }, level = 1, group = "PoisonDamageBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4195198267, }, + ["UniqueDoubleAccuracyRating1"] = { affix = "", "Accuracy Rating is Doubled", statOrder = { 4024 }, level = 1, group = "AccuracyRatingIsDoubled", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2161347476, }, + ["UniqueWeaponDamagePerStrength1"] = { affix = "", "10% increased Weapon Damage per 10 Strength", statOrder = { 9896 }, level = 1, group = "WeaponDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1791136590, }, + ["UniqueAttackSpeedPerDexterity1"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 4439 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 889691035, }, + ["UniqueAttackAreaOfEffectPerIntelligence1"] = { affix = "", "1% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4364 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 434750362, }, + ["UniqueAdditionalSkillSlots1"] = { affix = "", "Grants 1 additional Skill Slot", statOrder = { 55 }, level = 1, group = "AdditionalSkillSlots", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 958696139, }, + ["UniqueMaximumResistancesOverride1"] = { affix = "", "Your Maximum Resistances are (75-80)%", statOrder = { 8790 }, level = 1, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance" }, tradeHash = 798767971, }, + ["UniqueExtraChaosDamagePerUndeadMinion1"] = { affix = "", "Gain 5% of Damage as Chaos Damage per Undead Minion", statOrder = { 8674 }, level = 1, group = "ExtraChaosDamagePerUndeadMinion", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 997343726, }, + ["UniqueBaseBlockDamageTaken1"] = { affix = "", "You take (25-40)% of damage from Blocked Hits", statOrder = { 4525 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2905515354, }, + ["UniqueBaseBlockDamageTaken2"] = { affix = "", "You take 50% of damage from Blocked Hits", statOrder = { 4525 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2905515354, }, + ["UniqueBaseBlockDamageTaken3"] = { affix = "", "You take (0-20)% of damage from Blocked Hits", statOrder = { 4525 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2905515354, }, + ["UniqueCullingStrikeOnBlock1"] = { affix = "", "Enemies are Culled on Block", statOrder = { 5516 }, level = 1, group = "CullingStrikeOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 381470861, }, + ["UniqueBlockPercentWithFocus1"] = { affix = "", "+(15-25)% to Block Chance while holding a Focus", statOrder = { 4060 }, level = 1, group = "BlockPercentWithFocus", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3122852693, }, + ["UniqueUnarmedMoreDamageWithMaceSkills1"] = { affix = "", "(600-800)% more Physical Damage with Unarmed Melee Attacks", statOrder = { 2109 }, level = 1, group = "FacebreakerPhysicalUnarmedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1814782245, }, + ["UniqueGainRageWhenHit1"] = { affix = "", "Gain 5 Rage when Hit by an Enemy", statOrder = { 6433 }, level = 1, group = "GainRageWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3292710273, }, + ["UniqueGainRageWhenCrit1"] = { affix = "", "Gain 10 Rage when Critically Hit by an Enemy", statOrder = { 6434 }, level = 1, group = "GainRageWhenCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1466716929, }, + ["UniqueIgniteDuration1"] = { affix = "", "50% reduced Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, }, + ["UniqueIgniteEffect1"] = { affix = "", "50% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3791899485, }, + ["UniqueIgniteEffect2"] = { affix = "", "100% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3791899485, }, + ["UniqueIgniteEffect3"] = { affix = "", "(10-20)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3791899485, }, + ["UniqueEnemiesIgniteChaosDamage1"] = { affix = "", "Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite", statOrder = { 5973 }, level = 1, group = "EnemiesIgniteChaosDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 2515006979, }, + ["UniqueLocalWeaponRangeIncrease1"] = { affix = "", "20% increased Melee Strike Range with this weapon", statOrder = { 7131 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 548198834, }, + ["UniqueDamageBlockedRecoupedAsMana1"] = { affix = "", "Damage Blocked is Recouped as Mana", statOrder = { 5569 }, level = 1, group = "DamageBlockedRecoupedAsMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2875218423, }, + ["UniqueAllDamage1"] = { affix = "", "25% reduced Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, }, + ["UniqueAllDamage2"] = { affix = "", "(30-50)% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, }, + ["UniqueTakeNoExtraDamageFromCriticalStrikes1"] = { affix = "", "Take no Extra Damage from Critical Hits", statOrder = { 3832 }, level = 1, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 4294267596, }, + ["UniqueLifeFlaskNoRecovery1"] = { affix = "", "Life Flasks do not recover Life", statOrder = { 4574 }, level = 1, group = "LifeFlaskNoRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 265717301, }, + ["UniqueDoubleOnKillEffects1"] = { affix = "", "On-Kill Effects happen twice", statOrder = { 8782 }, level = 1, group = "DoubleOnKillEffects", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 259470957, }, + ["UniqueGlobalSkillGemLevel1"] = { affix = "", "+1 to Level of all Skills", statOrder = { 4166 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4283407333, }, + ["UniqueReceiveBleedingWhenHit1"] = { affix = "", "25% chance to be inflicted with Bleeding when Hit", statOrder = { 9076 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3423694372, }, + ["UniqueCannotBeChilledOrFrozen1"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1520 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2996245527, }, + ["UniqueConsumeCorpseRecoverLife1"] = { affix = "", "Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life", statOrder = { 5371 }, level = 1, group = "ConsumeCorpseRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3764198549, }, + ["UniqueSmokeCloudWhenStationary1"] = { affix = "", "You have a Smoke Cloud around you while stationary", statOrder = { 9344 }, level = 1, group = "SmokeCloudWhenStationary", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2592455368, }, + ["UniqueGlobalEvasionOnFullLife1"] = { affix = "", "100% increased Evasion Rating when on Full Life", statOrder = { 6084 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 88817332, }, + ["UniqueMovementVelocityOnFullLife1"] = { affix = "", "10% increased Movement Speed when on Full Life", statOrder = { 1482 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3393547195, }, + ["UniqueLocalAllDamageCanElectrocute1"] = { affix = "", "All damage with this Weapon causes Electrocution buildup", statOrder = { 7140 }, level = 1, group = "LocalAllDamageCanElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1910743684, }, + ["UniqueLocalAllDamageCanFreeze1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Freeze Buildup", statOrder = { 7141 }, level = 1, group = "LocalAllDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3761294489, }, + ["UniqueLocalAllDamageCanChill1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Chill Magnitude", statOrder = { 7139 }, level = 1, group = "LocalAllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2156230257, }, + ["UniqueLocalCullingStrikeFrozenEnemies1"] = { affix = "", "Culling Strike against Frozen Enemies", statOrder = { 7185 }, level = 1, group = "LocalCullingStrikeFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1158324489, }, + ["UniqueFrozenMonstersTakeIncreasedDamage1"] = { affix = "", "Enemies Frozen by you take 100% increased Damage", statOrder = { 2133 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 849085925, }, + ["UniqueLifeConvertedToEnergyShield1"] = { affix = "", "35% of Maximum Life Converted to Energy Shield", statOrder = { 8332 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2458962764, }, + ["UniqueReducedDamageIfNotHitRecently1"] = { affix = "", "20% less Damage taken if you have not been Hit Recently", statOrder = { 3740 }, level = 1, group = "ReducedDamageIfNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 67637087, }, + ["UniqueIncreasedEvasionIfHitRecently1"] = { affix = "", "100% increased Evasion Rating if you have been Hit Recently", statOrder = { 3741 }, level = 1, group = "IncreasedEvasionIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 1073310669, }, + ["UniqueUndeadMinionReservation1"] = { affix = "", "(20-30)% increased Reservation Efficiency of Skills which create Undead Minions", statOrder = { 9772 }, level = 1, group = "UndeadMinionReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2308632835, }, + ["UniqueItemRarityOnLowLife1"] = { affix = "", "50% increased Rarity of Items found when on Low Life", statOrder = { 1393 }, level = 1, group = "ItemRarityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2929867083, }, + ["UniqueChillImmunityWhenChilled1"] = { affix = "", "You cannot be Chilled for 6 seconds after being Chilled", statOrder = { 2542 }, level = 1, group = "ChillImmunityWhenChilled", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2306924373, }, + ["UniqueFreezeImmunityWhenFrozen1"] = { affix = "", "You cannot be Frozen for 6 seconds after being Frozen", statOrder = { 2544 }, level = 1, group = "FreezeImmunityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3612464552, }, + ["UniqueIgniteImmunityWhenIgnited1"] = { affix = "", "You cannot be Ignited for 6 seconds after being Ignited", statOrder = { 2545 }, level = 1, group = "IgniteImmunityWhenIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 947072590, }, + ["UniqueShockImmunityWhenShocked1"] = { affix = "", "You cannot be Shocked for 6 seconds after being Shocked", statOrder = { 2546 }, level = 1, group = "ShockImmunityWhenShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 215346464, }, + ["UniqueReflectCurseToSelf1"] = { affix = "", "Curses you inflict are reflected back to you", statOrder = { 5548 }, level = 1, group = "ReflectCurseToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4275855121, }, + ["UniqueAttackAndCastSpeed1"] = { affix = "", "(10-15)% reduced Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, + ["UniqueIncreasedSkillSpeed1"] = { affix = "", "(10-15)% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, }, + ["UniqueIncreasedSkillSpeed2"] = { affix = "", "10% reduced Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, }, + ["UniqueIncreasedSkillSpeed3"] = { affix = "", "(5-10)% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, }, + ["UniqueIncreasedSkillSpeed4"] = { affix = "", "(15-30)% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, }, + ["UniqueIncreasedSkillSpeed5"] = { affix = "", "(10-15)% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, }, + ["UniqueShareChargesWithAllies1"] = { affix = "", "Share Charges with Allies in your Presence", statOrder = { 9227 }, level = 1, group = "ShareChargesWithAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2535267021, }, + ["UniqueOverrideWeaponBaseCritical1"] = { affix = "", "Base Critical Hit Chance for Attacks with Weapons is 7%", statOrder = { 8791 }, level = 1, group = "OverrideWeaponBaseCritical", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2635559734, }, + ["UniqueEnemiesKilledCountAsYours1"] = { affix = "", "Enemies in your Presence killed by anyone count as being killed by you instead", statOrder = { 5699 }, level = 1, group = "EnemiesKilledCountAsYours", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1576794517, }, + ["UniqueAllDamageCanPoison1"] = { affix = "", "All Damage from Hits Contributes to Poison Magnitude", statOrder = { 4153 }, level = 1, group = "AllDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4012215578, }, + ["UniqueFreezeDamageMaximumMana1"] = { affix = "", "Gain Cold Thorns Damage equal to (10-18)% of your maximum Mana", statOrder = { 4052 }, level = 1, group = "FreezeDamageMaximumMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1435496528, }, + ["UniqueBlockPercent1"] = { affix = "", "+10% to Block chance", statOrder = { 2130 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, }, + ["UniqueBlockPercent2"] = { affix = "", "+(15-25)% to Block chance", statOrder = { 2130 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, }, + ["UniqueRangedAttackDamageTaken1"] = { affix = "", "-10 Physical damage taken from Projectile Attacks", statOrder = { 1896 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3612407781, }, + ["UniqueChillEffect1"] = { affix = "", "(20-30)% increased Magnitude of Chill you inflict", statOrder = { 5269 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 828179689, }, + ["UniqueManaCostReduction1"] = { affix = "", "20% reduced Mana Cost of Skills", statOrder = { 1560 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 474294393, }, + ["UniqueManaCostReduction2"] = { affix = "", "10% increased Mana Cost of Skills", statOrder = { 1560 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 474294393, }, + ["UniqueLightningDamageCanElectrocute1"] = { affix = "", "Lightning damage from Hits Contributes to Electrocution Buildup", statOrder = { 4578 }, level = 1, group = "LightningDamageElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1017648537, }, + ["UniqueStrengthSatisfiesAllWeaponRequirements1"] = { affix = "", "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", statOrder = { 9512 }, level = 1, group = "StrengthSatisfiesAllWeaponRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2230687504, }, + ["UniqueAreaOfEffect1"] = { affix = "", "(10-20)% increased Area of Effect", statOrder = { 1557 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 280731498, }, + ["UniqueAreaOfEffect2"] = { affix = "", "(8-15)% increased Area of Effect", statOrder = { 1557 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 280731498, }, + ["UniquePercentageStrength1"] = { affix = "", "(5-15)% increased Strength", statOrder = { 1080 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 734614379, }, + ["UniquePercentageStrength2"] = { affix = "", "(15-30)% increased Strength", statOrder = { 1080 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 734614379, }, + ["UniquePercentageDexterity1"] = { affix = "", "(5-15)% increased Dexterity", statOrder = { 1081 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4139681126, }, + ["UniquePercentageDexterity2"] = { affix = "", "10% reduced Dexterity", statOrder = { 1081 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4139681126, }, + ["UniquePercentageIntelligence1"] = { affix = "", "(5-15)% increased Intelligence", statOrder = { 1082 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 656461285, }, + ["UniquePercentageIntelligence2"] = { affix = "", "10% reduced Intelligence", statOrder = { 1082 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 656461285, }, + ["UniquePercentageIntelligence3"] = { affix = "", "(5-10)% increased Intelligence", statOrder = { 1082 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 656461285, }, + ["UniqueReducedIgniteEffectOnSelf1"] = { affix = "", "(35-50)% reduced Magnitude of Ignite on you", statOrder = { 6814 }, level = 1, group = "ReducedIgniteEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1269971728, }, + ["UniqueReducedChillEffectOnSelf1"] = { affix = "", "(35-50)% reduced Effect of Chill on you", statOrder = { 1422 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1478653032, }, + ["UniqueReducedShockEffectOnSelf1"] = { affix = "", "(35-50)% reduced effect of Shock on you", statOrder = { 9261 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3801067695, }, + ["UniqueThornsOnAnyHit1"] = { affix = "", "Thorns can Retaliate against all Hits", statOrder = { 9655 }, level = 1, group = "ThornsOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3414243317, }, + ["UniqueTriggerDecomposeOnStep1"] = { affix = "", "Trigger Decompose every 1.2 metres travelled", statOrder = { 7222 }, level = 1, group = "CorpsewadeGrantsTriggeredCorpseCloud", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3371943724, }, + ["UniqueSpearsInflictBloodstoneLanceOnHit1"] = { affix = "", "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target", statOrder = { 9365 }, level = 1, group = "InflictBloodstoneLanceOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4106787208, }, + ["UniqueSpellsThatCostLifeGainDamageAsExtraPhys1"] = { affix = "", "Spells which cost Life Gain (80-120)% of Damage as Extra Physical Damage", statOrder = { 9437 }, level = 1, group = "SpellsWhichCostLifeGainDamageAsExtraPhys", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHash = 1088082880, }, + ["UniqueGlobalCorruptedSpellSkillLevel1"] = { affix = "", "+(3-5) to Level of all Corrupted Spell Skill Gems", statOrder = { 923 }, level = 1, group = "GlobalCorruptedSpellSkillLevel1", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 2061237517, }, + ["UniqueOverkillDamagePhysical1"] = { affix = "", "Deal 30% of Overkill damage to enemies within 2 metres of the enemy killed", statOrder = { 8788 }, level = 1, group = "OverkillDamagePhysical", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2301852600, }, + ["UniqueMaximumEnduranceCharges1"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1486 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1515657623, }, + ["UniqueMaximumFrenzyCharges1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, }, + ["UniqueMaximumPowerCharges1"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, + ["UniqueLifeRegenerationPercentPerEnduranceCharge1"] = { affix = "", "Regenerate 0.5% of maximum Life per second per Endurance Charge", statOrder = { 1375 }, level = 1, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 989800292, }, + ["UniqueMovementVelocityPerFrenzyCharge1"] = { affix = "", "5% increased Movement Speed per Frenzy Charge", statOrder = { 1484 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, }, + ["UniqueCriticalMultiplierPerPowerCharge1"] = { affix = "", "12% increased Critical Damage Bonus per Power Charge", statOrder = { 2885 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 4164870816, }, + ["UniqueCriticalStrikesLeechIsInstant1"] = { affix = "", "Leech from Critical Hits is instant", statOrder = { 2208 }, level = 1, group = "CriticalStrikesLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3389184522, }, + ["UniqueBaseChanceToPoison1"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 795138349, }, + ["UniqueBaseChanceToPoison2"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 795138349, }, + ["UniqueBaseChanceToPoison3"] = { affix = "", "(10-20)% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 795138349, }, + ["UniqueBaseChanceToPoison4"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 795138349, }, + ["UniqueChanceToPoisonOnSpellHit1"] = { affix = "", "100% chance to Poison on Hit with Spell Damage", statOrder = { 9435 }, level = 1, group = "ChanceToPoisonWithSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHash = 1493211587, }, + ["UniquePoisonStackCount1"] = { affix = "", "Targets can be affected by +1 of your Poisons at the same time", statOrder = { 8749 }, level = 1, group = "PoisonStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1755296234, }, + ["UniqueSacrificeLifeToGainEnergyShield1"] = { affix = "", "Sacrifice (5-15)% of Life to gain that much Energy Shield when you Cast a Spell", statOrder = { 9197 }, level = 1, group = "SacrificeLifeToGainES", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 613752285, }, + ["UniqueCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 1700 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2524254339, }, + ["UniqueDecimatingStrike1"] = { affix = "", "Decimating Strike", statOrder = { 5704 }, level = 1, group = "DecimatingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3872034802, }, + ["UniqueCannotBeIgnited1"] = { affix = "", "Cannot be Ignited", statOrder = { 1522 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 331731406, }, + ["UniquePhysicalAttackDamageTaken1"] = { affix = "", "-10 Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, }, + ["UniquePhysicalAttackDamageTaken2"] = { affix = "", "-4 Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, }, + ["UniqueNoManaPerIntelligence1"] = { affix = "", "Gain no inherent bonus from Intelligence", statOrder = { 1687 }, level = 1, group = "NoMaximumManaPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4187571952, }, + ["UniqueNoLifeRegeneration1"] = { affix = "", "You have no Life Regeneration", statOrder = { 1944 }, level = 1, group = "NoLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 854225133, }, + ["UniqueFragileRegrowth1"] = { affix = "", "Maximum 10 Fragile Regrowth", "0.5% of maximum Life Regenerated per second per Fragile Regrowth", "10% increased Mana Regeneration Rate per Fragile Regrowth", "Lose all Fragile Regrowth when Hit", "Gain 1 Fragile Regrowth each second", statOrder = { 3956, 3957, 3958, 3959, 6428 }, level = 1, group = "FragileRegrowth", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1042038498, }, + ["UniqueEnergyShieldDelay1"] = { affix = "", "(30-50)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, }, + ["UniqueEnergyShieldDelay2"] = { affix = "", "30% slower start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, }, + ["UniqueEnergyShieldDelay3"] = { affix = "", "100% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, }, + ["UniqueEnergyShieldDelay4"] = { affix = "", "80% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, }, + ["UniqueEnergyShieldDelay5"] = { affix = "", "(30-50)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, }, + ["UniqueReverseChill1"] = { affix = "", "The Effect of Chill on you is reversed", statOrder = { 5268 }, level = 1, group = "ReverseChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2955966707, }, + ["UniquePhysicalDamageTakenPercentToReflect1"] = { affix = "", "250% of Melee Physical Damage taken reflected to Attacker", statOrder = { 2129 }, level = 1, group = "PhysicalDamageTakenPercentToReflect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1092987622, }, + ["UniquePhysicalDamagePreventedRecoup1"] = { affix = "", "50% of Physical Damage prevented Recouped as Life", statOrder = { 8867 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 1374654984, }, + ["UniqueRechargeNotInterruptedRecently1"] = { affix = "", "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", statOrder = { 3316 }, level = 1, group = "RechargeNotInterruptedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1419390131, }, + ["UniqueMinionReviveSpeed1"] = { affix = "", "Minions Revive 50% faster", statOrder = { 8529 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2639966148, }, + ["UniqueMinionReviveSpeed2"] = { affix = "", "Minions Revive (10-15)% faster", statOrder = { 8529 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2639966148, }, + ["UniqueMinionReviveSpeed3"] = { affix = "", "Minions Revive 50% slower", statOrder = { 8529 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2639966148, }, + ["UniqueMinionLifeGainAsEnergyShield1"] = { affix = "", "Minions gain (20-30)% of their maximum Life as Extra maximum Energy Shield", statOrder = { 8510 }, level = 1, group = "MinionLifeGainAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences", "minion" }, tradeHash = 943702197, }, + ["UniqueCannotBeShocked1"] = { affix = "", "Cannot be Shocked", statOrder = { 1524 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 491899612, }, + ["UniqueFlaskChanceToNotConsume1"] = { affix = "", "50% less Flask Charges used", statOrder = { 6785 }, level = 1, group = "HuskOfDreamsFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3749630567, }, + ["UniqueSetElementalResistances1"] = { affix = "", "You have no Elemental Resistances", statOrder = { 2489 }, level = 1, group = "SetElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1776968075, }, + ["UniquePoisonOnCrit1"] = { affix = "", "Critical Hits Poison the enemy", statOrder = { 8929 }, level = 1, group = "PoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHash = 62849030, }, + ["UniqueDuplicatesRingStats1"] = { affix = "", "Reflects opposite Ring", statOrder = { 2505 }, level = 1, group = "DuplicatesRingStats", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 746505085, }, + ["UniqueLifeLeechAmount1"] = { affix = "", "(100-200)% increased amount of Life Leeched", statOrder = { 1820 }, level = 1, group = "LifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2112395885, }, + ["UniquePhysicalMinimumDamageModifier1"] = { affix = "", "(30-40)% less minimum Physical Attack Damage", statOrder = { 1095 }, level = 1, group = "RyuslathaMinimumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2423248184, }, + ["UniquePhysicalMaximumDamageModifier1"] = { affix = "", "(30-40)% more maximum Physical Attack Damage", statOrder = { 1094 }, level = 1, group = "RyuslathaMaximumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3735888493, }, + ["UniqueGlobalItemAttributeRequirements1"] = { affix = "", "Equipment and Skill Gems have 50% reduced Attribute Requirements", statOrder = { 2224 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, }, + ["UniqueGlobalItemAttributeRequirements2"] = { affix = "", "Equipment and Skill Gems have 25% increased Attribute Requirements", statOrder = { 2224 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, }, + ["UniqueGlobalGemAttributeRequirements1"] = { affix = "", "Skill Gems have no Attribute Requirements", statOrder = { 2221 }, level = 1, group = "GlobalNoGemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4245256219, }, + ["UniqueGlobalEquipmentAttributeRequirements1"] = { affix = "", "Equipment has no Attribute Requirements", statOrder = { 2220 }, level = 1, group = "GlobalNoEquipmentAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2480151124, }, + ["UniqueEnemiesBlockedAreIntimidated1"] = { affix = "", "Permanently Intimidate enemies on Block", statOrder = { 8843 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2930706364, }, + ["UniqueEnemiesBlockedAreIntimidatedDuration1"] = { affix = "", "Intimidate Enemies on Block for 8 seconds", statOrder = { 6917 }, level = 1, group = "EnemiesBlockedAreIntimidatedDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3703496511, }, + ["UniqueHasOnslaught1"] = { affix = "", "Onslaught", statOrder = { 3172 }, level = 1, group = "HasOnslaught", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1520059289, }, + ["UniqueChanceToIntimidateOnHit1"] = { affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5180 }, level = 1, group = "ChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 78985352, }, + ["UniqueExperienceIncrease1"] = { affix = "", "5% increased Experience gain", statOrder = { 1397 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666934677, }, + ["UniquePowerChargeOnCritChance1"] = { affix = "", "25% chance to gain a Power Charge on Critical Hit", statOrder = { 1512 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHash = 3814876985, }, + ["UniqueIncreasedStrengthRequirements1"] = { affix = "", "50% increased Strength Requirement", statOrder = { 820 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, }, + ["UniqueRechargeOnManaFlask1"] = { affix = "", "Energy Shield Recharge starts when you use a Mana Flask", statOrder = { 9476 }, level = 1, group = "RechargeOnManaFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2402413437, }, + ["UniqueAlwaysDrinkingFlask1"] = { affix = "", "This Flask cannot be Used but applies its Effect constantly", statOrder = { 609 }, level = 62, group = "FlaskAlwaysDrinking", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2980117882, }, + ["UniqueAilmentChanceRecieved1"] = { affix = "", "(80-100)% increased Chance to be afflicted by Ailments when Hit", statOrder = { 5111 }, level = 1, group = "AilmentChanceRecieved", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 892489594, }, + ["UniqueMovementVelocityWithAilment1"] = { affix = "", "25% increased Movement Speed while affected by an Ailment", statOrder = { 8588 }, level = 1, group = "MovementVelocityWithAilment", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 610276769, }, + ["UniqueMinionCausticCloudOnDeath1"] = { affix = "", "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second", statOrder = { 3030 }, level = 1, group = "MinionCausticCloudOnDeath", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHash = 688802590, }, + ["UniqueLocalDoubleStunDamage1"] = { affix = "", "Causes Double Stun Buildup", statOrder = { 7230 }, level = 1, group = "LocalDoubleStunDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 769129523, }, + ["UniqueLocalBreakArmourOnHit1"] = { affix = "", "Hits Break (30-50) Armour", statOrder = { 7147 }, level = 1, group = "LocalBreakArmourOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 289086688, }, + ["UniqueBreakArmourWithPhysicalSpells1"] = { affix = "", "DNT-UNUSED Break Armour equal to (5-8)% of Physical Spell damage dealt", statOrder = { 4288 }, level = 1, group = "PhysicalSpellArmourBreak", weightKey = { }, weightVal = { }, modTags = { "physical", "caster" }, tradeHash = 2795257911, }, + ["UniqueLocalFireExposureOnArmourBreak1"] = { affix = "", "Inflicts Fire Exposure when this Weapon Fully Breaks Armour", statOrder = { 7149 }, level = 1, group = "LocalFireExposureOnArmourBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3439162551, }, + ["UniqueIncreasedStunThreshold1"] = { affix = "", "20% reduced Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 680068163, }, + ["UniqueDoubleStunThresholdWhileActiveBlock1"] = { affix = "", "Double Stun Threshold while Shield is Raised", statOrder = { 7350 }, level = 1, group = "DoubleStunThresholdWhileActiveBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3686997387, }, + ["UniqueRageOnHit1"] = { affix = "", "Gain 1 Rage on Melee Hit", statOrder = { 6431 }, level = 1, group = "RageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2709367754, }, + ["UniqueIncreasedStunThresholdPerRage1"] = { affix = "", "Every Rage also grants 1% increased Stun Threshold", statOrder = { 10009 }, level = 1, group = "IncreasedStunThresholdPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 352044736, }, + ["UniqueIncreasedArmourPerRage1"] = { affix = "", "Every Rage also grants 1% increased Armour", statOrder = { 9997 }, level = 1, group = "IncreasedArmourPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2995914769, }, + ["UniquePhysicalDamagePin1"] = { affix = "", "Physical Damage is Pinning", statOrder = { 4598 }, level = 1, group = "PhysicalDamagePin", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 2041668411, }, + ["UniqueLocalPhysicalDamageAddedAsEachElement1"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3809 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHash = 3620731914, }, + ["UniqueBlockChanceToAllies1"] = { affix = "", "Allies in your Presence have Block Chance equal to yours", statOrder = { 8789 }, level = 1, group = "BlockChanceToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1361645249, }, + ["UniqueNoMovementPenaltyRaisedShield1"] = { affix = "", "No Movement Speed Penalty while Shield is Raised", statOrder = { 8649 }, level = 1, group = "NoMovementPenaltyRaisedShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 585231074, }, + ["UniqueLocalMaimOnCrit1"] = { affix = "", "Maim on Critical Hit", statOrder = { 7145 }, level = 1, group = "LocalMaimOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2895144208, }, + ["UniqueAlwaysCritHeavyStun1"] = { affix = "", "Always deals Critical Hits against Heavy Stunned Enemies", statOrder = { 7143 }, level = 1, group = "AlwaysCritHeavyStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2214130968, }, + ["UniqueBaseLifeRegenToAllies1"] = { affix = "", "50% of your Base Life Regeneration is granted to Allies in your Presence", statOrder = { 899 }, level = 82, group = "BaseLifeRegenToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4287671144, }, + ["UniqueManaScarificeToAllies1"] = { affix = "", "When a Party Member in your Presence Casts a Spell, you", "Sacrifice 20% of Mana and they Leech that Mana", statOrder = { 9776, 9776.1 }, level = 1, group = "ManaScarificeToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 603021645, }, + ["UniqueCannotBlock1"] = { affix = "", "Cannot Block", statOrder = { 2872 }, level = 1, group = "CannotBlockAttacks", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1465760952, }, + ["UniqueMaximumBlockToMaximumResistances1"] = { affix = "", "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", statOrder = { 8297 }, level = 1, group = "MaximumBlockToMaximumResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3679696791, }, + ["UniqueDisableShieldSkills1"] = { affix = "", "Cannot use Shield Skills", statOrder = { 9980 }, level = 1, group = "DisableShieldSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 65135897, }, + ["UniqueFullManaThreshold1"] = { affix = "", "You count as on Full Mana while at 90% of maximum Mana or above", statOrder = { 6274 }, level = 1, group = "FullManaThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 423304126, }, + ["UniqueIncreasedAttackSpeedFullMana1"] = { affix = "", "25% increased Attack Speed while on Full Mana", statOrder = { 4424 }, level = 1, group = "IncreasedAttackSpeedFullMana", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 4145314483, }, + ["UniqueFireShocks1"] = { affix = "", "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes", statOrder = { 2508 }, level = 1, group = "FireShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "ailment" }, tradeHash = 2949096603, }, + ["UniqueColdIgnites1"] = { affix = "", "Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup", statOrder = { 2509 }, level = 1, group = "ColdIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHash = 1261612903, }, + ["UniqueLightningFreezes1"] = { affix = "", "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance", statOrder = { 2510 }, level = 1, group = "LightningFreezes", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHash = 1011772129, }, + ["UniqueLifeCostAsManaCost1"] = { affix = "", "Skills gain a Base Life Cost equal to 100% of Base Mana Cost", statOrder = { 4607 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3605834869, }, + ["UniqueLifeCostAsManaCost2"] = { affix = "", "Skills gain a Base Life Cost equal to 10% of Base Mana Cost", statOrder = { 4607 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3605834869, }, + ["UniqueSpellDamageLifeLeech1"] = { affix = "", "10% of Spell Damage Leeched as Life", statOrder = { 4575 }, level = 1, group = "SpellDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 782941180, }, + ["UniqueFireDamageTakenAsPhysical1"] = { affix = "", "100% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2117 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHash = 3205239847, }, + ["UniqueCriticalStrikeMultiplierOverride1"] = { affix = "", "Your Critical Damage Bonus is 250%", statOrder = { 5475 }, level = 1, group = "CriticalStrikeMultiplierIs250", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 2516303866, }, + ["UniqueCriticalStrikesCannotBeRerolled1"] = { affix = "", "Your Critical Hit Chance cannot be Rerolled", statOrder = { 5443 }, level = 1, group = "CriticalStrikesCannotBeRerolled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 4159551976, }, + ["UniqueIgniteEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Ignited as though dealt 100 Base Fire Damage", statOrder = { 6812 }, level = 1, group = "IgniteEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1433051415, }, + ["UniqueAttackerTakesLightningDamage1"] = { affix = "", "Reflects 1 to 250 Lightning Damage to Melee Attackers", statOrder = { 1858 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1243237244, }, + ["UniqueDamageCannotBypassEnergyShield1"] = { affix = "", "Damage cannot bypass Energy Shield", statOrder = { 9779 }, level = 1, group = "DamageCannotBypassEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 93764325, }, + ["UniqueBleedsAlwaysAggravated1"] = { affix = "", "Bleeding you inflict is Aggravated", statOrder = { 4128 }, level = 1, group = "BleedsAlwaysAggravated", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 841429130, }, + ["UniqueSlowPotency1"] = { affix = "", "50% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 924253255, }, + ["UniqueHinderEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Hindered", statOrder = { 4559 }, level = 1, group = "HinderEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2890401248, }, + ["UniqueGainDruidicProwessOnSpendingXRage1"] = { affix = "", "Gain 1 Druidic Prowess for every 20 total Rage spent", statOrder = { 6345 }, level = 1, group = "GainDruidicProwessOnSpendingXRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1273508088, }, + ["UniqueGlobalChanceToBleed1"] = { affix = "", "50% chance to inflict Bleeding on Hit", statOrder = { 4532 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2174054121, }, + ["UniqueGlobalChanceToBleed2"] = { affix = "", "(10-20)% chance to inflict Bleeding on Hit", statOrder = { 4532 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2174054121, }, + ["UniqueGlobalChanceToBleed3"] = { affix = "", "25% chance to inflict Bleeding on Hit", statOrder = { 4532 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2174054121, }, + ["UniqueAggravateBleedOnCrit1"] = { affix = "", "Aggravate Bleeding on targets you Critically Hit with Attacks", statOrder = { 4120 }, level = 1, group = "AggravateBleedOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2438634449, }, + ["UniqueLifeLeechToAllies1"] = { affix = "", "Leeching Life from your Hits causes Allies in your Presence to also Leech the same amount of Life", statOrder = { 6997 }, level = 1, group = "LifeLeechToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3605721598, }, + ["UniqueRandomMovementVelocityOnHit1"] = { affix = "", "Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again", statOrder = { 8357 }, level = 1, group = "RandomMovementVelocityOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 796381300, }, + ["UniqueProjectilesSplitCount1"] = { affix = "", "Projectiles Split towards +2 targets", statOrder = { 8986 }, level = 1, group = "ProjectilesSplitCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3464380325, }, + ["UniquePowerChargeOnHit1"] = { affix = "", "20% chance to gain a Power Charge on Hit", statOrder = { 1516 }, level = 1, group = "PowerChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 1453197917, }, + ["UniqueLosePowerChargesOnMaxCharges1"] = { affix = "", "Lose all Power Charges on reaching maximum Power Charges", statOrder = { 3178 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2135899247, }, + ["UniqueShockOnMaxPowerCharges1"] = { affix = "", "Shocks you when you reach maximum Power Charges", statOrder = { 3179 }, level = 1, group = "ShockOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 4256314560, }, + ["UniqueMinionAddedColdDamageMaximumLife1"] = { affix = "", "Minions deal 5% of your Life as additional Cold Damage with Attacks", statOrder = { 8451 }, level = 1, group = "MinionAddedColdDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1403346025, }, + ["UniqueStatLifeReservation1"] = { affix = "", "Reserves 15% of Life", statOrder = { 2112 }, level = 1, group = "StatLifeReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2492660287, }, + ["UniqueElementalDamageTakenAsChaos1"] = { affix = "", "20% of Elemental damage from Hits taken as Chaos damage", statOrder = { 2126 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, tradeHash = 1175213674, }, + ["UniqueChanceToBePoisoned1"] = { affix = "", "+25% chance to be Poisoned", statOrder = { 2968 }, level = 1, group = "ChanceToBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 4250009622, }, + ["UniqueEnduranceChargeDuration1"] = { affix = "", "25% reduced Endurance Charge Duration", statOrder = { 1789 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1170174456, }, + ["UniqueLifeGainedOnEnduranceChargeConsumed1"] = { affix = "", "Recover 5% of maximum Life for each Endurance Charge consumed", statOrder = { 9087 }, level = 1, group = "LifeGainedOnEnduranceChargeConsumed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 939832726, }, + ["UniqueCullingStrikeThreshold1"] = { affix = "", "100% increased Culling Strike Threshold", statOrder = { 5520 }, level = 1, group = "CullingStrikeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3563080185, }, + ["UniqueNoSlowPotency1"] = { affix = "", "Your speed is unaffected by Slows", statOrder = { 9338 }, level = 1, group = "NoSlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 50721145, }, + ["UniqueLifeRegenerationPercent1"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, + ["UniqueLifeRegenerationPercentOnLowLife1"] = { affix = "", "Regenerate 3% of maximum Life per second while on Low Life", statOrder = { 1618 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3942946753, }, + ["UniqueFireResistOnLowLife1"] = { affix = "", "+25% to Fire Resistance while on Low Life", statOrder = { 1412 }, level = 1, group = "FireResistOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 38301299, }, + ["UniqueSpellDamagePerSpirit1"] = { affix = "", "(8-12)% increased Spell Damage per 10 Spirit", statOrder = { 9414 }, level = 1, group = "SpellDamagePerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2412053423, }, + ["UniqueFlaskLifeRecoveryEnergyShield1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield", statOrder = { 7008 }, level = 1, group = "FlaskLifeRecoveryEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2812872407, }, + ["UniqueDamageRemovedFromManaBeforeLife1"] = { affix = "", "50% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 458438597, }, + ["UniqueUnaffectedByCurses1"] = { affix = "", "Unaffected by Curses", statOrder = { 2148 }, level = 1, group = "UnaffectedByCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3809896400, }, + ["UniqueReflectCurses1"] = { affix = "", "Curse Reflection", statOrder = { 2146 }, level = 1, group = "ReflectCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1731672673, }, + ["UniqueChilledWhileBleeding1"] = { affix = "", "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", statOrder = { 4160 }, level = 45, group = "ChilledWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2420248029, }, + ["UniqueChilledWhilePoisoned1"] = { affix = "", "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", statOrder = { 4161 }, level = 45, group = "ChilledWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1291285202, }, + ["UniqueNonChilledEnemiesBleedAndChill1"] = { affix = "", "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", statOrder = { 4162 }, level = 1, group = "NonChilledEnemiesBleedAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1717295693, }, + ["UniqueNonChilledEnemiesPoisonAndChill1"] = { affix = "", "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", statOrder = { 4163 }, level = 1, group = "NonChilledEnemiesPoisonAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1375667591, }, + ["UniqueArmourAppliesToLightningDamage1"] = { affix = "", "+100% of Armour also applies to Lightning Damage", statOrder = { 4516 }, level = 1, group = "ArmourAppliesToLightningDamage", weightKey = { }, weightVal = { }, modTags = { "armour", "defences", "elemental", "lightning" }, tradeHash = 2134207902, }, + ["UniqueLightningResistNoReduction1"] = { affix = "", "Lightning Resistance does not affect Lightning damage taken", statOrder = { 7094 }, level = 1, group = "LightningResistNoReduction", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 3999959974, }, + ["UniqueNearbyEnemyLightningResistanceEqual1"] = { affix = "", "Enemies in your Presence have Lightning Resistance equal to yours", statOrder = { 5950 }, level = 1, group = "NearbyEnemyLightningResistanceEqual", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1546580830, }, + ["UniquePhysicalDamageTakenAsLightningPercent1"] = { affix = "", "(30-50)% of Physical damage from Hits taken as Lightning damage", statOrder = { 2121 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHash = 425242359, }, + ["UniqueMaximumBlockChanceIfNotBlockedRecently1"] = { affix = "", "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently", statOrder = { 8286 }, level = 1, group = "MaximumBlockChanceIfNotBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2584264074, }, + ["UniqueInstantLifeFlaskRecovery1"] = { affix = "", "Life Recovery from Flasks is instant", statOrder = { 6974 }, level = 1, group = "InstantLifeFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 720388959, }, + ["UniqueLifeLeechOvercapLife1"] = { affix = "", "Life Leech can Overflow Maximum Life", statOrder = { 6989 }, level = 1, group = "LifeLeechOvercapLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2714890129, }, + ["UniqueLifeFlasksOvercapLife1"] = { affix = "", "Life Recovery from Flasks can Overflow Maximum Life", statOrder = { 6973 }, level = 75, group = "LifeFlasksOvercapLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1245896889, }, + ["UniqueHasSoulEater1"] = { affix = "", "Soul Eater", statOrder = { 9784 }, level = 1, group = "HasSoulEater", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1404607671, }, + ["UniqueDoublePresenceRadius1"] = { affix = "", "Presence Radius is doubled", statOrder = { 9783 }, level = 1, group = "DoublePresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1810907437, }, + ["UniqueLifeFlaskChargeGeneration1"] = { affix = "", "Life Flasks gain 0.25 charges per Second", statOrder = { 6451 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1102738251, }, + ["UniqueLifeFlaskChargeGeneration2"] = { affix = "", "Life Flasks gain (0.17-0.25) charges per Second", statOrder = { 6451 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1102738251, }, + ["UniqueManaFlaskChargeGeneration1"] = { affix = "", "Mana Flasks gain 0.25 charges per Second", statOrder = { 6452 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2200293569, }, + ["UniqueManaFlaskChargeGeneration2"] = { affix = "", "Mana Flasks gain (0.17-0.25) charges per Second", statOrder = { 6452 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2200293569, }, + ["UniqueManaFlaskChargeGeneration3"] = { affix = "", "Mana Flasks gain (0.1-0.25) charges per Second", statOrder = { 6452 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2200293569, }, + ["UniqueCharmChargeGeneration1"] = { affix = "", "Charms gain 0.5 charges per Second", statOrder = { 6448 }, level = 1, group = "CharmChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 185580205, }, + ["UniqueChaosResistanceIsZero1"] = { affix = "", "Chaos Resistance is zero", statOrder = { 10003 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2439129490, }, + ["UniqueChaosResistanceIsZero2"] = { affix = "", "Chaos Resistance is zero", statOrder = { 10003 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2439129490, }, + ["UniqueRecoverLifePercentOnBlock1"] = { affix = "", "Recover 4% of maximum Life when you Block", statOrder = { 2682 }, level = 1, group = "RecoverLifePercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 2442647190, }, + ["UniqueIntimidateOnCurse1"] = { affix = "", "Enemies you Curse are Intimidated", statOrder = { 5966 }, level = 1, group = "IntimidateOnCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 147006673, }, + ["UniqueSelfStatusAilmentDuration1"] = { affix = "", "50% increased Elemental Ailment Duration on you", statOrder = { 1549 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 1745952865, }, + ["UniqueCurseNoActivationDelay1"] = { affix = "", "Curses have no Activation Delay", statOrder = { 9801 }, level = 1, group = "CurseNoActivationDelay", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3751072557, }, + ["UniqueSetMovementVelocityPerEvasion1"] = { affix = "", "Increases Movement Speed by 25%, plus 1% per 600 Evasion Rating, up to a maximum of 75%", "Other Modifiers to Movement Speed except for Sprinting do not apply", statOrder = { 8592, 8592.1 }, level = 1, group = "SetMovementVelocityPerEvasion", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3881997959, }, + ["UniqueInstantLifeFlaskOnLowLife1"] = { affix = "", "Life Flasks used while on Low Life apply Recovery Instantly", statOrder = { 6975 }, level = 1, group = "InstantLifeFlaskOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1200347828, }, + ["UniqueInstantManaFlaskOnLowMana1"] = { affix = "", "Mana Flasks used while on Low Mana apply Recovery Instantly", statOrder = { 7493 }, level = 1, group = "InstantManaFlaskOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1839832419, }, + ["UniqueDamageAddedAsFireAttacks1"] = { affix = "", "Attacks Gain (5-10)% of Damage as Extra Fire Damage", statOrder = { 8693 }, level = 1, group = "DamageAddedAsFireAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHash = 1049080093, }, + ["UniqueDamageAddedAsColdAttacks1"] = { affix = "", "Attacks Gain (5-10)% of Damage as Extra Cold Damage", statOrder = { 8692 }, level = 1, group = "DamageAddedAsColdAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack" }, tradeHash = 1484500028, }, + ["UniqueDamageAddedAsChaos1"] = { affix = "", "Gain (30-40)% of Damage as Extra Chaos Damage", statOrder = { 1602 }, level = 1, group = "DamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 3398787959, }, + ["UniquePhysicalDamageAddedAsChaosAttacks1"] = { affix = "", "Attacks Gain (10-20)% of Physical Damage as extra Chaos Damage", statOrder = { 8709 }, level = 1, group = "PhysicalDamageAddedAsChaosAttacks", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos", "attack" }, tradeHash = 261503687, }, + ["UniqueEnemiesChilledIncreasedDamageTaken1"] = { affix = "", "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", statOrder = { 5927 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1816894864, }, + ["UniqueSelfPhysicalDamageOnMinionDeath1"] = { affix = "", "300 Physical Damage taken on Minion Death", statOrder = { 2652 }, level = 1, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 4176970656, }, + ["UniqueOnslaughtBuffOnKill1"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2307 }, level = 1, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1195849808, }, + ["UniqueBuildDamageAgainstRareAndUnique1"] = { affix = "", "Deal 4% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%", statOrder = { 9782 }, level = 1, group = "BuildDamageAgainstRareAndUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4258409981, }, + ["UniqueAlwaysPierceBurningEnemies1"] = { affix = "", "Projectiles Pierce all Ignited enemies", statOrder = { 4177 }, level = 1, group = "AlwaysPierceBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2214228141, }, + ["UniqueStunRecovery1"] = { affix = "", "200% increased Stun Recovery", statOrder = { 993 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2511217560, }, + ["UniqueSpellDamageModifiersApplyToAttackDamage1"] = { affix = "", "Increases and Reductions to Spell damage also apply to Attacks", statOrder = { 2348 }, level = 1, group = "SpellDamageModifiersApplyToAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3811649872, }, + ["UniqueLifeRecharge1"] = { affix = "", "Life Recharges", statOrder = { 4577 }, level = 1, group = "LifeRecharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3971919056, }, + ["UniqueIncreasedTotemLife1"] = { affix = "", "(20-30)% reduced Totem Life", statOrder = { 1459 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 686254215, }, + ["UniqueAdditionalTotems1"] = { affix = "", "+1 to maximum number of Summoned Totems", statOrder = { 1903 }, level = 1, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 429867172, }, + ["UniqueRandomlyCursedWhenTotemsDie1"] = { affix = "", "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", statOrder = { 2219 }, level = 1, group = "RandomlyCursedWhenTotemsDie", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2918129907, }, + ["UniqueWarcryCorpseExplosion1"] = { affix = "", "Warcries Explode Corpses dealing 10% of their Life as Physical Damage", statOrder = { 5386 }, level = 1, group = "WarcryCorpseExplosion", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 11014011, }, + ["UniqueWarcrySpeed1"] = { affix = "", "(20-30)% increased Warcry Speed", statOrder = { 2884 }, level = 1, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1316278494, }, + ["UniqueWarcryAreaOfEffect1"] = { affix = "", "Warcry Skills have (20-30)% increased Area of Effect", statOrder = { 9891 }, level = 1, group = "WarcryAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2567751411, }, + ["UniqueSummonTotemCastSpeed1"] = { affix = "", "25% increased Totem Placement speed", statOrder = { 2250 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, }, + ["UniqueTotemReflectFireDamage1"] = { affix = "", "Totems Reflect 25% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3354 }, level = 1, group = "TotemReflectFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 1723061251, }, + ["UniqueMeleeCriticalStrikeMultiplier1"] = { affix = "", "+(100-150)% to Melee Critical Damage Bonus", statOrder = { 1330 }, level = 1, group = "MeleeWeaponCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHash = 4237442815, }, + ["UniquePhysicalDamageTaken1"] = { affix = "", "(40-50)% increased Physical Damage taken", statOrder = { 1891 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3853018505, }, + ["UniqueFlatPhysicalDamageTaken1"] = { affix = "", "-30 Physical Damage taken from Hits", statOrder = { 1885 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 321765853, }, + ["UniqueGainRageOnManaSpent1"] = { affix = "", "Gain (5-10) Rage after Spending a total of 200 Mana", statOrder = { 6432 }, level = 1, group = "GainRageOnManaSpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3199910734, }, + ["UniqueRageGrantsSpellDamage1"] = { affix = "", "Rage grants Spell damage instead of Attack damage", statOrder = { 9044 }, level = 1, group = "RageGrantsSpellDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2933909365, }, + ["UniqueAllDefences1"] = { affix = "", "30% reduced Global Defences", statOrder = { 2486 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 1389153006, }, + ["UniqueGoldFoundIncrease1"] = { affix = "", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6476 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3175163625, }, + ["UniqueCannotGainEnergyShield1"] = { affix = "", "Cannot have Energy Shield", statOrder = { 2734 }, level = 1, group = "CannotGainEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 410952253, }, + ["UniqueLifeRegenPerEnergyShield1"] = { affix = "", "Regenerate 0.05 Life per second per Maximum Energy Shield", statOrder = { 7024 }, level = 1, group = "LifeRegenPerEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3276271783, }, + ["UniqueGainMissingLifeBeforeHit1"] = { affix = "", "Recover (20-30)% of Missing Life before being Hit by an Enemy", statOrder = { 8559 }, level = 1, group = "GainMissingLifeBeforeHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1990472846, }, + ["UniqueAccuracyUnaffectedDistance1"] = { affix = "", "You have no Accuracy Penalty at Distance", statOrder = { 5682 }, level = 1, group = "AccuracyUnaffectedDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3070990531, }, + ["UniqueAccuracyOver100"] = { affix = "", "Chance to Hit with Attacks can exceed 100%", "Gain additional Critical Hit Chance equal to (10-25)% of excess chance to Hit with Attacks", statOrder = { 6307, 6307.1 }, level = 1, group = "AccuracyOver100", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2800049475, }, + ["UniqueRepeatNoEnemyInPresence"] = { affix = "", "Barrageable Attacks with this Bow Repeat +2 times if no enemies are in your Presence", statOrder = { 3989 }, level = 1, group = "UniqueRepeatNoEnemyInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 621493497, }, + ["UniqueSkillEffectDuration1"] = { affix = "", "(30-50)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, }, + ["UniqueSkillEffectDuration2"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, }, + ["UniqueGlobalCooldownRecovery1"] = { affix = "", "(30-50)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1004011302, }, + ["UniqueMinionDamageAffectsYou1"] = { affix = "", "Increases and Reductions to Minion Damage also affect you", statOrder = { 3874 }, level = 1, group = "MinionDamageAffectsYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1631928082, }, + ["UniqueMinionAttackSpeedAffectsYou1"] = { affix = "", "Increases and Reductions to Minion Attack Speed also affect you", statOrder = { 3322 }, level = 1, group = "MinionAttackSpeedAffectsYou", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2293111154, }, + ["UniqueDamagePerMinion1"] = { affix = "", "(5-8)% increased Damage per Minion", statOrder = { 5558 }, level = 1, group = "DamagePerMinion", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 3399499561, }, + ["UniqueManaRegenerationWhileStationary1"] = { affix = "", "40% increased Mana Regeneration Rate while stationary", statOrder = { 3883 }, level = 1, group = "ManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3308030688, }, + ["UniqueEnergyShieldAsPercentOfLife1"] = { affix = "", "Gain (10-15)% of maximum Life as Extra maximum Energy Shield", statOrder = { 8334 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1228337241, }, + ["UniqueDamageBypassEnergyShieldPercent1"] = { affix = "", "10% of Damage taken bypasses Energy Shield", statOrder = { 4510 }, level = 1, group = "DamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2448633171, }, + ["UniqueLoseEnergyShieldPerSecond1"] = { affix = "", "You lose 5% of maximum Energy Shield per second", statOrder = { 6008 }, level = 1, group = "LoseEnergyShieldPerSecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2350411833, }, + ["UniqueLifeLeechExcessToEnergyShield1"] = { affix = "", "Excess Life Recovery from Leech is applied to Energy Shield", statOrder = { 6990 }, level = 1, group = "LifeLeechExcessToEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 999436592, }, + ["UniqueMinionLifeTiedToOwner1"] = { affix = "", "Minions in Presence lose Life when you lose Life", "Minions in Presence gain Life when you gain Life", statOrder = { 9798, 9798.1 }, level = 1, group = "MinionLifeTiedToOwner", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2247039371, }, + ["UniqueRingIgniteProliferation1"] = { affix = "", "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", statOrder = { 1872 }, level = 1, group = "RingIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3314057862, }, + ["UniqueStaffIgniteProliferation1"] = { affix = "", "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", statOrder = { 1872 }, level = 1, group = "RingIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3314057862, }, + ["UniqueNoCriticalStrikeMultiplier1"] = { affix = "", "Your Critical Hits do not deal extra Damage", statOrder = { 1340 }, level = 32, group = "NoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 4058681894, }, + ["UniqueLocalNoCriticalStrikeMultiplier1"] = { affix = "", "Critical Hits do not deal extra Damage", statOrder = { 7332 }, level = 1, group = "LocalNoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 1508661598, }, + ["UniqueThornsCriticalStrikeChance1"] = { affix = "", "+25% to Thorns Critical Hit Chance", statOrder = { 4616 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2715190555, }, + ["UniqueLocalDazeBuildup1"] = { affix = "", "Dazes on Hit", statOrder = { 7439 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2933846633, }, + ["UniqueAftershockChance1"] = { affix = "", "Slam Skills you use yourself cause an additional Aftershock", statOrder = { 9981 }, level = 1, group = "AftershockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2045949233, }, + ["UniqueAncestralBoostEveryXAttacksWhileShapeshifted1"] = { affix = "", "Every second Slam Skill you use while Shapeshifted is Ancestrally Boosted", "Every second Strike Skill you use while Shapeshifted is Ancestrally Boosted", statOrder = { 4192, 4192.1 }, level = 1, group = "AncestralBoostEveryXAttacksWhileShapeshifted", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2224139044, }, + ["UniqueDoubleEnergyGain1"] = { affix = "", "Energy Generation is doubled", statOrder = { 5991 }, level = 1, group = "DoubleEnergyGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 793801176, }, + ["UniqueSpellLifeCostPercent1"] = { affix = "", "25% of Spell Mana Cost Converted to Life Cost", statOrder = { 9436 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 3544050945, }, + ["UniqueLocalReloadSpeed1"] = { affix = "", "30% reduced Reload Speed", statOrder = { 920 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 710476746, }, + ["UniqueLocalReloadSpeed2"] = { affix = "", "(7-14)% increased Reload Speed", statOrder = { 920 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 710476746, }, + ["UniqueChanceForNoBoltReload1"] = { affix = "", "Bolts fired by Crossbow Attacks have 100% chance to not", "expend Ammunition if you've Reloaded Recently", statOrder = { 5509, 5509.1 }, level = 1, group = "ChanceForNoBoltReload", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 842299438, }, + ["UniqueHalvedSpiritReservation1"] = { affix = "", "Skills reserve 50% less Spirit", statOrder = { 9809 }, level = 1, group = "HalvedSpiritReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2838161567, }, + ["UniqueLocalCritChanceOverride1"] = { affix = "", "This Weapon's Critical Hit Chance is 100%", statOrder = { 3360 }, level = 1, group = "LocalCritChanceOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3384885789, }, + ["UniqueAdditionalAttackChain1"] = { affix = "", "Attacks Chain 2 additional times", statOrder = { 3684 }, level = 1, group = "AttackAdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3868118796, }, + ["UniqueStrengthRequirements1"] = { affix = "", "-15 Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, }, + ["UniqueStrengthRequirements2"] = { affix = "", "+100 Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, }, + ["UniqueStrengthRequirements3"] = { affix = "", "+150 Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, }, + ["UniqueStrengthRequirements4"] = { affix = "", "+25 Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, }, + ["UniqueDexterityRequirements1"] = { affix = "", "+50 Dexterity Requirement", statOrder = { 810 }, level = 1, group = "DexterityRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1133453872, }, + ["UniqueIntelligenceRequirements1"] = { affix = "", "+100 Intelligence Requirement", statOrder = { 812 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2153364323, }, + ["UniqueIntelligenceRequirements2"] = { affix = "", "+200 Intelligence Requirement", statOrder = { 812 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2153364323, }, + ["UniqueChillHitsCauseShattering1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5278 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3119292058, }, + ["UniqueTriggerEmberFusilladeOnSpellCast1"] = { affix = "", "Trigger Ember Fusillade Skill on casting a Spell", statOrder = { 7224 }, level = 1, group = "GrantsTriggeredEmberFusillade", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 826162720, }, + ["UniqueTriggerSparkOnKillingShockedEnemy1"] = { affix = "", "Trigger Spark Skill on killing a Shocked Enemy", statOrder = { 7227 }, level = 1, group = "GrantsTriggeredSpark", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 811217923, }, + ["UniqueTriggerLightningBoltOnCriticalStrike1"] = { affix = "", "Trigger Lightning Bolt Skill on Critical Hit", statOrder = { 7226 }, level = 1, group = "GrantsTriggeredLightningBolt", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 704919631, }, + ["UniqueOnlySocketRubyJewel1"] = { affix = "", "You can only Socket Ruby Jewels in this item", statOrder = { 7170 }, level = 1, group = "OnlySocketRubyJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4031148736, }, + ["UniqueOnlySocketEmeraldJewel1"] = { affix = "", "You can only Socket Emerald Jewels in this item", statOrder = { 7169 }, level = 1, group = "OnlySocketEmeraldJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 3598729471, }, + ["UniqueOnlySocketSapphireJewel1"] = { affix = "", "You can only Socket Sapphire Jewels in this item", statOrder = { 7171 }, level = 1, group = "OnlySocketSapphireJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 21302430, }, + ["UniqueFireResistanceNoPenalty1"] = { affix = "", "Fire Resistance is unaffected by Area Penalties", statOrder = { 6163 }, level = 1, group = "FireResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3247805335, }, + ["UniqueColdResistanceNoPenalty1"] = { affix = "", "Cold Resistance is unaffected by Area Penalties", statOrder = { 5324 }, level = 1, group = "ColdResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4207433208, }, + ["UniqueLightningResistanceNoPenalty1"] = { affix = "", "Lightning Resistance is unaffected by Area Penalties", statOrder = { 7093 }, level = 1, group = "LightningResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3631920880, }, + ["UniqueTriggerGasCloudOnMainHandHit1"] = { affix = "", "Triggers Gas Cloud on Hit", statOrder = { 7225 }, level = 1, group = "GrantsTriggeredGasCloud", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1652674074, }, + ["UniqueTriggerDetonationOnOffHandHit1"] = { affix = "", "Trigger Detonation on Hit", statOrder = { 7223 }, level = 1, group = "GrantsTriggeredDetonation", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1524904258, }, + ["UniqueTakeFireDamageOnIgnite1"] = { affix = "", "Take 100 Fire Damage when you Ignite an Enemy", statOrder = { 6153 }, level = 65, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2518598473, }, + ["UniqueDodgeRollDistance1"] = { affix = "", "+1 metre to Dodge Roll distance", statOrder = { 5801 }, level = 1, group = "DodgeRollDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 258119672, }, + ["UniqueLioneyeDodgeRoll1"] = { affix = "", "+2 metres to Dodge Roll distance if you haven't Dodge Rolled Recently", "-1 metre to Dodge Roll distance if you've Dodge Rolled Recently", statOrder = { 3987, 3988 }, level = 1, group = "DodgeRollEnhancedWithTradeOff", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1898996531, }, + ["UniqueEvasionRatingDodgeRoll1"] = { affix = "", "50% increased Evasion Rating if you've Dodge Rolled Recently", statOrder = { 6081 }, level = 1, group = "EvasionRatingDodgeRoll", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1040569494, }, + ["UniqueCriticalStrikesIgnoreResistances1"] = { affix = "", "Critical Hits ignore Enemy Monster Elemental Resistances", statOrder = { 3038 }, level = 1, group = "CriticalStrikesIgnoreResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1094937621, }, + ["UniqueEnergyShieldRegenerationFromLife1"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9143 }, level = 44, group = "EnergyShieldRegenerationFromLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 632761194, }, + ["UniqueGainManaAsExtraEnergyShield1"] = { affix = "", "Gain (4-6)% of maximum Mana as Extra maximum Energy Shield", statOrder = { 1840 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3027830452, }, + ["UniqueAdditionalChargeGeneration1"] = { affix = "", "Gain an additional Charge when you gain a Charge", statOrder = { 5142 }, level = 1, group = "AdditionalChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1555237944, }, + ["UniqueModifyableWhileCorrupted1"] = { affix = "", "Can be modified while Corrupted", statOrder = { 12 }, level = 66, group = "ModifyableWhileCorruptedAndSpecialCorruption", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1161337167, }, + ["UniqueCharmChargesToLifeFlasks1"] = { affix = "", "50% of charges used by Charms granted to your Life Flasks", statOrder = { 5228 }, level = 70, group = "CharmChargesToLifeFlasks", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2369960685, }, + ["UniqueCorruptedBloodImmunity1"] = { affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 4906 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1658498488, }, + ["UniqueLocalSoulCoreEffect1"] = { affix = "", "(66-333)% increased effect of Socketed Soul Cores", statOrder = { 7352 }, level = 60, group = "LocalSoulCoreEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4065505214, }, + ["UniqueMaximumRage1"] = { affix = "", "+(-10-10) to Maximum Rage", statOrder = { 9032 }, level = 75, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1181501418, }, + ["UniqueGainChargesOnMaximumRage1"] = { affix = "", "Gain a random Charge on reaching Maximum Rage, no more than once every (3-6) seconds", statOrder = { 6284 }, level = 1, group = "GainChargesOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2284588585, }, + ["UniqueLoseRageOnMaximumRage1"] = { affix = "", "Lose all Rage on reaching Maximum Rage", statOrder = { 7448 }, level = 1, group = "LoseRageOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3851480592, }, + ["UniqueRageOnAnyHit1"] = { affix = "", "Gain (3-6) Rage on Hit", statOrder = { 4563 }, level = 1, group = "RageOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2258007247, }, + ["UniqueLifeRegenerationNotApplied1"] = { affix = "", "Life Recovery from Regeneration is not applied", statOrder = { 7012 }, level = 1, group = "LifeRegenerationNotApplied", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3947672598, }, + ["UniqueRecoverLifeBasedOnRegen1"] = { affix = "", "Every 4 seconds, Recover 1 Life for every 0.2 Life Recovery per second from Regeneration", statOrder = { 9098 }, level = 1, group = "RecoverLifeBasedOnRegen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1457411584, }, + ["UniqueBaseLimit1"] = { affix = "", "Skills have +1 to Limit", statOrder = { 4579 }, level = 30, group = "BaseLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2942704390, }, + ["UniqueFireExposureOnShock1"] = { affix = "", "Inflict Fire Exposure on Shocking an Enemy", statOrder = { 6893 }, level = 1, group = "FireExposureOnShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1538879632, }, + ["UniqueColdExposureOnIgnite1"] = { affix = "", "Inflict Cold Exposure on Igniting an Enemy", statOrder = { 6889 }, level = 1, group = "ColdExposureOnIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3314536008, }, + ["UniqueColdExposureOnHitWithMagnitude1"] = { affix = "", "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (50-60)%", statOrder = { 4164 }, level = 1, group = "ElementalExposureEffectOnHitWithMagnitude", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 533542952, }, + ["UniqueColdExposureMagnitude1UNUSED"] = { affix = "", "Cold Exposure you inflict lowers Total Cold Resistance by an extra (20-30)%", statOrder = { 5314 }, level = 1, group = "ColdExposureAdditionalResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2243456805, }, + ["UniqueLightningExposureOnCrit1"] = { affix = "", "Inflict Lightning Exposure on Critical Hit", statOrder = { 6895 }, level = 1, group = "LightningExposureOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2665488635, }, + ["UniqueEnemiesInPresenceGainCritWeakness1"] = { affix = "", "Every second, inflicts Critical Weakness on enemies in your Presence for (15-20) seconds", statOrder = { 5944 }, level = 1, group = "EnemiesInPresenceGainCritWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1052498387, }, + ["UniqueEnemiesInPresenceBlinded1"] = { affix = "", "Enemies in your Presence are Blinded", statOrder = { 5939 }, level = 1, group = "EnemiesInPresenceBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1464727508, }, + ["UniqueFlatCooldownRecovery1"] = { affix = "", "Skills have -(2-1) seconds to Cooldown", statOrder = { 9780 }, level = 1, group = "FlatCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 396200591, }, + ["UniqueChanceToNotConsumeCorpse1"] = { affix = "", "25% chance to not destroy Corpses when Consuming Corpses", statOrder = { 5183 }, level = 1, group = "ChanceToNotConsumeCorpse", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 965913123, }, + ["UniqueDisablesOtherRingSlot1"] = { affix = "", "Can't use other Rings", statOrder = { 1399 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 64726306, }, + ["UniqueSelfCurseDuration1"] = { affix = "", "50% reduced Duration of Curses on you", statOrder = { 1836 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2920970371, }, + ["UniqueLeftRingSpellProjectilesFork1"] = { affix = "", "Left ring slot: Projectiles from Spells Fork", statOrder = { 7315 }, level = 1, group = "LeftRingSpellProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2437476305, }, + ["UniqueLeftRingSpellProjectilesCannotChain1"] = { affix = "", "Left ring slot: Projectiles from Spells cannot Chain", statOrder = { 7314 }, level = 1, group = "LeftRingSpellProjectilesCannotChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3647242059, }, + ["UniqueRightRingSpellProjectilesChain1"] = { affix = "", "Right ring slot: Projectiles from Spells Chain +1 times", statOrder = { 7342 }, level = 1, group = "RightRingSpellProjectilesChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1555918911, }, + ["UniqueRightRingSpellProjectilesCannotFork1"] = { affix = "", "Right ring slot: Projectiles from Spells cannot Fork", statOrder = { 7343 }, level = 1, group = "RightRingSpellProjectilesCannotFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2933024469, }, + ["UniqueSpellsCannotPierce1"] = { affix = "", "Projectiles from Spells cannot Pierce", statOrder = { 8992 }, level = 1, group = "SpellsCannotPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3826125995, }, + ["UniqueFlaskOverhealToGuard1"] = { affix = "", "Excess Life Recovery added as Guard for 20 seconds", statOrder = { 7360 }, level = 1, group = "FlaskOverhealToGuard", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 636464211, }, + ["UniqueAlternatingDamageTaken1"] = { affix = "", "Alternating every 5 seconds:", "Take 40% less Damage from Hits", "Take 40% less Damage over time", statOrder = { 6520, 6520.1, 6520.2 }, level = 78, group = "AlternatingDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 258955603, }, + ["UniqueLuckyBlockChance1"] = { affix = "", "Chance to Block Damage is Lucky", statOrder = { 4524 }, level = 1, group = "LuckyBlockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2957287092, }, + ["UniqueCharmsNoCharges1"] = { affix = "", "Charms use no Charges", statOrder = { 5257 }, level = 1, group = "CharmsNoCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2620375641, }, + ["UniqueAggravateBleedOnPresence1"] = { affix = "", "Aggravate Bleeding on Enemies when they Enter your Presence", statOrder = { 4123 }, level = 1, group = "AggravateBleedOnPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 874646180, }, + ["UniqueThornsDamageIncrease1"] = { affix = "", "100% increased Thorns damage", statOrder = { 9646 }, level = 1, group = "ThornsDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1315743832, }, + ["UniqueLifeCost1"] = { affix = "", "Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 1, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2480498143, }, + ["UniqueLifeCost2"] = { affix = "", "10% of Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 1, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2480498143, }, + ["UniqueDamageGainedAsChaosPerCost1"] = { affix = "", "Skills gain 1% of Damage as Chaos Damage per 3 Life Cost", statOrder = { 8668 }, level = 1, group = "DamageGainedAsChaosPerCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4117005593, }, + ["UniqueSpiritPerSocketable1"] = { affix = "", "+(10-14) to Spirit per Socket filled", statOrder = { 7355 }, level = 1, group = "SpiritPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4163415912, }, + ["UniqueMaximumLifePerSocketable1"] = { affix = "", "5% increased Maximum Life per Socket filled", statOrder = { 7325 }, level = 1, group = "MaximumLifePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2702182380, }, + ["UniqueMaximumManaPerSocketable1"] = { affix = "", "5% increased Maximum Mana per Socket filled", statOrder = { 7327 }, level = 1, group = "MaximumManaPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 911712882, }, + ["UniqueGlobalDefencesPerSocketable1"] = { affix = "", "(9-12)% increased Global Defences per Socket filled", statOrder = { 7242 }, level = 1, group = "GlobalDefencesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1225174187, }, + ["UniqueItemRarityPerSocketable1"] = { affix = "", "10% increased Rarity of Items found per Socket filled", statOrder = { 7278 }, level = 1, group = "ItemRarityPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 313223231, }, + ["UniqueAllResistancesPerSocketable1"] = { affix = "", "+(8-10)% to all Elemental Resistances per Socket filled", statOrder = { 7340 }, level = 1, group = "AllResistancesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2593651571, }, + ["UniquePercentAllAttributesPerSocketable1"] = { affix = "", "5% increased Attributes per Socket filled", statOrder = { 7138 }, level = 1, group = "PercentAllAttributesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2513318031, }, + ["UniqueBaseLifePerSocketable1"] = { affix = "", "+(45-60) to maximum Life per Socket filled", statOrder = { 7163 }, level = 1, group = "BaseLifePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 150391334, }, + ["UniqueBaseManaPerSocketable1"] = { affix = "", "+(50-60) to maximum Mana per Socket filled", statOrder = { 7164 }, level = 1, group = "BaseManaPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1036267537, }, + ["UniqueChaosResistancePerSocketable1"] = { affix = "", "+(10-13)% to Chaos Resistance per Socket filled", statOrder = { 7160 }, level = 1, group = "ChaosResistancePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1123023256, }, + ["UniqueAllAttributesPerSocketable1"] = { affix = "", "+(5-7) to all Attributes per Socket filled", statOrder = { 7136 }, level = 1, group = "AllAttributesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3474271079, }, + ["UniqueStunThresholdPerSocketable1"] = { affix = "", "+(70-90) to Stun Threshold per Socket filled", statOrder = { 7357 }, level = 1, group = "StunThresholdPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3679769182, }, + ["UniqueLifeRegenerationPerSocketable1"] = { affix = "", "(8-12) Life Regeneration per second per Socket filled", statOrder = { 7162 }, level = 1, group = "LifeRegenerationPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 332337290, }, + ["UniqueReducedExtraDamageFromCritsPerSocketable1"] = { affix = "", "Hits against you have (15-20)% reduced Critical Damage Bonus per Socket filled", statOrder = { 7165 }, level = 1, group = "ReducedExtraDamageFromCritsPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 701923421, }, + ["UniqueMaximumLightningDamagePerPower1"] = { affix = "", "On Hitting an enemy, gains maximum added Lightning damage equal to", "the enemy's Power for 20 seconds, up to a total of 500", statOrder = { 7321, 7321.1 }, level = 1, group = "MaximumLightningDamagePerPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3538915253, }, + ["UniqueSupportGemLimit1"] = { affix = "", "You can Socket 2 additional copies of each Lineage Support Gem, in different Skills", statOrder = { 7111 }, level = 1, group = "SupportGemLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 664024640, }, + ["UniqueImmobiliseThreshold1"] = { affix = "", "Immobilise enemies at 50% buildup instead of 100%", statOrder = { 5512 }, level = 1, group = "ImmobiliseThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4238331303, }, + ["UniqueImmobiliseDamageTaken1"] = { affix = "", "Enemies Immobilised by you take 20% more Damage", statOrder = { 9781 }, level = 1, group = "ImmobiliseDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1613322341, }, + ["UniqueDodgeRollAvoidAllDamage1"] = { affix = "", "Dodge Roll avoids all Hits", statOrder = { 5802 }, level = 1, group = "DodgeRollAvoidAllDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3518087336, }, + ["UniqueSpeedPerDodgeRoll20Seconds1"] = { affix = "", "10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", statOrder = { 9800 }, level = 1, group = "SpeedPerDodgeRoll20Seconds", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3156445245, }, + ["UniqueNearbyAlliesDamageAsFire1"] = { affix = "", "Allies in your Presence Gain (20-30)% of Damage as Extra Fire Damage", statOrder = { 4168 }, level = 1, group = "NearbyAlliesDamageAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHash = 2173791158, }, + ["UniqueNearbyAlliesPercentLifeRegeneration1"] = { affix = "", "Allies in your Presence Regenerate (2-3)% of their Maximum Life per second", statOrder = { 897 }, level = 1, group = "NearbyAlliesPercentLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "aura" }, tradeHash = 3081479811, }, + ["UniqueEnemiesInPresenceLowestResistance1"] = { affix = "", "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", statOrder = { 5943 }, level = 1, group = "EnemiesInPresenceLowestResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "aura" }, tradeHash = 2786852525, }, + ["UniqueEnemiesInPresenceIntimidate1"] = { affix = "", "Enemies in your Presence are Intimidated", statOrder = { 5940 }, level = 1, group = "EnemiesInPresenceIntimidate", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 3491722585, }, + ["UniquePhysicalDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Physical Damage from Hits", statOrder = { 2969 }, level = 1, group = "PhysicalDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 2415497478, }, + ["UniqueChaosDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Chaos Damage from Hits", statOrder = { 2974 }, level = 1, group = "ChaosDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 1563503803, }, + ["UniqueFireDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Fire Damage from Hits", statOrder = { 2971 }, level = 1, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHash = 42242677, }, + ["UniqueColdDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Cold Damage from Hits", statOrder = { 2972 }, level = 1, group = "ColdDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHash = 3743375737, }, + ["UniqueLightningDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Lightning Damage from Hits", statOrder = { 2973 }, level = 1, group = "LightningDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHash = 2889664727, }, + ["UniquePerfectTimingWindow1"] = { affix = "", "Skills have a (100-150)% longer Perfect Timing window", statOrder = { 8839 }, level = 1, group = "PerfectTimingWindow", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1373370443, }, + ["UniqueFlaskRecoverAllMana1"] = { affix = "", "Recover all Mana when Used", statOrder = { 7363 }, level = 1, group = "FlaskRecoverAllMana", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1002973905, }, + ["UniqueFlaskDealChaosDamageNova1"] = { affix = "", "Every 3 seconds during Effect, deal 100% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres", statOrder = { 7362 }, level = 1, group = "FlaskDealChaosDamageNova", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos" }, tradeHash = 1910039112, }, + ["UniqueFlaskTakeDamageWhenEnds1"] = { affix = "", "Deals 25% of current Mana as Chaos Damage to you when Effect ends", statOrder = { 7364 }, level = 1, group = "FlaskTakeDamageWhenEnds", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3311259821, }, + ["UniqueFlaskEffectNotRemovedOnFullMana1"] = { affix = "", "Effect is not removed when Unreserved Mana is Filled", "(200-250)% increased Duration", statOrder = { 629, 907 }, level = 1, group = "FlaskEffectNotRemovedOnFullMana", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2300024566, }, + ["UniqueTriggersRefundEnergySpent1"] = { affix = "", "Trigger skills refund half of Energy spent", statOrder = { 9709 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 599320227, }, + ["UniqueIncreasedRingBonuses1"] = { affix = "", "(40-80)% increased bonuses gained from Equipped Rings", statOrder = { 6046 }, level = 1, group = "IncreasedRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2793222406, }, + ["UniqueIncreasedLeftRingBonuses1"] = { affix = "", "(20-30)% increased bonuses gained from left Equipped Ring", statOrder = { 6044 }, level = 1, group = "IncreasedLeftRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 513747733, }, + ["UniqueIncreasedRightRingBonuses1"] = { affix = "", "(20-30)% increased bonuses gained from right Equipped Ring", statOrder = { 6045 }, level = 1, group = "IncreasedRightRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3885501357, }, + ["UniqueEnemiesInPresenceFireExposure1"] = { affix = "", "Enemies in your Presence have -25% to Fire Resistance", statOrder = { 5946 }, level = 66, group = "EnemiesInPresenceElementalExposure", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 990363519, }, + ["UniqueCriticalStrikesIgnoreLightningResistance1"] = { affix = "", "Critical Hits Ignore Enemy Monster Lightning Resistance", statOrder = { 5504 }, level = 66, group = "CriticalStrikesIgnoreLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "critical" }, tradeHash = 1289045485, }, + ["UniqueColdResistancePenetration1"] = { affix = "", "Damage Penetrates 75% Cold Resistance", statOrder = { 2614 }, level = 66, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, }, + ["UniqueOnHitBlindChilledEnemies1"] = { affix = "", "Blind Chilled enemies on Hit", statOrder = { 4778 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3450276548, }, + ["UniqueArmourOvercappedFireResistance1"] = { affix = "", "Armour is increased by Uncapped Fire Resistance", statOrder = { 4294 }, level = 1, group = "ArmourUncappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 713266390, }, + ["UniqueEvasionOvercappedLightningResistance1"] = { affix = "", "Evasion Rating is increased by Uncapped Lightning Resistance", statOrder = { 6073 }, level = 1, group = "EvasionUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 419098854, }, + ["UniqueEnergyShieldOvercappedColdResistance1"] = { affix = "", "Energy Shield is increased by Uncapped Cold Resistance", statOrder = { 6007 }, level = 1, group = "EnergyShieldUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2147773348, }, + ["UniqueAilmentThresholdOvercappedChaosResistance1"] = { affix = "", "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance", statOrder = { 4144 }, level = 1, group = "AilmentThresholdUncappedChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1000566389, }, + ["UniqueChaosDamageCanFreeze1"] = { affix = "", "Chaos Damage from Hits also Contributes to Freeze Buildup", statOrder = { 2520 }, level = 1, group = "ChaosDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "cold", "chaos", "ailment" }, tradeHash = 2973498992, }, + ["UniqueChaosDamageCanElectrocute1"] = { affix = "", "Chaos Damage from Hits also Contributes to Electrocute Buildup", statOrder = { 4535 }, level = 1, group = "ChaosDamageCanElectrocute", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHash = 2315177528, }, + ["UniqueLightningDamageToAttacksPerIntelligence1"] = { affix = "", "Adds 1 to 10 Lightning Damage to Attacks per 20 Intelligence", statOrder = { 8422 }, level = 1, group = "LightningDamageToAttacksPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHash = 3111921451, }, + ["UniqueIncreasedAttackSpeedPerDexterity1"] = { affix = "", "1% increased Attack Speed per 20 Dexterity", statOrder = { 2213 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 720908147, }, + ["UniqueMinionResistanceEqualYours1"] = { affix = "", "Minions' Resistances are equal to yours", statOrder = { 8526 }, level = 1, group = "MinionResistanceEqualYours", weightKey = { }, weightVal = { }, modTags = { "resistance", "minion" }, tradeHash = 3045072899, }, + ["UniqueSelfBleedFireDamage1"] = { affix = "", "You take Fire Damage instead of Physical Damage from Bleeding", statOrder = { 2123 }, level = 1, group = "SelfBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2022332470, }, + ["UniqueEnemyExtraDamageRollsWithLightningDamage1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky", statOrder = { 5933 }, level = 1, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 4224965099, }, + ["UniqueCurseCastSpeed1"] = { affix = "", "Curse Skills have (10-20)% increased Cast Speed", statOrder = { 1869 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "curse" }, tradeHash = 2378065031, }, + ["UniqueGlobalAdditionalCharm1"] = { affix = "", "+1 Charm Slot", statOrder = { 8739 }, level = 1, group = "GlobalAdditionalCharm", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 554899692, }, + ["UniqueMinionChaosResistance1"] = { affix = "", "Minions have +(17-23)% to Chaos Resistance", statOrder = { 2559 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance", "minion" }, tradeHash = 3837707023, }, + ["UniqueEnemyExtraDamageRollsOnLowLife1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Low Life", statOrder = { 2228 }, level = 1, group = "EnemyExtraDamageRollsOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3753748365, }, + ["UniqueAilmentThreshold1"] = { affix = "", "+(30-50) to Ailment Threshold", statOrder = { 4145 }, level = 1, group = "AilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1488650448, }, + ["UniqueAilmentThreshold2"] = { affix = "", "+(200-300) to Ailment Threshold", statOrder = { 4145 }, level = 1, group = "AilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1488650448, }, + ["UniqueEnemiesTakeIncreasedDamagePerAilmentType1"] = { affix = "", "Enemies take (15-20)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 5846, 5846.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1509533589, }, + ["UniqueElementalAilmentDuration1"] = { affix = "", "(30-40)% reduced Duration of Ignite, Shock and Chill on Enemies", statOrder = { 6818 }, level = 1, group = "ElementalAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 1062710370, }, + ["UniqueManaFlaskRevivesMinions1"] = { affix = "", "Using a Mana Flask revives one of your Persistent Minions", statOrder = { 9806 }, level = 1, group = "ManaFlaskRevivesMinions", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHash = 932661147, }, + ["UniqueEnemyAccuracyDistanceFalloff1"] = { affix = "", "Enemies have an Accuracy Penalty against you based on Distance", statOrder = { 5984 }, level = 1, group = "EnemyAccuracyDistanceFalloff", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3868746097, }, + ["UniqueMaximumEvadeChanceOverride1"] = { affix = "", "Maximum Chance to Evade is 50%", statOrder = { 8300 }, level = 1, group = "MaximumEvadeChanceOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1500744699, }, + ["UniqueDoubleArmourEffect1"] = { affix = "", "Defend with 200% of Armour", statOrder = { 5811 }, level = 1, group = "DoubleArmourEffect", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 3387008487, }, + ["UniqueMaximumPhysicalReductionOverride1"] = { affix = "", "Maximum Physical Damage Reduction is 50%", statOrder = { 8349 }, level = 1, group = "MaximumPhysicalReductionOverride", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3960211755, }, + ["UniqueRaiseShieldApplyExposure1"] = { affix = "", "Inflict Elemental Exposure to Enemies 3 metres in front of you", "for 4 seconds, every 0.25 seconds while raised", statOrder = { 9807, 9807.1 }, level = 1, group = "RaiseShieldApplyExposure", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 223138829, }, + ["UniqueLifeManaFlaskAnySlot1"] = { affix = "", "Life and Mana Flasks can be equipped in either slot", statOrder = { 6968 }, level = 1, group = "LifeManaFlaskAnySlot", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 932866937, }, + ["UniqueElementalDamageTakenAsPhysical1"] = { affix = "", "(20-30)% of Elemental damage from Hits taken as Physical damage", statOrder = { 5885 }, level = 1, group = "ElementalDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental" }, tradeHash = 2340750293, }, + ["UniqueElementalDamageFromBlockedHits1"] = { affix = "", "You take 100% of Elemental damage from Blocked Hits", statOrder = { 4794 }, level = 1, group = "ElementalDamageFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block", "elemental" }, tradeHash = 2393355605, }, + ["UniqueDisableChestSlot1"] = { affix = "", "Can't use Body Armour", statOrder = { 2254 }, level = 1, group = "DisableChestSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4007482102, }, + ["UniqueUseTwoHandedWeaponOneHand1"] = { affix = "", "You can wield Two-Handed Axes, Maces and Swords in one hand", statOrder = { 4887 }, level = 1, group = "UseTwoHandedWeaponOneHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3635316831, }, + ["UniqueKilledMonsterItemRarityOnCrit1"] = { affix = "", "(20-30)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", statOrder = { 2306 }, level = 1, group = "KilledMonsterItemRarityOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 21824003, }, + ["UniqueConsecratedGroundStationaryRing1"] = { affix = "", "You have Consecrated Ground around you while stationary", statOrder = { 6454 }, level = 1, group = "ConsecratedGroundStationaryRing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1736538865, }, + ["UniqueAlliesInPresenceGainedAsChaos1"] = { affix = "", "Allies in your Presence Gain (15-25)% of Damage as Extra Chaos Damage", statOrder = { 4170 }, level = 1, group = "AlliesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 4258251165, }, + ["UniqueEnemiesInPresenceGainedAsChaos1"] = { affix = "", "Enemies in your Presence Gain (6-12)% of Damage as Extra Chaos Damage", statOrder = { 5951 }, level = 1, group = "EnemiesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 1224838456, }, + ["UniqueEnemiesInPresenceReservesLife1"] = { affix = "", "Enemies in your Presence have at least 10% of Life Reserved", statOrder = { 5947 }, level = 1, group = "EnemiesInPresenceReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3840716439, }, + ["UniqueEnemiesInPresenceLowLife1"] = { affix = "", "Enemies in your Presence count as being on Low Life", statOrder = { 5942 }, level = 1, group = "EnemiesInPresenceLowLife", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1285684287, }, + ["UniqueEnemiesInPresenceMonsterPower1"] = { affix = "", "Enemies in your Presence count as having double Power", statOrder = { 9804 }, level = 1, group = "EnemiesInPresenceMonsterPower", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 2836928993, }, + ["UniqueEnemiesInPresenceNoElementalResist1"] = { affix = "", "Enemies in your Presence have no Elemental Resistances", statOrder = { 5948 }, level = 1, group = "EnemiesInPresenceNoElementalResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "aura" }, tradeHash = 83011992, }, + ["UniqueHeraldDamage1"] = { affix = "", "Herald Skills deal (50-100)% increased Damage", statOrder = { 5632 }, level = 1, group = "HeraldDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 21071013, }, + ["UniqueGainManaAsExtraArmour1"] = { affix = "", "Gain (30-50)% of Maximum Mana as Armour", statOrder = { 7481 }, level = 1, group = "GainManaAsExtraArmour", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "defences" }, tradeHash = 514290151, }, + ["UniqueManaRegenAppliesToRecharge1"] = { affix = "", "Increases and Reductions to Mana Regeneration Rate also", "apply to Energy Shield Recharge Rate", statOrder = { 4116, 4116.1 }, level = 1, group = "ManaRegenAppliesToRecharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "defences" }, tradeHash = 3407300125, }, + ["UniqueDefendWithArmourPerEnergyShield1"] = { affix = "", "Defend against Hits as though you had 1% more Armour per 1% current Energy Shield", statOrder = { 4299 }, level = 1, group = "DefendWithArmourPerEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 679087890, }, + ["UniquePhysicalDamageOnSkillUse1"] = { affix = "", "Take (25-100)% of Mana Costs you pay for Skills as Physical Damage", statOrder = { 9320 }, level = 1, group = "PhysicalDamageOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3181887481, }, + ["UniqueSlowEffect1"] = { affix = "", "Debuffs you inflict have (20-30)% increased Slow Magnitude", statOrder = { 4552 }, level = 1, group = "SlowEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3650992555, }, + ["UniqueCannotImmobilise1"] = { affix = "", "Cannot Immobilise enemies", statOrder = { 4937 }, level = 1, group = "CannotImmobilise", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4062529591, }, + ["UniqueIgnoreStrengthRequirementsWeapons1"] = { affix = "", "Ignore Strength Requirement of Melee Weapons and Melee Skills", statOrder = { 6822 }, level = 1, group = "IgnoreStrengthRequirementsWeapons", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2583483800, }, + ["UniquePhysicalDamageTakenUnmetRequirements1"] = { affix = "", "Take Physical Damage per total unmet Strength Requirement when you Attack", statOrder = { 9625 }, level = 1, group = "PhysicalDamageTakenUnmetRequirements", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3887716633, }, + ["UniqueNoManaRegenIfNotCritRecently1"] = { affix = "", "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently", statOrder = { 8648 }, level = 1, group = "NoManaRegenIfNotCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1458880585, }, + ["UniqueManaRegenerationRateIfCritRecently1"] = { affix = "", "150% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently", statOrder = { 7527 }, level = 1, group = "ManaRegenerationRateIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "critical" }, tradeHash = 1659564104, }, + ["UniqueThornsDamageOnStun1"] = { affix = "", "Deal your Thorns Damage to Enemies you Stun with Melee Attacks", statOrder = { 5698 }, level = 60, group = "ThornsDamageOnStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2107791433, }, + ["UniqueLifeRecoupAppliesToEnergyShield1"] = { affix = "", "Damage taken Recouped as Life is also Recouped as Energy Shield", statOrder = { 7006 }, level = 1, group = "LifeRecoupAppliesToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences" }, tradeHash = 2432200638, }, + ["UniqueTailwindOnCriticalStrike1"] = { affix = "", "Gain Tailwind on Critical Hit, no more than once per second", statOrder = { 6423 }, level = 1, group = "TailwindOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2459662130, }, + ["UniqueLoseTailwindOnHit1"] = { affix = "", "Lose all Tailwind when Hit", statOrder = { 7449 }, level = 1, group = "LoseTailwindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 367897259, }, + ["UniqueDamageGainedAsFirePerBlock1"] = { affix = "", "Gain 1% of damage as Fire damage per 1% Chance to Block", statOrder = { 8669 }, level = 1, group = "DamageGainedAsFirePerBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2771095426, }, + ["UniqueMaximumElementalResistances1"] = { affix = "", "+1% to Maximum Fire Resistance", "+2% to Maximum Cold Resistance", "+3% to Maximum Lightning Resistance", statOrder = { 953, 954, 955 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, }, + ["UniqueMaximumElementalResistances2"] = { affix = "", "+1% to Maximum Fire Resistance", "+3% to Maximum Cold Resistance", "+2% to Maximum Lightning Resistance", statOrder = { 953, 954, 955 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, }, + ["UniqueMaximumElementalResistances3"] = { affix = "", "+2% to Maximum Fire Resistance", "+1% to Maximum Cold Resistance", "+3% to Maximum Lightning Resistance", statOrder = { 953, 954, 955 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, }, + ["UniqueMaximumElementalResistances4"] = { affix = "", "+2% to Maximum Fire Resistance", "+3% to Maximum Cold Resistance", "+1% to Maximum Lightning Resistance", statOrder = { 953, 954, 955 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, }, + ["UniqueMaximumElementalResistances5"] = { affix = "", "+3% to Maximum Fire Resistance", "+1% to Maximum Cold Resistance", "+2% to Maximum Lightning Resistance", statOrder = { 953, 954, 955 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, }, + ["UniqueMaximumElementalResistances6"] = { affix = "", "+3% to Maximum Fire Resistance", "+2% to Maximum Cold Resistance", "+1% to Maximum Lightning Resistance", statOrder = { 953, 954, 955 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, }, + ["UniqueElementalResistancesPerPowerCharge1"] = { affix = "", "-10% to all Elemental Resistances per Power Charge", statOrder = { 1407 }, level = 82, group = "ElementalResistancesPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 2593644209, }, + ["UniqueAdditionalElementalGemLevels1"] = { affix = "", "+2 to Level of all Cold Skills", "+1 to Level of all Fire Skills", "+3 to Level of all Lightning Skills", statOrder = { 5326, 6165, 7097 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, }, + ["UniqueAdditionalElementalGemLevels2"] = { affix = "", "+3 to Level of all Cold Skills", "+1 to Level of all Fire Skills", "+2 to Level of all Lightning Skills", statOrder = { 5326, 6165, 7097 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, }, + ["UniqueAdditionalElementalGemLevels3"] = { affix = "", "+1 to Level of all Cold Skills", "+2 to Level of all Fire Skills", "+3 to Level of all Lightning Skills", statOrder = { 5326, 6165, 7097 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, }, + ["UniqueAdditionalElementalGemLevels4"] = { affix = "", "+3 to Level of all Cold Skills", "+2 to Level of all Fire Skills", "+1 to Level of all Lightning Skills", statOrder = { 5326, 6165, 7097 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, }, + ["UniqueAdditionalElementalGemLevels5"] = { affix = "", "+1 to Level of all Cold Skills", "+3 to Level of all Fire Skills", "+2 to Level of all Lightning Skills", statOrder = { 5326, 6165, 7097 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, }, + ["UniqueAdditionalElementalGemLevels6"] = { affix = "", "+2 to Level of all Cold Skills", "+3 to Level of all Fire Skills", "+1 to Level of all Lightning Skills", statOrder = { 5326, 6165, 7097 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, }, + ["UniqueCriticalWeaknessOnSpellCrit1"] = { affix = "", "Critical Hits with Spells apply (1-3) Stack of Critical Weakness", statOrder = { 4203 }, level = 1, group = "CriticalWeaknessOnSpellCrit", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 1550131834, }, + ["UniqueLifeLossReservesLife1"] = { affix = "", "Life that would be lost by taking Damage is instead Reserved", "until you take no Damage to Life for 3 seconds", statOrder = { 9182, 9182.1 }, level = 1, group = "LifeLossReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1777740627, }, + ["UniqueArrowsFork1"] = { affix = "", "Arrows Fork", statOrder = { 3159 }, level = 1, group = "ArrowsFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2421436896, }, + ["UniqueArrowsAlwaysPierceAfterForking1"] = { affix = "", "Arrows Pierce all targets after Forking", statOrder = { 4313 }, level = 1, group = "ArrowsAlwaysPierceAfterForking", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2138799639, }, + ["UniqueChaosDamageCanShock1"] = { affix = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2521 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHash = 2418601510, }, + ["UniqueAlwaysHits1"] = { affix = "", "Always Hits", statOrder = { 1704 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 4126210832, }, + ["UniqueMeleeSplash1"] = { affix = "", "Strikes deal Splash Damage", statOrder = { 1067 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3675300253, }, + ["UniqueLocalKnockback1"] = { affix = "", "Knocks Back Enemies on Hit", statOrder = { 1350 }, level = 1, group = "LocalKnockback", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3739186583, }, + ["UniqueSpellWitherOnHitChance1"] = { affix = "", "Spells have a 25% chance to inflict Withered for 4 seconds on Hit", statOrder = { 9438 }, level = 1, group = "SpellWitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 2348696937, }, + ["UniqueWitherNeverExpires1"] = { affix = "", "Withered you inflict has infinite Duration", statOrder = { 3990 }, level = 1, group = "WitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1354656031, }, + ["UniqueShrineBuffAlternating1"] = { affix = "", "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", statOrder = { 7241 }, level = 1, group = "ShrineBuffAlternating", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2879778895, }, + ["UniqueFireShrine1"] = { affix = "", "Grants effect of Guided Meteoric Shrine", statOrder = { 6524 }, level = 82, group = "UniqueFireShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3917429943, }, + ["UniqueLightningShrine1"] = { affix = "", "Grants effect of Guided Tempest Shrine", statOrder = { 6525 }, level = 82, group = "UniqueLightningShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2800412928, }, + ["UniqueColdShrine1"] = { affix = "", "Grants effect of Guided Freezing Shrine", statOrder = { 6523 }, level = 82, group = "UniqueColdShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 234657505, }, + ["UniqueChaosShrine1"] = { affix = "", "Grants effect of Dreaming Gloom Shrine", statOrder = { 6522 }, level = 82, group = "UniqueChaosShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3742268652, }, + ["UniqueMaximumValour1"] = { affix = "", "-20 to maximum Valour", statOrder = { 4500 }, level = 1, group = "MaximumValour", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1896726125, }, + ["UniqueValourAlwaysMaximum1"] = { affix = "", "Banners always have maximum Valour", statOrder = { 4505 }, level = 1, group = "ValourAlwaysMaximum", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1761741119, }, + ["UniqueLocalChanceToBleed1"] = { affix = "", "(10-20)% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, + ["UniqueLocalChanceToBleed2"] = { affix = "", "(15-25)% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, + ["UniqueCannotUseWarcries1"] = { affix = "", "Cannot use Warcries", statOrder = { 4954 }, level = 1, group = "CannotUseWarcries", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2598171606, }, + ["UniqueAttacksCountAsExerted1"] = { affix = "", "All Attacks count as Empowered Attacks", statOrder = { 4149 }, level = 1, group = "AttacksCountAsExerted", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1952324525, }, + ["UniquePinAlmostPinnedEnemies1"] = { affix = "", "Pin Enemies which are Primed for Pinning", statOrder = { 8903 }, level = 1, group = "PinAlmostPinnedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3063814459, }, + ["UniqueSpellAdditionalProjectilesInCircle1"] = { affix = "", "Spells fire 4 additional Projectiles", "Spells fire Projectiles in a circle", statOrder = { 9424, 9424.1 }, level = 1, group = "SpellAdditionalProjectilesInCircle", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 1013492127, }, + ["UniqueCannotBeLightStunned1"] = { affix = "", "Cannot be Light Stunned", statOrder = { 4907 }, level = 1, group = "CannotBeLightStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1000739259, }, + ["UniqueCannotBeLightStunnedByDeflectedHits1"] = { affix = "", "Cannot be Light Stunned by Deflected Hits", statOrder = { 4908 }, level = 1, group = "CannotBeLightStunnedByDeflectedHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2252419505, }, + ["UniqueNonChannellingAttackManaCost1"] = { affix = "", "Non-Channelling Attacks cost an additional 6% of your maximum Mana", statOrder = { 4587 }, level = 1, group = "NonChannellingAttackManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 3199954470, }, + ["UniqueAttackManaCost1"] = { affix = "", "Attacks cost an additional 6% of your maximum Mana", statOrder = { 4447 }, level = 1, group = "AttackManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 2157692677, }, + ["UniqueNonChannellingAttackLightningDamage1"] = { affix = "", "Non-Channelling Attacks have Added Lightning Damage equal to 3% of maximum Mana", statOrder = { 8651 }, level = 1, group = "NonChannellingAttackLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHash = 4252580517, }, + ["UniqueAttackMinLightningDamage1"] = { affix = "", "Attacks have Added minimum Lightning Damage equal to 1% of maximum Mana", statOrder = { 9986 }, level = 1, group = "AttackMinLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHash = 1835420624, }, + ["UniqueAttackMaxLightningDamage1"] = { affix = "", "Attacks have Added maximum Lightning Damage equal to (6-9)% of maximum Mana", statOrder = { 10016 }, level = 1, group = "AttackMaxLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHash = 3258071686, }, + ["UniqueEvasionRatingPercentOnLowLife1"] = { affix = "", "150% increased Global Evasion Rating when on Low Life", statOrder = { 2204 }, level = 1, group = "EvasionRatingPercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2695354435, }, + ["UniqueDamageRemovedFromCompanion1"] = { affix = "", "15% of Damage from Hits is taken from your Damageable Companion's Life before you", statOrder = { 5344 }, level = 1, group = "DamageRemovedFromCompanion", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1150343007, }, + ["UniqueNonChannellingSpellLifeCost1"] = { affix = "", "Non-Channelling Spells cost an additional 6% of your maximum Life", statOrder = { 4573 }, level = 1, group = "NonChannellingSpellLifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 1920747151, }, + ["UniqueNonChannellingSpellDamage1"] = { affix = "", "Non-Channelling Spells deal 6% increased Damage per 100 maximum Life", statOrder = { 9412 }, level = 1, group = "NonChannellingSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 1027889455, }, + ["UniqueNonChannellingSpellCriticalChance1"] = { affix = "", "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Life", statOrder = { 9394 }, level = 1, group = "NonChannellingSpellCriticalChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 170426423, }, + ["UniqueLifeRegenerationRate1"] = { affix = "", "50% increased Life Regeneration rate", statOrder = { 969 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 44972811, }, + ["UniqueLifeRegenerationRate2"] = { affix = "", "(-30-30)% reduced Life Regeneration rate", statOrder = { 969 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 44972811, }, + ["UniqueSpiritPerMaximumLife1"] = { affix = "", "+1 to Maximum Spirit per 50 Maximum Life", statOrder = { 9802 }, level = 1, group = "SpiritPerMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1345486764, }, + ["UniqueBuffSkillSpiritEfficiencyPerMaximumLife1"] = { affix = "", "1% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life", statOrder = { 4871 }, level = 1, group = "BuffSkillSpiritEfficiencyPerMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3581035970, }, + ["UniqueMinionsHaveUnholyMight1"] = { affix = "", "Minions have Unholy Might", statOrder = { 8550 }, level = 1, group = "MinionsHaveUnholyMight", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3893509584, }, + ["UniqueCanEvadeAllDamageNotHitRecently1"] = { affix = "", "Evasion Rating is doubled if you have not been Hit Recently", statOrder = { 5816 }, level = 1, group = "CanEvadeAllDamageNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1272938854, }, + ["UniqueLeechEnergyShieldInsteadofLife1"] = { affix = "", "Life Leech is Converted to Energy Shield Leech", statOrder = { 5377 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 3314050176, }, + ["UniqueIgnoreHexproof1"] = { affix = "", "Curses you inflict can affect Hexproof Enemies", statOrder = { 2269 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1367119630, }, + ["UniqueEnergyShieldRechargeOverride1"] = { affix = "", "Your base Energy Shield Recharge Delay is 10 seconds", statOrder = { 6013 }, level = 1, group = "EnergyShieldRechargeOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3091132047, }, + ["UniqueShockEffect1UNUSED"] = { affix = "", "(50-100)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2527686725, }, + ["UniqueAttackSpeedPerOvercappedBlock1"] = { affix = "", "1% increased Attack Speed per Overcapped Block chance", statOrder = { 4438 }, level = 1, group = "AttackSpeedPerOvercappedBlock", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2958220558, }, + ["UniqueNonChannellingSpellsDoubleManaAndCrit1"] = { affix = "", "Non-Channelling Spells have 25% chance to cost Double Mana and Critically Hit", statOrder = { 8654 }, level = 1, group = "NonChannellingSpellsDoubleManaAndCrit", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "caster", "critical" }, tradeHash = 2758035461, }, + ["UniqueBlockChanceProjectiles1"] = { affix = "", "100% increased Block chance against Projectiles", statOrder = { 4789 }, level = 1, group = "BlockChanceProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3583542124, }, + ["UniqueEnfeebleOnBlockChance1"] = { affix = "", "Curse Enemies with Enfeeble on Block", statOrder = { 5538 }, level = 1, group = "EnfeebleOnBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHash = 3830953767, }, + ["UniqueParriedCausesSpellDamageTaken1"] = { affix = "", "Parried enemies take more Spell Damage instead of more Attack Damage", statOrder = { 8795 }, level = 1, group = "ParriedCausesSpellDamageTaken", weightKey = { }, weightVal = { }, modTags = { "block", "caster" }, tradeHash = 2935004295, }, + ["UniqueParryConvertToCold1"] = { affix = "", "100% of Parry Physical Damage Converted to Cold Damage", statOrder = { 8806 }, level = 1, group = "UniqueParryConvertToCold1", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold" }, tradeHash = 2089152298, }, + ["UniqueParryStunModifiersApplyToFreeze1"] = { affix = "", "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry", statOrder = { 8804 }, level = 1, group = "UniqueParryStunModifiersApplyToFreeze1", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHash = 3201111383, }, + ["UniqueIncreasedAccuracyPercent1"] = { affix = "", "20% increased Accuracy Rating", statOrder = { 1268 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 624954515, }, + ["UniqueParriedDebuffMagnitude1"] = { affix = "", "50% increased Parried Debuff Magnitude", statOrder = { 8794 }, level = 1, group = "ParriedDebuffMagnitude", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 818877178, }, + ["UniqueCriticalWeaknessOnParry1"] = { affix = "", "Parrying applies 10 Stacks of Critical Weakness", statOrder = { 4205 }, level = 1, group = "CriticalWeaknessOnParry", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHash = 2104138899, }, + ["UniqueParryDamage1"] = { affix = "", "100% increased Parry Damage", statOrder = { 8799 }, level = 1, group = "ParryDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1569159338, }, + ["UniqueHitsTreatFireResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Fire Resistance instead of target's value", statOrder = { 6777 }, level = 1, group = "HitsTreatFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHash = 3924583393, }, + ["UniqueHitsTreatColdResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Cold Resistance instead of target's value", statOrder = { 6776 }, level = 1, group = "HitsTreatColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHash = 3455898738, }, + ["UniqueHitsTreatLightningResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Lightning Resistance instead of target's value", statOrder = { 6778 }, level = 1, group = "HitsTreatLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHash = 3144953722, }, + ["UniqueWitherOnHitChance1"] = { affix = "", "(20-30)% chance to inflict Withered for 4 seconds on Hit", statOrder = { 9917 }, level = 1, group = "WitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 695624915, }, + ["UniqueWitherGrantsElementalDamageTaken1"] = { affix = "", "Enemies take 5% increased Elemental Damage from your Hits for", "each Withered you have inflicted on them", statOrder = { 3954, 3954.1 }, level = 1, group = "WitherGrantsElementalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3507915723, }, + ["UniqueStrengthInherentBonusChange1"] = { affix = "", "Inherent bonus of Strength grants +5 to Accuracy Rating per Strength instead", statOrder = { 1683 }, level = 1, group = "StrengthInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1602694371, }, + ["UniqueDexterityInherentBonusChange1"] = { affix = "", "Inherent bonus of Dexterity grants +2 to Mana per Dexterity instead", statOrder = { 1684 }, level = 1, group = "DexterityInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 597008938, }, + ["UniqueIntelligenceInherentBonusChange1"] = { affix = "", "Inherent bonus of Intelligence grants +2 to Life per Intelligence instead", statOrder = { 1685 }, level = 1, group = "IntelligenceInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1405948943, }, + ["UniqueApplyCorruptedBloodOnBlock1"] = { affix = "", "Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of", "your maximum Life as Physical damage per second", statOrder = { 9777, 9777.1 }, level = 1, group = "ApplyCorruptedBloodOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical" }, tradeHash = 1955564066, }, + ["UniqueBowDamageFromLifeFlaskCharges1"] = { affix = "", "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to (5-10)% of Flask's Life Recovery amount", statOrder = { 5372 }, level = 1, group = "BowDamageFromLifeFlaskCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3893788785, }, + ["UniqueImpaleOnCriticalHit1"] = { affix = "", "Critical Hits inflict Impale", statOrder = { 5427 }, level = 1, group = "ImpaleOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3058238353, }, + ["UniqueCriticalsCannotConsumeImpale1"] = { affix = "", "Critical Hits cannot Extract Impale", statOrder = { 5428 }, level = 1, group = "CriticalsCannotConsumeImpale", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3414998042, }, + ["UniqueCannotRecoverAboveLowLifeExceptFlasks1"] = { affix = "", "Life Recovery other than Flasks cannot Recover Life to above Low Life", statOrder = { 4944 }, level = 1, group = "CannotRecoverAboveLowLifeExceptFlasks", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 451403019, }, + ["UniqueLifeRecoveryRate1"] = { affix = "", "100% increased Life Recovery rate", statOrder = { 1376 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3240073117, }, + ["UniqueLifeRecoveryRate2"] = { affix = "", "30% reduced Life Recovery rate", statOrder = { 1376 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3240073117, }, + ["UniqueLifeLeechChaosDamage1"] = { affix = "", "Life Leech recovers based on your Chaos damage instead of Physical damage", statOrder = { 6996 }, level = 1, group = "LifeLeechChaosDamage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 825825364, }, + ["UniqueChaosInfusionFromCharge1"] = { affix = "", "When you Consume a Charge Trigger Chaotic Surge to gain 2 Chaos Surges", statOrder = { 6292 }, level = 1, group = "ChaosInfusionFromCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 447757144, }, + ["UniqueConsumeEnduranceChargeAlwaysCrit1"] = { affix = "", "Attacks consume an Endurance Charge to Critically Hit", statOrder = { 4371 }, level = 1, group = "ConsumeEnduranceChargeAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3550545679, }, + ["UniqueChaosDamagePerEnduranceCharge1"] = { affix = "", "Take 100 Chaos damage per second per Endurance Charge", statOrder = { 9210 }, level = 1, group = "ChaosDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 3164544692, }, + ["UniqueConsumeFrenzyChargeAdditionalProjectile1"] = { affix = "", "Spear Projectile Attacks Consume a Frenzy Charge to fire 2 additional Projectiles", statOrder = { 9366 }, level = 1, group = "ConsumeFrenzyChargeAdditionalProjectile", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1980858462, }, + ["UniqueRollCriticalChanceTwice1"] = { affix = "", "Bifurcates Critical Hits", statOrder = { 1292 }, level = 1, group = "RollCriticalChanceTwice", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1451444093, }, + ["UniqueLocalAllDamageCanPin1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Pin Buildup", statOrder = { 7142 }, level = 1, group = "LocalAllDamageCanPin", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4142786792, }, + ["UniqueFullyArmourBrokenShatterOnKill1"] = { affix = "", "Fully Armour Broken enemies you kill with Hits Shatter", statOrder = { 9229 }, level = 1, group = "FullyArmourBrokenShatterOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3278008231, }, + ["UniqueCanActiveBlockAllDirections1"] = { affix = "", "Can Block from all Directions while Shield is Raised", statOrder = { 4880 }, level = 1, group = "CanActiveBlockAllDirections", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4237042051, }, + ["UniqueAggravateIgnites1"] = { affix = "", "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target", statOrder = { 4129 }, level = 1, group = "AggravateIgnites", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 2312741059, }, + ["UniqueLocalChanceToAggravateBleed1"] = { affix = "", "(25-40)% chance to Aggravate Bleeding on Hit", statOrder = { 7135 }, level = 1, group = "LocalChanceToAggravateBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1009412152, }, + ["UniqueCannotBeThrown1"] = { affix = "", "Cannot use Projectile Attacks", statOrder = { 7172 }, level = 1, group = "CannotBeThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1961849903, }, + ["UniqueEnergyShieldGainedOnBlockBasedOnArmour1"] = { affix = "", "Recover Energy Shield equal to 2% of Armour when you Block", statOrder = { 2138 }, level = 1, group = "EnergyShieldGainedOnBlockBasedOnArmour", weightKey = { }, weightVal = { }, modTags = { "block", "energy_shield", "defences" }, tradeHash = 3681057026, }, + ["UniqueUnholyMightOnZeroEnergyShield1"] = { affix = "", "You have Unholy Might while you have no Energy Shield", statOrder = { 2393 }, level = 1, group = "UnholyMightOnZeroEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2353201291, }, + ["UniqueLocalArmourBreakOnDamage1"] = { affix = "", "Breaks Armour equal to 40% of damage from Hits with this weapon", statOrder = { 7151 }, level = 1, group = "LocalArmourBreakOnDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 949573361, }, + ["UniqueParriedDebuffDuration1"] = { affix = "", "50% increased Parried Debuff Duration", statOrder = { 8808 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3401186585, }, + ["UniqueParriedDebuffDuration2"] = { affix = "", "100% increased Parried Debuff Duration", statOrder = { 8808 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3401186585, }, + ["UniqueProjectileParryInfiniteDistance1"] = { affix = "", "Infinite Parry Range", statOrder = { 6885 }, level = 1, group = "ProjectileParryInfiniteDistance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4063608408, }, + ["UniqueLocalIncreasedProjectileSpeed1"] = { affix = "", "(20-30)% increased Projectile Speed with this Weapon", statOrder = { 7335 }, level = 1, group = "LocalIncreasedProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 535217483, }, + ["UniqueLifeFlasksApplyToMinions1"] = { affix = "", "Your Life Flask also applies to your Minions", statOrder = { 1845 }, level = 30, group = "LifeFlasksApplyToMinions", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2397460217, }, + ["MinionsCannotDieWhileAffectedByYourLifeFlasks1"] = { affix = "", "Minions cannot Die while affected by a Life Flask", statOrder = { 1846 }, level = 30, group = "MinionsCannotDieWhileFlasked", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 4046380260, }, + ["UniqueAddedPhysicalToMinionAttacks1"] = { affix = "", "Minions deal (5-8) to (10-12) additional Attack Physical Damage", statOrder = { 3336 }, level = 1, group = "AddedPhysicalToMinionAttacks", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHash = 797833282, }, + ["UniqueMaximumQualityOverride1"] = { affix = "", "Maximum Quality is 200%", statOrder = { 7328 }, level = 1, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 275498888, }, + ["UniqueMaximumQualityOverride2"] = { affix = "", "Maximum Quality is 40%", statOrder = { 7328 }, level = 1, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 275498888, }, + ["UniqueColdAddedAsFireChilledEnemy1"] = { affix = "", "Gain 1% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy", statOrder = { 8710 }, level = 1, group = "ColdAddedAsFireChilledEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2469544361, }, + ["UniqueMultipleCompanions1"] = { affix = "", "You can have two Companions of different types", statOrder = { 4882 }, level = 1, group = "MultipleCompanions", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1888024332, }, + ["UniqueEnergyShieldAppliesElementalReduction1"] = { affix = "", "Current Energy Shield also grants Elemental Damage reduction", statOrder = { 5525 }, level = 1, group = "EnergyShieldAppliesElementalReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2342939473, }, + ["UniqueBlindOnPoison1"] = { affix = "", "Blind Targets when you Poison them", statOrder = { 4785 }, level = 1, group = "BlindOnPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 60826109, }, + ["UniquePoisonDuration1"] = { affix = "", "(10-20)% increased Poison Duration", statOrder = { 2786 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2011656677, }, + ["UniqueIgniteEffectAgainstFrozen1"] = { affix = "", "(80-100)% increased Magnitude of Ignite against Frozen enemies", statOrder = { 6815 }, level = 1, group = "IgniteEffectAgainstFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 3618434982, }, + ["UniqueFreezeDamageIncreaseAgainstIgnited1"] = { affix = "", "(60-80)% increased Freeze Buildup against Ignited enemies", statOrder = { 6746 }, level = 1, group = "FreezeDamageIncreaseAgainstIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3751467747, }, + ["UniqueColdFireSurgeOnReload"] = { affix = "", "When you reload, triggers Gemini Surge to alternately", "gain (2-6) Cold Surges or (2-6) Fire Surges", statOrder = { 6293, 6293.1 }, level = 1, group = "ColdFireSurgeOnReload", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHash = 880541852, }, + ["UniqueLocalAlwaysMinimumOrMaximum1"] = { affix = "", "Rolls only the minimum or maximum Damage value for each Damage Type", statOrder = { 7190 }, level = 1, group = "LocalAlwaysMinimumOrMaximum", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3108672983, }, + ["UniqueElementalPenetrationBelowZero1"] = { affix = "", "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", statOrder = { 5889 }, level = 1, group = "ElementalPenetrationBelowZero", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 2890792988, }, + ["UniqueElementalPenetration1"] = { affix = "", "Damage Penetrates 10% Elemental Resistances", statOrder = { 2612 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2101383955, }, + ["UniqueEnemyKnockbackDirectionReversed1"] = { affix = "", "Knockback direction is reversed", statOrder = { 2642 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 281201999, }, + ["UniqueSpellDamagePerManaSpent1"] = { affix = "", "(10-15)% increased Spell damage for each 200 total Mana you have Spent Recently", statOrder = { 3903 }, level = 1, group = "SpellDamagePerManaSpent", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 347220474, }, + ["UniqueManaCostPerManaSpent1"] = { affix = "", "(5-10)% increased Cost of Skills for each 200 total Mana Spent Recently", statOrder = { 3902 }, level = 1, group = "ManaCostPerManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2650053239, }, + ["UniqueCannotRecoverManaExceptRegen1"] = { affix = "", "Mana Recovery other than Regeneration cannot Recover Mana", statOrder = { 4946 }, level = 1, group = "CannotRecoverManaExceptRegen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3593063598, }, + ["UniqueLifeDegenerationPercentGracePeriod1"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1616 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1661347488, }, + ["UniqueLifeDegenerationPercentGracePeriod2"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1616 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1661347488, }, + ["UniqueLifeDegenerationPercentGracePeriod3"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1616 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1661347488, }, + ["UniqueLocalInfinitePoisonStackCount1"] = { affix = "", "Any number of Poisons from this Weapon can affect a target at the same time", statOrder = { 7265 }, level = 1, group = "LocalInfinitePoisonStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4021234281, }, + ["UniqueRageRegeneration1"] = { affix = "", "Regenerate 5 Rage per second", statOrder = { 4602 }, level = 1, group = "RageRegeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2853314994, }, + ["UniqueNonherentRageLoss1"] = { affix = "", "No Inherent loss of Rage", statOrder = { 8647 }, level = 1, group = "NoInherentRageLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4163076972, }, + ["UniqueChaosDamageMaximumLife1"] = { affix = "", "Attacks have added Chaos damage equal to 3% of maximum Life", statOrder = { 4333 }, level = 75, group = "ChaosDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 1141563002, }, + ["UniquePhysicalDamageMaximumLife1"] = { affix = "", "Attacks have added Physical damage equal to 3% of maximum Life", statOrder = { 4334 }, level = 75, group = "PhysicalDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 2723294374, }, + ["UniqueFlammabilityGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1908 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 3709513762, }, + ["UniqueHypothermiaGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1908 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 3709513762, }, + ["UniqueConductivityGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1908 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 3709513762, }, + ["UniqueElementalWeaknessGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1908 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 3709513762, }, + ["UniqueVulnerabilityGemLevel1"] = { affix = "", "+4 to Level of Vulnerability Skills", statOrder = { 1933 }, level = 1, group = "VulnerabilityGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 3507701584, }, + ["UniqueDespairGemLevel1"] = { affix = "", "+4 to Level of Despair Skills", statOrder = { 1907 }, level = 1, group = "DespairGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 2157870819, }, + ["UniqueEnfeebleGemLevel1"] = { affix = "", "+4 to Level of Enfeeble Skills", statOrder = { 1909 }, level = 1, group = "EnfeebleGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 3948285912, }, + ["UniqueTemporalChainsGemLevel1"] = { affix = "", "+4 to Level of Temporal Chains Skills", statOrder = { 1932 }, level = 1, group = "TemporalChainsGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 1042153418, }, + ["UniqueCharmGrantsMaximumRage1"] = { affix = "", "Grants up to your maximum Rage on use", statOrder = { 5240 }, level = 1, group = "CharmGrantsMaximumRage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1509210032, }, + ["UniqueCharmGrantsPowerCharge1"] = { affix = "", "Grants a Power Charge on use", statOrder = { 5239 }, level = 1, group = "CharmGrantsPowerCharge", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2566921799, }, + ["UniqueCharmGrantsFrenzyCharge1"] = { affix = "", "Grants a Frenzy Charge on use", statOrder = { 5238 }, level = 1, group = "CharmGrantsFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 280890192, }, + ["UniqueCharmDoubleArmourEffect1"] = { affix = "", "Defend with 200% of Armour during effect", statOrder = { 5231 }, level = 1, group = "CharmDoubleArmourEffect", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 3138344128, }, + ["UniqueCharmOnslaughtDuringEffect1"] = { affix = "", "Grants Onslaught during effect", statOrder = { 5237 }, level = 1, group = "CharmOnslaughtDuringEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 618665892, }, + ["UniqueCharmStartEnergyShieldRecharge1"] = { affix = "", "Energy Shield Recharge starts on use", statOrder = { 5236 }, level = 1, group = "CharmStartEnergyShieldRecharge", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1056492907, }, + ["UniqueCharmCreateConsecratedGround1"] = { affix = "", "Creates Consecrated Ground on use", statOrder = { 5230 }, level = 1, group = "CharmCreateConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1112560582, }, + ["UniqueCharmRecoverLifeBasedOnManaFlask1"] = { affix = "", "Recover Life equal to (15-20)% of Mana Flask's Recovery Amount when used", statOrder = { 5252 }, level = 1, group = "CharmRecoverLifeBasedOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2716923832, }, + ["UniqueCharmRecoverManaBasedOnLifeFlask1"] = { affix = "", "Recover Mana equal to (15-20)% of Life Flask's Recovery Amount when used", statOrder = { 5253 }, level = 1, group = "CharmRecoverManaBasedOnLifeFlask", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3891350097, }, + ["UniqueCharmIgniteEnemiesInPresence1"] = { affix = "", "Creates Ignited Ground for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life", statOrder = { 5241 }, level = 1, group = "CharmIgniteEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 39209842, }, + ["UniqueCharmEnemyExtraLightningDamageRoll1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky during effect", statOrder = { 5235 }, level = 1, group = "CharmEnemyExtraLightningDamageRoll", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHash = 3246948616, }, + ["UniqueCharmRecoupChaosDamagePrevented1"] = { affix = "", "50% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect", statOrder = { 5254 }, level = 1, group = "CharmRecoupChaosDamagePrevented", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "chaos" }, tradeHash = 2678930256, }, + ["UniqueCharmRandomPossess1"] = { affix = "", "Possessed by a random Spirit for 20 seconds on use", statOrder = { 5248 }, level = 1, group = "CharmRandomPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1280492469, }, + ["UniqueCharmOwlPossess1"] = { affix = "", "Possessed by Spirit Of The Owl for (10-20) seconds on use", statOrder = { 5245 }, level = 1, group = "CharmOwlPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 300107724, }, + ["UniqueCharmSerpentPossess1"] = { affix = "", "Possessed by Spirit Of The Serpent for (10-20) seconds on use", statOrder = { 5249 }, level = 1, group = "CharmSerpentPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3181677174, }, + ["UniqueCharmPrimatePossess1"] = { affix = "", "Possessed by Spirit Of The Primate for (10-20) seconds on use", statOrder = { 5247 }, level = 1, group = "CharmPrimatePossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3763491818, }, + ["UniqueCharmBearPossess1"] = { affix = "", "Possessed by Spirit Of The Bear for (10-20) seconds on use", statOrder = { 5242 }, level = 1, group = "CharmBearPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3403424702, }, + ["UniqueCharmBoarPossess1"] = { affix = "", "Possessed by Spirit Of The Boar for (10-20) seconds on use", statOrder = { 5243 }, level = 1, group = "CharmBoarPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1685559578, }, + ["UniqueCharmOxPossess1"] = { affix = "", "Possessed by Spirit Of The Ox for (10-20) seconds on use", statOrder = { 5246 }, level = 1, group = "CharmOxPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3463873033, }, + ["UniqueCharmWolfPossess1"] = { affix = "", "Possessed by Spirit Of The Wolf for (10-20) seconds on use", statOrder = { 5251 }, level = 1, group = "CharmWolfPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3504441212, }, + ["UniqueCharmStagPossess1"] = { affix = "", "Possessed by Spirit Of The Stag for (10-20) seconds on use", statOrder = { 5250 }, level = 1, group = "CharmStagPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3685424517, }, + ["UniqueCharmCatPossess1"] = { affix = "", "Possessed by Spirit Of The Cat for (10-20) seconds on use", statOrder = { 5244 }, level = 1, group = "CharmCatPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 2839557359, }, + ["UniqueMaximumLifePerStackableJewel1"] = { affix = "", "2% increased Maximum Life per socketed Grand Spectrum", statOrder = { 3717 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 262406138, }, + ["UniqueAllResistancePerStackableJewel1"] = { affix = "", "+6% to all Elemental Resistances per socketed Grand Spectrum", statOrder = { 3716 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1345312164, }, + ["UniqueMaximumSpiritPerStackableJewel1"] = { affix = "", "2% increased Spirit per socketed Grand Spectrum", statOrder = { 9459 }, level = 1, group = "MaximumSpiritPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1194507491, }, + ["UniqueFireDamageConvertToCold1"] = { affix = "", "100% of Fire Damage Converted to Cold Damage", statOrder = { 8702 }, level = 1, group = "FireDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3503160529, }, + ["UniqueFireDamageConvertToLightning1"] = { affix = "", "100% of Fire damage Converted to Lightning damage", statOrder = { 8703 }, level = 1, group = "FireDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2772033465, }, + ["UniqueLightningDamageConvertToCold1"] = { affix = "", "100% of Lightning Damage Converted to Cold Damage", statOrder = { 1639 }, level = 1, group = "LightningDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3627052716, }, + ["UniqueColdDamageConvertToLightning1"] = { affix = "", "100% of Cold Damage Converted to Lightning Damage", statOrder = { 1642 }, level = 1, group = "ColdDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1686824704, }, + ["UniqueLightningDamageConvertToChaos1"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1640 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHash = 2109189637, }, + ["UniqueElementalDamageConvertToFire1"] = { affix = "", "33% of Elemental Damage Converted to Fire Damage", statOrder = { 8700 }, level = 1, group = "ElementalDamageConvertToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 40154188, }, + ["UniqueElementalDamageConvertToCold1"] = { affix = "", "33% of Elemental Damage Converted to Cold Damage", statOrder = { 8699 }, level = 1, group = "ElementalDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 210092264, }, + ["UniqueElementalDamageConvertToLightning1"] = { affix = "", "33% of Elemental Damage Converted to Lightning Damage", statOrder = { 8701 }, level = 1, group = "ElementalDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 289540902, }, + ["UniqueElementalDamageConvertToChaos1"] = { affix = "", "100% of Elemental Damage Converted to Chaos Damage", statOrder = { 8698 }, level = 1, group = "ElementalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2295988214, }, + ["UniquePainAttunement1"] = { affix = "", "Pain Attunement", statOrder = { 10065 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 98977150, }, + ["UniqueIronReflexes1"] = { affix = "", "Iron Reflexes", statOrder = { 10059 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 326965591, }, + ["UniqueBloodMagic1"] = { affix = "", "Blood Magic", statOrder = { 10033 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 774026047, }, + ["UniqueEldritchBattery1"] = { affix = "", "Eldritch Battery", statOrder = { 10045 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2262736444, }, + ["UniqueGiantsBlood1"] = { affix = "", "Giant's Blood", statOrder = { 10052 }, level = 1, group = "GiantsBlood", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1875158664, }, + ["UniqueUnwaveringStance1"] = { affix = "", "Unwavering Stance", statOrder = { 10072 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 1683578560, }, + ["UniqueIronGrip1"] = { affix = "", "Iron Grip", statOrder = { 10058 }, level = 1, group = "IronGrip", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3528245713, }, + ["UniqueIronWill1"] = { affix = "", "Iron Will", statOrder = { 10060 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 281311123, }, + ["UniqueEverlastingSacrifice1"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10050 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "defences", "resistance" }, tradeHash = 145598447, }, + ["UniqueRandomKeystoneFromTable1"] = { affix = "", "(1-33)", statOrder = { 10020 }, level = 1, group = "UniqueVivisectionRandomKeystone", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3831171903, }, + ["UniqueVivisectionPriceLife1"] = { affix = "", "(10-20)% less maximum Life", statOrder = { 9847 }, level = 1, group = "UniqueVivisectionPriceLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1633735772, }, + ["UniqueVivisectionPriceMana1"] = { affix = "", "(10-20)% less maximum Mana", statOrder = { 9848 }, level = 1, group = "UniqueVivisectionPriceMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3045154261, }, + ["UniqueVivisectionPriceDefences1"] = { affix = "", "(10-20)% less Defences", statOrder = { 9846 }, level = 1, group = "UniqueVivisectionPriceDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 1868522266, }, + ["UniqueVivisectionPriceSpirit1"] = { affix = "", "(10-20)% less Spirit", statOrder = { 9850 }, level = 1, group = "UniqueVivisectionPriceSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 537850431, }, + ["UniqueVivisectionPriceMovementSpeed1"] = { affix = "", "(10-20)% less Movement Speed", statOrder = { 9849 }, level = 1, group = "UniqueVivisectionPriceMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2146799605, }, + ["UniqueVivisectionPriceDamage1"] = { affix = "", "(10-20)% less Damage", statOrder = { 9845 }, level = 1, group = "UniqueVivisectionPriceDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1274947822, }, + ["UniqueMultipleAnointments1"] = { affix = "", "Can have 3 additional Instilled Modifiers", statOrder = { 14 }, level = 66, group = "MultipleEnchantmentsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1135194732, }, + ["UniqueElementalDamageGainedAsFire1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Fire Damage", statOrder = { 8696 }, level = 1, group = "ElementalDamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 701564564, }, + ["UniqueElementalDamageGainedAsCold1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Cold Damage", statOrder = { 8695 }, level = 1, group = "ElementalDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 1158842087, }, + ["UniqueElementalDamageGainedAsLightning1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Lightning Damage", statOrder = { 8697 }, level = 1, group = "ElementalDamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3550887155, }, + ["UniqueCannotEvade1"] = { affix = "", "Cannot Evade Enemy Attacks", statOrder = { 1587 }, level = 1, group = "CannotEvade", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 474452755, }, + ["UniqueLifeRegenerationWhileSurrounded1"] = { affix = "", "Regenerate 5% of maximum Life per second while Surrounded", statOrder = { 7043 }, level = 1, group = "LifeRegenerationWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2002533190, }, + ["UniqueLessEnemiesToBeSurrounded1"] = { affix = "", "Require (2-4) fewer enemies to be Surrounded", statOrder = { 9177 }, level = 1, group = "LessEnemiesToBeSurrounded1", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2267564181, }, + ["UniqueChillDuration1"] = { affix = "", "30% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, }, + ["UniqueChillDuration2"] = { affix = "", "25% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, }, + ["UniqueBleedEffect1"] = { affix = "", "(15-25)% increased Magnitude of Bleeding you inflict", statOrder = { 4662 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHash = 3166958180, }, + ["UniquePoisonEffect1"] = { affix = "", "(15-25)% increased Magnitude of Poison you inflict", statOrder = { 8925 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHash = 2487305362, }, + ["UniqueManaCostEfficiency1"] = { affix = "", "(20-40)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4101445926, }, + ["DemigodsVirtue1"] = { affix = "", "Virtuous", statOrder = { 10022 }, level = 1, group = "DemigodsVirtue", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1132041585, }, + ["DemigodItemFoundRarityIncrease1"] = { affix = "", "25% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["DemigodMovementVelocity1"] = { affix = "", "20% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["DemigodIncreasedSkillSpeed1"] = { affix = "", "10% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, }, + ["DemigodLifeRegenerationRatePercentage1"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, + ["DemigodAllResistances1"] = { affix = "", "+20% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["DemigodManaGainedOnKillPercentage1"] = { affix = "", "Recover 2% of maximum Mana on Kill", statOrder = { 1443 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1604736568, }, + ["BaseSpiritTestUniqueAmulet1"] = { affix = "", "+500 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, + ["AllAttributesImplicitWreath1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["AllAttributesTestUniqueAmulet1"] = { affix = "", "+500 to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["AllAttributesImplicitDemigodRing1"] = { affix = "", "+(8-12) to all Attributes", statOrder = { 946 }, level = 16, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["AllAttributesImplicitDemigodOneHandSword1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["IncreasedLifeImplicitGlovesDemigods1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["MovementVeolcityUniqueBootsDemigods1"] = { affix = "", "20% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["ItemFoundRarityIncreaseImplicitDemigodsBelt1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, + ["IncreasedCastSpeedUniqueGlovesDemigods1"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["LifeRegenerationUniqueWreath1"] = { affix = "", "2 Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, + ["ChaosResistDemigodsTorchImplicit"] = { affix = "", "+(11-19)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["AllResistancesImplictBootsDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["AllResistancesImplictHelmetDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["AllResistancesDemigodsImplicit"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["ActorSizeUniqueBeltDemigods1"] = { affix = "", "10% increased Character Size", statOrder = { 1717 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1408638732, }, + ["ActorSizeUniqueRingDemigods1"] = { affix = "", "3% increased Character Size", statOrder = { 1717 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1408638732, }, + ["ActorSizeUnique__3"] = { affix = "", "10% increased Character Size", statOrder = { 1717 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1408638732, }, + ["CannotCrit"] = { affix = "", "Never deal Critical Hits", statOrder = { 1842 }, level = 1, group = "CannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3638599682, }, + ["CannotBeStunned"] = { affix = "", "Cannot be Stunned", statOrder = { 1838 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1694106311, }, + ["CannotBeStunnedUnique__1_"] = { affix = "", "Cannot be Stunned", statOrder = { 1838 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1694106311, }, + ["AdditionalCurseOnEnemiesUnique__1"] = { affix = "", "You can apply an additional Curse", statOrder = { 1833 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 30642521, }, + ["AdditionalCurseOnEnemiesUnique__2"] = { affix = "", "You can apply an additional Curse", statOrder = { 1833 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 30642521, }, + ["AdditionalCurseOnEnemiesUnique__3"] = { affix = "", "You can apply one fewer Curse", statOrder = { 1833 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 30642521, }, + ["ConvertPhysicalToFireUniqueQuiver1_"] = { affix = "", "50% of Physical Damage Converted to Fire Damage", statOrder = { 1628 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, }, + ["ConvertPhysicalToFireUniqueShieldStr3"] = { affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1628 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, }, + ["ConvertPhysicalToFireUniqueOneHandSword4"] = { affix = "", "100% of Physical Damage Converted to Fire Damage", statOrder = { 1628 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, }, + ["ConvertPhysicalToFireUnique__1"] = { affix = "", "50% of Physical Damage Converted to Fire Damage", statOrder = { 1628 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, }, + ["ConvertPhysicalToFireUnique__2_"] = { affix = "", "30% of Physical Damage Converted to Fire Damage", statOrder = { 1628 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, }, + ["ConvertPhysicalToFireUnique__3__"] = { affix = "", "(0-50)% of Physical Damage Converted to Fire Damage", statOrder = { 1628 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, }, + ["BeltReducedFlaskChargesGainedUnique__1"] = { affix = "", "30% reduced Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, }, + ["BeltIncreasedFlaskChargesGainedUnique__1_"] = { affix = "", "(15-25)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, }, + ["BeltIncreasedFlaskChargedUsedUnique__1"] = { affix = "", "(10-20)% increased Flask Charges used", statOrder = { 982 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 644456512, }, + ["BeltIncreasedFlaskChargedUsedUnique__2"] = { affix = "", "(7-10)% reduced Flask Charges used", statOrder = { 982 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 644456512, }, + ["BeltIncreasedFlaskDurationUnique__2"] = { affix = "", "60% increased Flask Effect Duration", statOrder = { 879 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, }, + ["BeltIncreasedFlaskDurationUnique__3___"] = { affix = "", "(10-20)% increased Flask Effect Duration", statOrder = { 879 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, }, + ["UniqueBeltFlaskDuration1"] = { affix = "", "(30-40)% reduced Flask Effect Duration", statOrder = { 879 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, }, + ["BeltReducedFlaskDurationUniqueDescentBelt1"] = { affix = "", "30% reduced Flask Effect Duration", statOrder = { 879 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, }, + ["BeltIncreasedFlaskDurationUnique__1"] = { affix = "", "60% increased Flask Effect Duration", statOrder = { 879 }, level = 14, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, }, + ["IncreasedFlaskDurationUnique__1"] = { affix = "", "(20-30)% reduced Flask Effect Duration", statOrder = { 879 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, }, + ["BeltFlaskLifeRecoveryUniqueDescentBelt1"] = { affix = "", "30% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, }, + ["FlaskLifeRecoveryRateUniqueJewel46"] = { affix = "", "10% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, }, + ["FlaskLifeRecoveryUniqueAmulet25"] = { affix = "", "100% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, }, + ["BeltFlaskLifeRecoveryUnique__1"] = { affix = "", "(30-40)% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, }, + ["BeltFlaskManaRecoveryUniqueDescentBelt1"] = { affix = "", "30% increased Mana Recovery from Flasks", statOrder = { 1720 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, }, + ["BeltFlaskManaRecoveryUnique__1"] = { affix = "", "(20-30)% increased Mana Recovery from Flasks", statOrder = { 1720 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, }, + ["FlaskManaRecoveryUniqueBodyDex7"] = { affix = "", "(60-100)% increased Mana Recovery from Flasks", statOrder = { 1720 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, }, + ["FlaskManaRecoveryUniqueShieldInt3"] = { affix = "", "15% increased Mana Recovery from Flasks", statOrder = { 1720 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, }, + ["BeltFlaskLifeRecoveryRateUniqueBelt4"] = { affix = "", "25% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, }, + ["FlaskLifeRecoveryRateUniqueBodyStrDex1"] = { affix = "", "50% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, }, + ["FlaskLifeRecoveryRateUniqueSceptre5"] = { affix = "", "10% reduced Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, }, + ["FlaskManaRecoveryRateUniqueBodyStrDex1"] = { affix = "", "50% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, }, + ["FlaskManaRecoveryRateUniqueSceptre5"] = { affix = "", "(30-40)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, }, + ["BeltIncreasedFlaskChargesGainedUniqueBelt2"] = { affix = "", "50% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, }, + ["BeltIncreasedFlaskDurationUniqueBelt3"] = { affix = "", "20% increased Flask Effect Duration", statOrder = { 879 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, }, + ["IncreasedChillDurationUniqueBodyDex1"] = { affix = "", "25% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, }, + ["IncreasedChillDurationUniqueBodyStrInt3"] = { affix = "", "150% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, }, + ["IncreasedChillDurationUniqueQuiver5"] = { affix = "", "(30-40)% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 13, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, }, + ["IncreasedChillDurationUnique__1"] = { affix = "", "(35-50)% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, }, + ["Acrobatics"] = { affix = "", "Acrobatics", statOrder = { 10024 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1588686563, }, + ["HasNoSockets"] = { affix = "", "Has no Sockets", statOrder = { 52 }, level = 1, group = "HasNoSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1493091477, }, + ["CannotBeShocked"] = { affix = "", "Cannot be Shocked", statOrder = { 1524 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 491899612, }, + ["AttackerTakesDamageShieldImplicit1"] = { affix = "", "Reflects (2-5) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 5, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, + ["AttackerTakesDamageShieldImplicit2"] = { affix = "", "Reflects (5-12) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 12, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, + ["AttackerTakesDamageShieldImplicit3"] = { affix = "", "Reflects (10-23) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, + ["AttackerTakesDamageShieldImplicit4"] = { affix = "", "Reflects (24-35) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 27, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, + ["AttackerTakesDamageShieldImplicit5"] = { affix = "", "Reflects (36-50) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 33, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, + ["AttackerTakesDamageShieldImplicit6"] = { affix = "", "Reflects (51-70) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 39, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, + ["AttackerTakesDamageShieldImplicit7"] = { affix = "", "Reflects (71-90) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 45, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, + ["AttackerTakesDamageShieldImplicit8"] = { affix = "", "Reflects (91-120) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 49, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, + ["AttackerTakesDamageShieldImplicit9"] = { affix = "", "Reflects (121-150) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 54, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, + ["AttackerTakesDamageShieldImplicit10"] = { affix = "", "Reflects (151-180) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, + ["AttackerTakesDamageShieldImplicit11"] = { affix = "", "Reflects (181-220) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 62, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, + ["AttackerTakesDamageShieldImplicit12"] = { affix = "", "Reflects (221-260) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 66, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, + ["AttackerTakesDamageShieldImplicit13"] = { affix = "", "Reflects (261-300) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 70, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, + ["AttackerTakesDamageUniqueIntHelmet1"] = { affix = "", "Reflects 5 Physical Damage to Melee Attackers", statOrder = { 880 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, + ["AttackerTakesDamageUnique__1"] = { affix = "", "Reflects (71-90) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, + ["AttackerTakesDamageUnique__2"] = { affix = "", "Reflects (100-150) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, + ["AttackerTakesColdDamageGlovesDex1"] = { affix = "", "Reflects 100 Cold Damage to Melee Attackers", statOrder = { 1860 }, level = 1, group = "AttackerTakesColdDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 4235886357, }, + ["AttackerTakesDamageUniqueHelmetDex3"] = { affix = "", "Reflects 4 Physical Damage to Melee Attackers", statOrder = { 880 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, + ["AttackerTakesDamageUniqueHelmetDexInt6"] = { affix = "", "Reflects 100 to 150 Physical Damage to Melee Attackers", statOrder = { 1855 }, level = 1, group = "AttackerTakesDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2970307386, }, + ["TakesDamageWhenAttackedUniqueIntHelmet1"] = { affix = "", "+25 Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 1, group = "TakesDamageWhenAttacked", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3441651621, }, + ["PainAttunement"] = { affix = "", "Pain Attunement", statOrder = { 10065 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 98977150, }, + ["IncreasedExperienceUniqueIntHelmet3"] = { affix = "", "5% increased Experience gain", statOrder = { 1397 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666934677, }, + ["IncreasedExperienceUniqueTwoHandMace4"] = { affix = "", "(30-50)% reduced Experience gain", statOrder = { 1397 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666934677, }, + ["IncreasedExperienceUniqueSceptre1"] = { affix = "", "3% increased Experience gain", statOrder = { 1397 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666934677, }, + ["IncreasedExperienceUniqueRing14"] = { affix = "", "2% increased Experience gain", statOrder = { 1397 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666934677, }, + ["ChanceToAvoidFreezeAndChillUniqueDexHelmet5"] = { affix = "", "25% chance to Avoid being Chilled", statOrder = { 1527 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 776705236, }, + ["ChanceToAvoidChillUniqueDescentOneHandAxe1"] = { affix = "", "50% chance to Avoid being Chilled", statOrder = { 1527 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 776705236, }, + ["CannotBeChilledUniqueBodyStrInt3"] = { affix = "", "Cannot be Chilled", statOrder = { 1519 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 283649372, }, + ["CannotBeChilledUnique__1"] = { affix = "", "Cannot be Chilled", statOrder = { 1519 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 283649372, }, + ["ChanceToAvoidChilledUnique__1"] = { affix = "", "50% chance to Avoid being Chilled", statOrder = { 1527 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 776705236, }, + ["CannotBeFrozenOrChilledUnique__1"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1520 }, level = 31, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2996245527, }, + ["CannotBeFrozenOrChilledUnique__2"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1520 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2996245527, }, + ["ReducedManaCostOnLowLifeUniqueHelmetStrInt1"] = { affix = "", "20% reduced Mana Cost of Skills when on Low Life", statOrder = { 1563 }, level = 1, group = "ReducedManaCostOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 73272763, }, + ["ElementalResistsOnLowLifeUniqueHelmetStrInt1"] = { affix = "", "+20% to all Elemental Resistances while on Low Life", statOrder = { 1409 }, level = 1, group = "ElementalResistsOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1637928656, }, + ["EvasionOnLowLifeUniqueAmulet4"] = { affix = "", "+(150-250) to Evasion Rating while on Low Life", statOrder = { 1361 }, level = 1, group = "EvasionOnLowLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 3470876581, }, + ["LifeRegenerationOnLowLifeUniqueAmulet4"] = { affix = "", "Regenerate 1% of maximum Life per second while on Low Life", statOrder = { 1618 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3942946753, }, + ["LifeRegenerationOnLowLifeUniqueBodyStrInt2"] = { affix = "", "Regenerate 2% of maximum Life per second while on Low Life", statOrder = { 1618 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3942946753, }, + ["LifeRegenerationOnLowLifeUniqueShieldStrInt3_"] = { affix = "", "Regenerate 3% of maximum Life per second while on Low Life", statOrder = { 1618 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3942946753, }, + ["ItemRarityOnLowLifeUniqueBootsInt1"] = { affix = "", "100% increased Rarity of Items found when on Low Life", statOrder = { 1393 }, level = 1, group = "ItemRarityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2929867083, }, + ["MovementVelocityOnLowLifeUniqueBootsStrDex1"] = { affix = "", "40% reduced Movement Speed when on Low Life", statOrder = { 1481 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, }, + ["MovementVelocityOnLowLifeUniqueGlovesDexInt1"] = { affix = "", "20% increased Movement Speed when on Low Life", statOrder = { 1481 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, }, + ["MovementVelocityOnLowLifeUniqueRapier1"] = { affix = "", "30% increased Movement Speed when on Low Life", statOrder = { 1481 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, }, + ["MovementVelocityOnLowLifeUnique__1"] = { affix = "", "(10-20)% increased Movement Speed when on Low Life", statOrder = { 1481 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, }, + ["MovementVelocityOnFullLifeUniqueBootsInt3"] = { affix = "", "20% increased Movement Speed when on Full Life", statOrder = { 1482 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3393547195, }, + ["MovementVelocityOnFullLifeUniqueTwoHandAxe2"] = { affix = "", "15% increased Movement Speed when on Full Life", statOrder = { 1482 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3393547195, }, + ["MovementVelocityOnLowLifeUniqueBootsDex3"] = { affix = "", "30% increased Movement Speed when on Low Life", statOrder = { 1481 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, }, + ["MovementVelocityOnLowLifeUniqueShieldStrInt5"] = { affix = "", "10% increased Movement Speed when on Low Life", statOrder = { 1481 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, }, + ["MovementVelocityOnLowLifeUniqueRing9"] = { affix = "", "(6-8)% increased Movement Speed when on Low Life", statOrder = { 1481 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, }, + ["MovementVelocityOnFullLifeUniqueAmulet13"] = { affix = "", "10% increased Movement Speed when on Full Life", statOrder = { 1482 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3393547195, }, + ["MovementVelocityOnFullLifeUnique__1"] = { affix = "", "30% increased Movement Speed when on Full Life", statOrder = { 1482 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3393547195, }, + ["ElementalDamageUniqueBootsStr1"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, + ["ElementalDamageUniqueSceptre1"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, + ["ElementalDamageUniqueIntHelmet3"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, + ["ElementalDamageUniqueRing21"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1651 }, level = 38, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, + ["ElementalDamageUniqueDescentBelt1"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, + ["ElementalDamageUniqueSceptre7"] = { affix = "", "(80-100)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, + ["ElementalDamageUniqueHelmetInt9"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, + ["ElementalDamageUniqueRingVictors"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, + ["ElementalDamageUniqueJewel10"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, + ["ElementalDamageUniqueStaff13"] = { affix = "", "(30-50)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, + ["ElementalDamageUnique__1"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, + ["ElementalDamageUnique__2_"] = { affix = "", "(20-30)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, + ["ElementalDamageUnique__3"] = { affix = "", "(30-40)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, + ["ElementalDamageUnique__4"] = { affix = "", "(7-10)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, + ["ConvertPhysicalToColdUniqueGlovesDex1"] = { affix = "", "100% of Physical Damage Converted to Cold Damage", statOrder = { 1631 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 1576601839, }, + ["ConvertPhysicalToColdUniqueQuiver5"] = { affix = "", "Gain 20% of Physical Damage as Extra Cold Damage", statOrder = { 1605 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 758893621, }, + ["ConvertPhysicalToColdUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1631 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 1576601839, }, + ["ConvertPhysicalToColdUnique__1"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1631 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 1576601839, }, + ["ConvertPhysicalToColdUnique__2"] = { affix = "", "50% of Physical Damage Converted to Cold Damage", statOrder = { 1631 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 1576601839, }, + ["ConvertPhysicalToColdUnique__3"] = { affix = "", "(0-50)% of Physical Damage Converted to Cold Damage", statOrder = { 1631 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 1576601839, }, + ["ConvertPhysicalToLightningUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1633 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, }, + ["ConvertPhysicaltoLightningUnique__1"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1633 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, }, + ["ConvertPhysicaltoLightningUnique__2"] = { affix = "", "30% of Physical Damage Converted to Lightning Damage", statOrder = { 1633 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, }, + ["ConvertPhysicaltoLightningUnique__3"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1633 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, }, + ["ConvertPhysicaltoLightningUnique__4"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1633 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, }, + ["ConvertPhysicaltoLightningUnique__5"] = { affix = "", "(0-50)% of Physical Damage Converted to Lightning Damage", statOrder = { 1633 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, }, + ["AttackSpeedOnFullLifeUniqueGlovesStr1"] = { affix = "", "30% increased Attack Speed when on Full Life", statOrder = { 1115 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 4268321763, }, + ["AttackSpeedOnFullLifeUniqueDescentHelmet1"] = { affix = "", "15% increased Attack Speed when on Full Life", statOrder = { 1115 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 4268321763, }, + ["Conduit"] = { affix = "", "Conduit", statOrder = { 10038 }, level = 1, group = "Conduit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 1994392904, }, + ["PhysicalAttackDamageReducedUniqueAmulet8"] = { affix = "", "-4 Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 25, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, }, + ["PhysicalAttackDamageReducedUniqueBelt3"] = { affix = "", "-2 Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, }, + ["PhysicalAttackDamageReducedUniqueBodyStr2"] = { affix = "", "-(15-10) Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, }, + ["PhysicalAttackDamageReducedUniqueBodyDex2"] = { affix = "", "-3 Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, }, + ["PhysicalAttackDamageReducedUniqueBodyDex3"] = { affix = "", "-(7-5) Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, }, + ["PhysicalAttackDamageReducedUniqueBelt8"] = { affix = "", "-(50-40) Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, }, + ["PhysicalAttackDamageReducedUniqueShieldDexInt1"] = { affix = "", "-(18-14) Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, }, + ["PhysicalAttackDamageReducedUnique__1"] = { affix = "", "-(60-30) Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, }, + ["AdditionalBlockChanceUniqueShieldStrDex1"] = { affix = "", "+(3-6)% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, + ["AdditionalBlockChanceUniqueShieldDex1"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, + ["AdditionalBlockChanceUniqueShieldDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, + ["AdditionalBlockChanceUniqueShieldStr1"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, + ["AdditionalBlockChanceUniqueShieldStrInt4"] = { affix = "", "+6% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, + ["AdditionalBlockChanceUniqueShieldStrInt6"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, + ["AdditionalBlockChanceUniqueDescentShield1_"] = { affix = "", "+3% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, + ["AdditionalBlockChanceUniqueShieldDex4"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, + ["AdditionalBlockChanceUniqueShieldStrDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, + ["AdditionalBlockChanceUniqueShieldDex5"] = { affix = "", "+10% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, + ["AdditionalBlockChanceUniqueShieldInt4"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, + ["AdditionalBlockChanceUniqueShieldStr4"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, + ["AdditionalBlockChanceUniqueShieldStrDex3__"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, + ["SubtractedBlockChanceUniqueShieldStrInt8"] = { affix = "", "-10% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, + ["AdditionalBlockChanceUnique__1"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, + ["AdditionalBlockChanceUnique__2"] = { affix = "", "+6% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, + ["AdditionalBlockChanceUnique__3"] = { affix = "", "+(6-10)% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, + ["AdditionalBlockChanceUnique__4"] = { affix = "", "+6% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, + ["AdditionalBlockChanceUnique__5"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, + ["AdditionalBlockChanceUnique__6"] = { affix = "", "+(3-4)% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, + ["AdditionalBlockChanceUnique__7__"] = { affix = "", "+(8-12)% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, + ["AdditionalBlockChanceUnique__8_"] = { affix = "", "+(9-13)% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, + ["AdditionalBlockChanceUnique__9"] = { affix = "", "+(20-25)% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, + ["MaximumColdResistUniqueShieldDex1"] = { affix = "", "+5% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, }, + ["MaximumColdResistUnique__1_"] = { affix = "", "+(-3-3)% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, }, + ["MaximumColdResistUnique__2"] = { affix = "", "+3% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, }, + ["MaximumFireResistUniqueShieldStrInt5"] = { affix = "", "+5% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, }, + ["MaximumFireResistUnique__1"] = { affix = "", "+(-3-3)% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, }, + ["MaximumLightningResistUniqueStaff8c"] = { affix = "", "+5% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, }, + ["MaximumLightningResistUnique__1"] = { affix = "", "+(-3-3)% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, }, + ["MeleeAttackerTakesColdDamageUniqueShieldDex1"] = { affix = "", "Reflects (25-50) Cold Damage to Melee Attackers", statOrder = { 1860 }, level = 1, group = "AttackerTakesColdDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 4235886357, }, + ["RangedAttackDamageReducedUniqueShieldStr1"] = { affix = "", "-25 Physical damage taken from Projectile Attacks", statOrder = { 1896 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3612407781, }, + ["RangedAttackDamageReducedUniqueShieldStr2"] = { affix = "", "-(80-50) Physical damage taken from Projectile Attacks", statOrder = { 1896 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3612407781, }, + ["GainFrenzyChargeOnCriticalHit"] = { affix = "", "Gain a Frenzy Charge on Critical Hit", statOrder = { 1510 }, level = 1, group = "FrenzyChargeOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "critical" }, tradeHash = 398702949, }, + ["CannotBlockAttacks"] = { affix = "", "Cannot Block", statOrder = { 2872 }, level = 1, group = "CannotBlockAttacks", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1465760952, }, + ["IncreasedMaximumResistsUniqueShieldStrInt1"] = { affix = "", "+4% to all maximum Resistances", statOrder = { 1420 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHash = 569299859, }, + ["IncreasedMaximumResistsUnique__1"] = { affix = "", "+(1-4)% to all maximum Resistances", statOrder = { 1420 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHash = 569299859, }, + ["IncreasedMaximumResistsUnique__2"] = { affix = "", "-5% to all maximum Resistances", statOrder = { 1420 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHash = 569299859, }, + ["IncreasedMaximumColdResistUniqueShieldStrInt4"] = { affix = "", "+5% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, }, + ["ItemActsAsConcentratedAOESupportUniqueHelmetInt4"] = { affix = "", "Socketed Gems are Supported by Level 20 Concentrated Effect", statOrder = { 318 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2388360415, }, + ["ItemActsAsConcentratedAOESupportUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Concentrated Effect", statOrder = { 318 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2388360415, }, + ["ItemActsAsConcentratedAOESupportUniqueRing35"] = { affix = "", "Socketed Gems are Supported by Level 15 Concentrated Effect", statOrder = { 318 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2388360415, }, + ["ItemActsAsConcentratedAOESupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 5 Concentrated Effect", statOrder = { 318 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2388360415, }, + ["ItemActsAsFirePenetrationSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Fire Penetration", statOrder = { 329 }, level = 1, group = "DisplaySocketedGemsGetFirePenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3265951306, }, + ["ItemActsAsFireDamageSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Added Fire Damage", statOrder = { 326 }, level = 1, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2572192375, }, + ["ItemActsAsColdToFireSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Cold to Fire", statOrder = { 327 }, level = 1, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 550444281, }, + ["ItemActsAsColdToFireSupportUniqueStaff13"] = { affix = "", "Socketed Gems are Supported by Level 5 Cold to Fire", statOrder = { 327 }, level = 1, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 550444281, }, + ["ItemActsAsColdToFireSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Cold to Fire", statOrder = { 327 }, level = 75, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 550444281, }, + ["GenerateEnduranceChargesForAlliesInPresence"] = { affix = "", "If you would gain an Endurance Charge, Allies in your Presence gain that Charge instead", statOrder = { 1934 }, level = 1, group = "GenerateEnduranceChargesForAlliesInPresence", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1881314095, }, + ["GainEnduranceChargeWhenCriticallyHit"] = { affix = "", "Gain an Endurance Charge when you take a Critical Hit", statOrder = { 1517 }, level = 1, group = "GainEnduranceChargeWhenCriticallyHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "critical" }, tradeHash = 2609824731, }, + ["BlindingHitUniqueWand1"] = { affix = "", "10% chance to Blind Enemies on hit", statOrder = { 1937 }, level = 1, group = "BlindingHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2301191210, }, + ["ItemActsAsSupportBlindUniqueWand1"] = { affix = "", "Socketed Gems are supported by Level 20 Blind", statOrder = { 334 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2223640518, }, + ["ItemActsAsSupportBlindUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are supported by Level 30 Blind", statOrder = { 334 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2223640518, }, + ["ItemActsAsSupportBlindUniqueHelmetStrDex4b"] = { affix = "", "Socketed Gems are supported by Level 6 Blind", statOrder = { 334 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2223640518, }, + ["ItemActsAsSupportBlindUnique__1"] = { affix = "", "Socketed Gems are supported by Level 10 Blind", statOrder = { 334 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2223640518, }, + ["ReducedFreezeDurationUniqueShieldStrInt3"] = { affix = "", "80% reduced Freeze Duration on you", statOrder = { 998 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2160282525, }, + ["FreezeDurationOnSelfUnique__1"] = { affix = "", "10000% increased Freeze Duration on you", statOrder = { 998 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2160282525, }, + ["FacebreakerUnarmedMoreDamage"] = { affix = "", "(600-800)% more Physical Damage with Unarmed Melee Attacks", statOrder = { 2109 }, level = 1, group = "FacebreakerPhysicalUnarmedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1814782245, }, + ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandMace3"] = { affix = "", "Socketed Gems are Supported by Level 15 Pulverise", statOrder = { 246 }, level = 1, group = "SupportedByPulverise", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 282757414, }, + ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandAxe5"] = { affix = "", "Socketed Gems are Supported by Level 20 Increased Area of Effect", statOrder = { 170 }, level = 1, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3720936304, }, + ["SocketedGemsGetIncreasedAreaOfEffectUniqueDescentOneHandSword1"] = { affix = "", "Socketed Gems are Supported by Level 5 Increased Area of Effect", statOrder = { 170 }, level = 1, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3720936304, }, + ["SocketedGemsGetIncreasedAreaOfEffectUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 276 }, level = 1, group = "SupportedByIntensifyLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3561676020, }, + ["ExtraGore"] = { affix = "", "Extra gore", statOrder = { 10102 }, level = 1, group = "ExtraGore", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3403461239, }, + ["OneSocketEachColourUnique"] = { affix = "", "Has one socket of each colour", statOrder = { 58 }, level = 1, group = "OneSocketEachColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3146680230, }, + ["BlockWhileDualWieldingUniqueDagger3"] = { affix = "", "+12% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1060 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, }, + ["BlockWhileDualWieldingUniqueTwoHandAxe6"] = { affix = "", "+(8-12)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1060 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, }, + ["BlockWhileDualWieldingUniqueOneHandSword5"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1060 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, }, + ["BlockWhileDualWieldingUniqueDagger9"] = { affix = "", "+5% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1060 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, }, + ["BlockWhileDualWieldingUnique__1"] = { affix = "", "+10% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1060 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, }, + ["BlockWhileDualWieldingUnique__2_"] = { affix = "", "+18% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1060 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, }, + ["MaximumMinionCountUniqueBootsInt4"] = { affix = "", "+1 to Level of all Raise Zombie Gems", "+1 to Level of all Raise Spectre Gems", statOrder = { 1403, 1404 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "minion", "gem" }, tradeHash = 1803717126, }, + ["MaximumMinionCountUniqueTwoHandSword4"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1825, 8762 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 284729245, }, + ["MaximumMinionCountUniqueTwoHandSword4Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1825, 1826 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, }, + ["MaximumMinionCountUniqueSceptre5"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 1825 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, }, + ["MaximumMinionCountUniqueBootsStrInt2"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 8762 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 284729245, }, + ["MaximumMinionCountUniqueBootsStrInt2Updated"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 1826 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, }, + ["MaximumMinionCountUniqueBodyInt9"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 1825 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, }, + ["MaximumMinionCountUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", "(7-10)% increased Skeleton Cast Speed", "(3-5)% increased Skeleton Movement Speed", statOrder = { 9288, 9289, 9292 }, level = 1, group = "SkeletonSpeedOld", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHash = 2857939712, }, + ["MaximumMinionCountUnique__1__"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 1825 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, }, + ["MaximumMinionCountUnique__2"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 1825 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, }, + ["SkeletonMovementSpeedUniqueJewel1"] = { affix = "", "(3-5)% increased Skeleton Movement Speed", statOrder = { 9292 }, level = 1, group = "SkeletonMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHash = 3295031203, }, + ["SkeletonAttackSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", statOrder = { 9288 }, level = 1, group = "SkeletonAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHash = 3413085237, }, + ["SkeletonCastSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Cast Speed", statOrder = { 9289 }, level = 1, group = "SkeletonCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "minion" }, tradeHash = 2725259389, }, + ["SocketedemsHaveBloodMagicUniqueShieldStrInt2"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 377 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 1104246401, }, + ["SocketedGemsHaveBloodMagicUniqueOneHandSword7"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 377 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 1104246401, }, + ["SocketedGemsHaveBloodMagicUnique__1"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 377 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 1104246401, }, + ["LocalIncreaseSocketedAuraLevelUniqueShieldStrInt2"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 132 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHash = 2452998583, }, + ["SocketedItemsHaveChanceToFleeUniqueClaw6"] = { affix = "", "Socketed Gems have 10% chance to cause Enemies to Flee on Hit", statOrder = { 383 }, level = 1, group = "DisplaySocketedGemGetsFlee", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 3418772, }, + ["AttackerTakesLightningDamageUniqueBodyInt1"] = { affix = "", "Reflects 1 to 250 Lightning Damage to Melee Attackers", statOrder = { 1858 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1243237244, }, + ["AttackerTakesLightningDamageUnique___1"] = { affix = "", "Reflects 1 to 150 Lightning Damage to Melee Attackers", statOrder = { 1858 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1243237244, }, + ["PhysicalDamageConvertToChaosUniqueBow5"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1636 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, }, + ["PhysicalDamageConvertToChaosUniqueClaw2"] = { affix = "", "(10-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1636 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, }, + ["PhysicalDamageConvertToChaosBodyStrInt4"] = { affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1636 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, }, + ["PhysicalDamageConvertToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1636 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, }, + ["PhysicalDamageConvertedToChaosPerLevelUnique__1"] = { affix = "", "1% of Physical Damage Converted to Chaos Damage per Level", statOrder = { 8708 }, level = 1, group = "PhysicalDamageConvertToChaosPerLevel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 1714211040, }, + ["MaximumMinionCountUniqueWand2"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1825, 8762 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 284729245, }, + ["MaximumMinionCountUniqueWand2Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1825, 1826 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, }, + ["LifeReservationUniqueWand2"] = { affix = "", "Cannot be used with Chaos Inoculation", "Reserves 30% of Life", statOrder = { 809, 2112 }, level = 1, group = "ReservesLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3920081309, }, + ["LocalIncreaseSocketedStrengthGemLevelUniqueTwoHandAxe3"] = { affix = "", "+1 to Level of Socketed Strength Gems", statOrder = { 110 }, level = 1, group = "LocalIncreaseSocketedStrengthGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHash = 916797432, }, + ["ChaosTakenOnES"] = { affix = "", "Chaos Damage taken does not cause double loss of Energy Shield", statOrder = { 2179 }, level = 1, group = "ChaosTakenOnES", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 133168938, }, + ["PhysicalDamagePercentTakesAsChaosDamageUniqueBow5"] = { affix = "", "25% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2124 }, level = 1, group = "PhysicalDamagePercentTakesAsChaosDamage", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, tradeHash = 4129825612, }, + ["PhysicalBowDamageCloseRangeUniqueBow6"] = { affix = "", "50% more Damage with Arrow Hits at Close Range", statOrder = { 2115 }, level = 1, group = "ChinSolPhysicalBowDamageAtCloseRange", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2749166636, }, + ["KnockbackCloseRangeUniqueBow6"] = { affix = "", "Bow Knockback at Close Range", statOrder = { 2116 }, level = 1, group = "ChinSolCloseRangeKnockBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3261557635, }, + ["PercentDamageGoesToManaUniqueBootsDex3"] = { affix = "", "(5-10)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, }, + ["PercentDamageGoesToManaUniqueHelmetStrInt3"] = { affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, }, + ["PercentDamageGoesToManaUnique__1"] = { affix = "", "8% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, }, + ["PercentDamageGoesToManaUnique__2"] = { affix = "", "(6-12)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, }, + ["BurnDurationUniqueBodyInt2"] = { affix = "", "(40-75)% increased Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, }, + ["BurnDurationUniqueDescentOneHandMace1"] = { affix = "", "500% increased Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, }, + ["BurnDurationUniqueRing31"] = { affix = "", "15% increased Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, }, + ["BurnDurationUniqueWand10"] = { affix = "", "25% reduced Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, }, + ["BurnDurationUnique__1"] = { affix = "", "33% increased Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, }, + ["BurnDurationUnique__2"] = { affix = "", "10000% increased Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, }, + ["PhysicalDamageTakenAsFirePercentUniqueBodyInt2"] = { affix = "", "20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2119 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHash = 3342989455, }, + ["PhysicalDamageTakenAsFirePercentUnique__1"] = { affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2119 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHash = 3342989455, }, + ["AttackerTakesFireDamageUniqueBodyInt2"] = { affix = "", "Reflects 100 Fire Damage to Melee Attackers", statOrder = { 1861 }, level = 1, group = "AttackerTakesFireDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 1757945818, }, + ["AvoidIgniteUniqueBodyDex3"] = { affix = "", "Cannot be Ignited", statOrder = { 1522 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 331731406, }, + ["AvoidIgniteUnique__1"] = { affix = "", "Cannot be Ignited", statOrder = { 1522 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 331731406, }, + ["RangedWeaponPhysicalDamagePlusPercentUniqueBodyDex3"] = { affix = "", "(10-15)% increased Physical Damage with Ranged Weapons", statOrder = { 1665 }, level = 1, group = "RangedWeaponPhysicalDamagePlusPercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 766615564, }, + ["RangedWeaponPhysicalDamagePlusPercentUnique__1"] = { affix = "", "(75-150)% increased Physical Damage with Ranged Weapons", statOrder = { 1665 }, level = 1, group = "RangedWeaponPhysicalDamagePlusPercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 766615564, }, + ["PhysicalDamageTakenPercentToReflectUniqueBodyStr2"] = { affix = "", "1000% of Melee Physical Damage taken reflected to Attacker", statOrder = { 2129 }, level = 1, group = "PhysicalDamageTakenPercentToReflect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1092987622, }, + ["AdditionalBlockUniqueBodyDex2"] = { affix = "", "+5% to Block chance", statOrder = { 2130 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, }, + ["UniqueAdditionalBlockChance1"] = { affix = "", "+25% to Block chance", statOrder = { 2130 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, }, + ["AdditionalBlockUnique__1"] = { affix = "", "+(2-4)% to Block chance", statOrder = { 2130 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, }, + ["AdditionalBlockUnique__2"] = { affix = "", "+15% to Block chance", statOrder = { 2130 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, }, + ["ArrowPierceUniqueBow7"] = { affix = "", "Arrows Pierce all Targets", statOrder = { 4517 }, level = 1, group = "ArrowsAlwaysPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1829238593, }, + ["AdditionalArrowPierceImplicitQuiver12_"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1476 }, level = 45, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3423006863, }, + ["AdditionalArrowPierceImplicitQuiver5New"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1476 }, level = 32, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3423006863, }, + ["LeechEnergyShieldInsteadofLife"] = { affix = "", "Life Leech is Converted to Energy Shield Leech", statOrder = { 5377 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 3314050176, }, + ["BlockWhileDualWieldingClawsUniqueClaw1"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding Claws", statOrder = { 1061 }, level = 1, group = "BlockWhileDualWieldingClaws", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2538694749, }, + ["BlockVsProjectilesUniqueShieldStr2"] = { affix = "", "+25% chance to Block Projectile Attack Damage", statOrder = { 2134 }, level = 1, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3416410609, }, + ["CannotLeech"] = { affix = "", "Cannot Leech", statOrder = { 2135 }, level = 1, group = "CannotLeech", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "mana", "defences" }, tradeHash = 1336164384, }, + ["SocketedItemsHaveReducedReservationUniqueShieldStrInt2"] = { affix = "", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 378 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 3289633055, }, + ["SocketedItemsHaveReducedReservationUniqueBodyDexInt4"] = { affix = "", "Socketed Gems have 45% increased Reservation Efficiency", statOrder = { 378 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 3289633055, }, + ["SocketedItemsHaveReducedReservationUnique__1"] = { affix = "", "Socketed Gems have 25% increased Reservation Efficiency", statOrder = { 378 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 3289633055, }, + ["SocketedItemsHaveIncreasedReservationUnique__1"] = { affix = "", "Socketed Gems have 20% reduced Reservation Efficiency", statOrder = { 378 }, level = 57, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 3289633055, }, + ["ChanceToFreezeUniqueStaff2"] = { affix = "", "8% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, }, + ["ChanceToFreezeUniqueQuiver5"] = { affix = "", "(7-10)% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, }, + ["ChanceToFreezeUniqueRing30"] = { affix = "", "10% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, }, + ["ChanceToFreezeUnique__1"] = { affix = "", "5% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, }, + ["ChanceToFreezeUnique__2"] = { affix = "", "2% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, }, + ["ChanceToFreezeUnique__3"] = { affix = "", "10% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, }, + ["ChanceToFreezeUnique__4"] = { affix = "", "10% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, }, + ["ChanceToFreezeUnique__5"] = { affix = "", "20% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, }, + ["FrozenMonstersTakeIncreasedDamage"] = { affix = "", "Enemies Frozen by you take 20% increased Damage", statOrder = { 2133 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 849085925, }, + ["FrozenMonstersTakeIncreasedDamageUnique__1"] = { affix = "", "Enemies Frozen by you take 20% increased Damage", statOrder = { 2133 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 849085925, }, + ["IncreasedIntelligenceRequirementsUniqueSceptre1"] = { affix = "", "60% increased Intelligence Requirement", statOrder = { 813 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 18234720, }, + ["IncreasedIntelligenceRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Intelligence Requirement", statOrder = { 813 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 18234720, }, + ["AddedIntelligenceRequirementsUnique__1"] = { affix = "", "+257 Intelligence Requirement", statOrder = { 812 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2153364323, }, + ["SocketedGemsHaveAddedChaosDamageUniqueBodyInt3"] = { affix = "", "Socketed Gems are Supported by Level 15 Added Chaos Damage", statOrder = { 323 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 411460446, }, + ["SocketedGemsHaveAddedChaosDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Added Chaos Damage", statOrder = { 323 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 411460446, }, + ["SocketedGemsHaveAddedChaosDamageUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 25 Added Chaos Damage", statOrder = { 323 }, level = 50, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 411460446, }, + ["SocketedGemsHaveAddedChaosDamageUnique__3"] = { affix = "", "Socketed Gems are Supported by Level 29 Added Chaos Damage", statOrder = { 323 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 411460446, }, + ["EnergyShieldGainedOnBlockUniqueShieldStrInt4"] = { affix = "", "Recover Energy Shield equal to 2% of Armour when you Block", statOrder = { 2138 }, level = 1, group = "EnergyShieldGainedOnBlockBasedOnArmour", weightKey = { }, weightVal = { }, modTags = { "block", "energy_shield", "defences" }, tradeHash = 3681057026, }, + ["LocalPoisonOnHit"] = { affix = "", "Poisonous Hit", statOrder = { 2139 }, level = 1, group = "LocalPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 4075957192, }, + ["SkeletonDurationUniqueTwoHandSword4"] = { affix = "", "(150-200)% increased Skeleton Duration", statOrder = { 1464 }, level = 1, group = "SkeletonDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1331384105, }, + ["SkeletonDurationUniqueJewel1_"] = { affix = "", "(10-20)% reduced Skeleton Duration", statOrder = { 1464 }, level = 1, group = "SkeletonDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1331384105, }, + ["IncreasedStrengthRequirementsUniqueTwoHandSword4"] = { affix = "", "25% increased Strength Requirement", statOrder = { 820 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, }, + ["ReducedStrengthRequirementsUniqueTwoHandMace5"] = { affix = "", "20% reduced Strength Requirement", statOrder = { 820 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, }, + ["ReducedStrengthRequirementUniqueBodyStr5"] = { affix = "", "30% reduced Strength Requirement", statOrder = { 820 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, }, + ["IncreasedStrengthRequirementUniqueStaff8"] = { affix = "", "40% increased Strength Requirement", statOrder = { 820 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, }, + ["IncreasedStrengthREquirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Strength Requirement", statOrder = { 820 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, }, + ["StrengthRequirementsUniqueOneHandMace3"] = { affix = "", "+200 Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, }, + ["StrengthRequirementsUnique__1"] = { affix = "", "+100 Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, }, + ["StrengthRequirementsUnique__2"] = { affix = "", "+200 Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, }, + ["StrengthRequirementsUnique__3_"] = { affix = "", "+(500-700) Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, }, + ["IntelligenceRequirementsUniqueOneHandMace3"] = { affix = "", "+300 Intelligence Requirement", statOrder = { 812 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2153364323, }, + ["IntelligenceRequirementsUniqueBow12"] = { affix = "", "+212 Intelligence Requirement", statOrder = { 812 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2153364323, }, + ["DexterityRequirementsUnique__1"] = { affix = "", "+160 Dexterity Requirement", statOrder = { 810 }, level = 1, group = "DexterityRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1133453872, }, + ["StrengthIntelligenceRequirementsUnique__1"] = { affix = "", "+600 Strength and Intelligence Requirement", statOrder = { 818 }, level = 1, group = "StrengthIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4272453892, }, + ["SpellDamageTakenOnLowManaUniqueBodyInt4"] = { affix = "", "100% increased Spell Damage taken when on Low Mana", statOrder = { 2141 }, level = 1, group = "SpellDamageTakenOnLowMana", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 3557561376, }, + ["EvasionOnFullLifeUniqueBodyDex4"] = { affix = "", "+1000 to Evasion Rating while on Full Life", statOrder = { 1362 }, level = 1, group = "EvasionOnFullLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 4082111882, }, + ["EvasionOnFullLifeUnique__1_"] = { affix = "", "+1500 to Evasion Rating while on Full Life", statOrder = { 1362 }, level = 1, group = "EvasionOnFullLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 4082111882, }, + ["ReflectCurses"] = { affix = "", "Curse Reflection", statOrder = { 2146 }, level = 1, group = "ReflectCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1731672673, }, + ["FlaskCurseImmunityUnique___1"] = { affix = "", "Removes Curses on use", statOrder = { 656 }, level = 1, group = "FlaskCurseImmunity", weightKey = { }, weightVal = { }, modTags = { "flask", "caster", "curse" }, tradeHash = 3895393544, }, + ["CausesBleedingUniqueTwoHandAxe4"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2152 }, level = 1, group = "CausesBleeding50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 20157668, }, + ["CausesBleedingUniqueTwoHandAxe4Updated"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, + ["CausesBleedingUniqueTwoHandAxe7"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2151 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1401349154, }, + ["CausesBleedingUniqueTwoHandAxe7Updated"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, + ["CausesBleedingUniqueOneHandAxe5"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2151 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1401349154, }, + ["CausesBleedingUniqueOneHandAxe5Updated_"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, + ["CausesBleedingUnique__1"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2151 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1401349154, }, + ["CausesBleedingUnique__1Updated_"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, + ["CausesBleedingUnique__2"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2151 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1401349154, }, + ["CausesBleedingUnique__2Updated"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, + ["CauseseBleedingOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Bleeding on Critical Hit", statOrder = { 7166 }, level = 1, group = "LocalCausesBleedingOnCrit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "critical", "ailment" }, tradeHash = 513681673, }, + ["CausesBleedingOnCritUniqueDagger11"] = { affix = "", "50% chance to cause Bleeding on Critical Hit", statOrder = { 7173 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2743246999, }, + ["AttacksDealNoPhysicalDamage"] = { affix = "", "Attacks deal no Physical Damage", statOrder = { 2149 }, level = 1, group = "AttacksDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2992817550, }, + ["GoldenLightBeam"] = { affix = "", "Golden Radiance", statOrder = { 2165 }, level = 1, group = "GoldenLightBeam", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3636414626, }, + ["CannotBeStunnedOnLowLife"] = { affix = "", "Cannot be Stunned when on Low Life", statOrder = { 1839 }, level = 1, group = "CannotBeStunnedOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1472543401, }, + ["AuraEffectUniqueShieldInt2"] = { affix = "", "20% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3145 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1880071428, }, + ["AuraEffectOnMinionsUniqueShieldInt2"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 1809 }, level = 1, group = "AuraEffectOnMinions", weightKey = { }, weightVal = { }, modTags = { "minion", "aura" }, tradeHash = 634031003, }, + ["AuraEffectUnique__1"] = { affix = "", "20% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3145 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1880071428, }, + ["AuraEffectUnique__2____"] = { affix = "", "10% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3145 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1880071428, }, + ["AuraEffectOnMinionsUnique__1_"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 1809 }, level = 1, group = "AuraEffectOnMinions", weightKey = { }, weightVal = { }, modTags = { "minion", "aura" }, tradeHash = 634031003, }, + ["AreaDamageUniqueBodyDexInt1"] = { affix = "", "(40-50)% increased Area Damage", statOrder = { 1699 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4251717817, }, + ["AreaDamageUniqueDescentOneHandSword1"] = { affix = "", "10% increased Area Damage", statOrder = { 1699 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4251717817, }, + ["AreaDamageUniqueOneHandMace7"] = { affix = "", "(10-20)% increased Area Damage", statOrder = { 1699 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4251717817, }, + ["AreaDamageImplicitMace1"] = { affix = "", "30% increased Area Damage", statOrder = { 1699 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4251717817, }, + ["AreaDamageUnique__1"] = { affix = "", "30% increased Area Damage", statOrder = { 1699 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4251717817, }, + ["AllDamageUniqueRing6"] = { affix = "", "(10-30)% increased Damage", statOrder = { 1087 }, level = 30, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, }, + ["AllDamageUniqueRing8"] = { affix = "", "10% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, }, + ["AllDamageUniqueHelmetDexInt2"] = { affix = "", "25% reduced Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, }, + ["AllDamageUniqueStaff4"] = { affix = "", "(40-50)% increased Global Damage", statOrder = { 1088 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 819529588, }, + ["AllDamageUniqueSceptre8"] = { affix = "", "(40-60)% increased Global Damage", statOrder = { 1088 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 819529588, }, + ["AllDamageUniqueBelt11"] = { affix = "", "10% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, }, + ["AllDamageUnique__1"] = { affix = "", "10% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, }, + ["AllDamageUnique__2"] = { affix = "", "(20-25)% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, }, + ["AllDamageUnique__3"] = { affix = "", "(250-300)% increased Global Damage", statOrder = { 1088 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 819529588, }, + ["AllDamageUnique__4"] = { affix = "", "(30-40)% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, }, + ["LightRadiusUniqueSceptre2"] = { affix = "", "50% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["LightRadiusUniqueBootsStrDex2"] = { affix = "", "25% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["LightRadiusUniqueRing9_"] = { affix = "", "31% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["LightRadiusUniqueBodyInt8"] = { affix = "", "25% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["LightRadiusUniqueBodyStrInt4"] = { affix = "", "25% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["LightRadiusUniqueRing11"] = { affix = "", "(10-15)% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["LightRadiusUniqueAmulet17"] = { affix = "", "(10-15)% increased Light Radius", statOrder = { 1003 }, level = 50, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["LightRadiusUniqueBelt6"] = { affix = "", "25% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["LightRadiusUniqueBodyStr4"] = { affix = "", "25% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["LightRadiusUniqueBootsStrDex3"] = { affix = "", "20% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["LightRadiusUniqueHelmetStrInt4"] = { affix = "", "40% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["LightRadiusUniqueBodyStrInt5"] = { affix = "", "(20-30)% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["LightRadiusUniqueRing15"] = { affix = "", "10% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["LightRadiusUniqueHelmetStrDex6"] = { affix = "", "40% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["LightRadiusUniqueStaff10_"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["LightRadiusUniqueShieldDemigods"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["LightRadiusUnique__1"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["LightRadiusUnique__2"] = { affix = "", "(10-30)% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["LightRadiusUnique__3"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["LightRadiusUnique__4"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["LightRadiusUnique__5"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["LightRadiusUnique__6"] = { affix = "", "50% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["LightRadiusUnique__7_"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["LightRadiusUnique__8"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["EnfeebleOnHitUniqueShieldStr3"] = { affix = "", "25% chance to Curse Non-Cursed Enemies with Enfeeble on Hit", statOrder = { 2190 }, level = 1, group = "EnfeebleOnHitUncursed", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3804297142, }, + ["GroundTarOnCritTakenUniqueShieldInt2"] = { affix = "", "Spreads Tar when you take a Critical Hit", statOrder = { 2180 }, level = 1, group = "GroundTarOnCritTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 665808208, }, + ["GroundTarOnHitTakenUnique__1"] = { affix = "", "20% chance to spread Tar when Hit", statOrder = { 6505 }, level = 1, group = "GroundTarOnHitTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 213066229, }, + ["SpellsHaveCullingStrikeUniqueDagger4"] = { affix = "", "Your Spells have Culling Strike", statOrder = { 2201 }, level = 1, group = "SpellsHaveCullingStrike", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 3238189103, }, + ["EvasionRatingPercentOnLowLifeUniqueHelmetDex4"] = { affix = "", "150% increased Global Evasion Rating when on Low Life", statOrder = { 2204 }, level = 1, group = "EvasionRatingPercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2695354435, }, + ["LocalLifeLeechIsInstantUniqueClaw3"] = { affix = "", "Life Leech from Hits with this Weapon is instant", statOrder = { 2207 }, level = 1, group = "LocalLifeLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1765389199, }, + ["ReducedManaReservationsCostUniqueHelmetDex5"] = { affix = "", "16% increased Mana Reservation Efficiency of Skills", statOrder = { 1882 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1269219558, }, + ["ManaReservationEfficiencyUniqueHelmetDex5_"] = { affix = "", "16% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4237190083, }, + ["IncreasedManaReservationsCostUniqueOneHandSword11"] = { affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 1882 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1269219558, }, + ["ManaReservationEfficiencyUniqueOneHandSword11"] = { affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4237190083, }, + ["IncreasedManaReservationsCostUnique__1"] = { affix = "", "80% reduced Reservation Efficiency of Skills", statOrder = { 1883 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4202507508, }, + ["ReservationEfficiencyUnique__1_"] = { affix = "", "80% reduced Reservation Efficiency of Skills", statOrder = { 1880 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2587176568, }, + ["IncreasedManaReservationsCostUnique__2"] = { affix = "", "20% reduced Reservation Efficiency of Skills", statOrder = { 1883 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4202507508, }, + ["ReservationEfficiencyUnique__2"] = { affix = "", "20% reduced Reservation Efficiency of Skills", statOrder = { 1880 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2587176568, }, + ["ReducedManaReservationsCostUniqueJewel44"] = { affix = "", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 1882 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1269219558, }, + ["ManaReservationEfficiencyUniqueJewel44_"] = { affix = "", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4237190083, }, + ["ReducedManaReservationCostUnique__1"] = { affix = "", "12% increased Reservation Efficiency of Skills", statOrder = { 1883 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4202507508, }, + ["ReservationEfficiencyUnique__3__"] = { affix = "", "12% increased Reservation Efficiency of Skills", statOrder = { 1880 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2587176568, }, + ["ReducedManaReservationCostUnique__2"] = { affix = "", "(12-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 1882 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1269219558, }, + ["ReservationEfficiencyUnique__4_"] = { affix = "", "(10-20)% increased Reservation Efficiency of Skills", statOrder = { 1880 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2587176568, }, + ["ManaReservationEfficiencyUnique__2"] = { affix = "", "(12-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4237190083, }, + ["FireResistOnLowLifeUniqueShieldStrInt5"] = { affix = "", "+25% to Fire Resistance while on Low Life", statOrder = { 1412 }, level = 1, group = "FireResistOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 38301299, }, + ["AvoidIgniteOnLowLifeUniqueShieldStrInt5"] = { affix = "", "100% chance to Avoid being Ignited while on Low Life", statOrder = { 1530 }, level = 1, group = "AvoidIgniteOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 4271082039, }, + ["SocketedGemsGetElementalProliferationUniqueBodyInt5"] = { affix = "", "Socketed Gems are Supported by Level 5 Elemental Proliferation", statOrder = { 330 }, level = 1, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2929101122, }, + ["SocketedGemsGetElementalProliferationUniqueSceptre7"] = { affix = "", "Socketed Gems are Supported by Level 20 Elemental Proliferation", statOrder = { 330 }, level = 94, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2929101122, }, + ["SkillEffectDurationUniqueTwoHandMace5"] = { affix = "", "15% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, }, + ["ReducedSkillEffectDurationUniqueAmulet20"] = { affix = "", "(10-20)% reduced Skill Effect Duration", statOrder = { 1572 }, level = 63, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, }, + ["SkillEffectDurationUnique__1"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, }, + ["SkillEffectDurationUnique__2_"] = { affix = "", "(-20-20)% reduced Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, }, + ["SkillEffectDurationUnique__3"] = { affix = "", "30% increased Skill Effect Duration", statOrder = { 1572 }, level = 75, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, }, + ["SkillEffectDurationUnique__4"] = { affix = "", "(-13-13)% reduced Skill Effect Duration", statOrder = { 1572 }, level = 82, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, }, + ["SkillEffectDurationUniqueJewel44"] = { affix = "", "4% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, }, + ["LocalIncreaseSocketedMovementGemLevelUniqueBodyDex5"] = { affix = "", "+5 to Level of Socketed Movement Gems", statOrder = { 134 }, level = 1, group = "LocalIncreaseSocketedMovementGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 3852526385, }, + ["MovementVelocityPerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "5% increased Movement Speed per Frenzy Charge", statOrder = { 1484 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, }, + ["MovementVelocityPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1484 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, }, + ["MovementVelocityPerFrenzyChargeUniqueBodyDexInt3"] = { affix = "", "4% increased Movement Speed per Frenzy Charge", statOrder = { 1484 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, }, + ["MovementVelocityPerFrenzyChargeUniqueDescentOneHandSword1_"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1484 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, }, + ["EvasionRatingPerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "10% increased Evasion Rating per Frenzy Charge", statOrder = { 1365 }, level = 1, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 660404777, }, + ["MaximumFrenzyChargesUniqueBootsStrDex2_"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, }, + ["MaximumFrenzyChargesUniqueBodyStr3"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, }, + ["MaximumFrenzyChargesUniqueDescentOneHandSword1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, }, + ["MaximumFrenzyChargesUnique__1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, }, + ["ReducedMaximumFrenzyChargesUniqueCorruptedJewel16"] = { affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, }, + ["ReducedMaximumFrenzyChargesUnique__1"] = { affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, }, + ["ReducedMaximumFrenzyChargesUnique__2_"] = { affix = "", "-2 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, }, + ["WeaponPhysicalDamagePerStrength"] = { affix = "", "1% increased Weapon Damage per 10 Strength", statOrder = { 9896 }, level = 1, group = "WeaponDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1791136590, }, + ["AttackSpeedPerDexterity"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 4439 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 889691035, }, + ["IncreasedAreaOfEffectPerIntelligence"] = { affix = "", "16% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4364 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 434750362, }, + ["FrenzyChargeDurationUniqueBootsStrDex2"] = { affix = "", "40% reduced Frenzy Charge Duration", statOrder = { 1791 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 3338298622, }, + ["FrenzyChargeDurationUnique__1"] = { affix = "", "20% reduced Frenzy Charge Duration", statOrder = { 1791 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 3338298622, }, + ["AdditionalTotemsUnique__1"] = { affix = "", "+1 to maximum number of Summoned Totems", statOrder = { 1903 }, level = 1, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 429867172, }, + ["TotemLifeUniqueBodyInt7"] = { affix = "", "(20-30)% increased Totem Life", statOrder = { 1459 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 686254215, }, + ["TotemLifeUnique__1"] = { affix = "", "(14-20)% increased Totem Life", statOrder = { 1459 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 686254215, }, + ["TotemLifeUnique__2_"] = { affix = "", "(20-30)% increased Totem Life", statOrder = { 1459 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 686254215, }, + ["DisplaySocketedGemGetsSpellTotemBodyInt7"] = { affix = "", "Socketed Gems are Supported by Level 20 Spell Totem", statOrder = { 328 }, level = 1, group = "DisplaySocketedGemGetsSpellTotemLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2962840349, }, + ["DisplaySocketedGemGetsIncreasedDurationGlovesInt4_"] = { affix = "", "Socketed Gems are Supported by Level 10 Increased Duration", statOrder = { 325 }, level = 1, group = "DisplaySocketedGemGetsIncreasedDurationLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2091466357, }, + ["RandomlyCursedWhenTotemsDieUniqueBodyInt7"] = { affix = "", "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", statOrder = { 2219 }, level = 1, group = "RandomlyCursedWhenTotemsDie", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2918129907, }, + ["DisplaySocketedGemGetsAddedLightningDamageGlovesDexInt3"] = { affix = "", "Socketed Gems are Supported by Level 18 Added Lightning Damage", statOrder = { 331 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1647529598, }, + ["DisplaySocketedGemGetsAddedLightningDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Added Lightning Damage", statOrder = { 331 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1647529598, }, + ["ShockDurationUniqueGlovesDexInt3"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 7067 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1484471543, }, + ["ShockDurationUniqueStaff8"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 7067 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1484471543, }, + ["ShockDurationUnique__1"] = { affix = "", "10000% increased Shock Duration", statOrder = { 1540 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3668351662, }, + ["ShockDurationUnique__2"] = { affix = "", "(1-100)% increased Duration of Lightning Ailments", statOrder = { 7067 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1484471543, }, + ["IncreasedPhysicalDamageTakenUniqueHelmetStr3"] = { affix = "", "(40-50)% increased Physical Damage taken", statOrder = { 1891 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3853018505, }, + ["IncreasedPhysicalDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Physical Damage taken", statOrder = { 1891 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3853018505, }, + ["IncreasedPhysicalDamageTakenUniqueBootsDex8"] = { affix = "", "20% increased Physical Damage taken", statOrder = { 1891 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3853018505, }, + ["IncreasedLocalAttributeRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, }, + ["IncreasedLocalAttributeRequirementsUnique__1"] = { affix = "", "800% increased Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, }, + ["TemporalChainsOnHitUniqueGlovesInt3"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2188 }, level = 1, group = "TemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 4139135963, }, + ["MeleeWeaponCriticalStrikeMultiplierUniqueHelmetStr3"] = { affix = "", "+(100-125)% to Melee Critical Damage Bonus", statOrder = { 1330 }, level = 1, group = "MeleeWeaponCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHash = 4237442815, }, + ["DisablesOtherRingSlot"] = { affix = "", "Can't use other Rings", statOrder = { 1399 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 64726306, }, + ["GlobalItemAttributeRequirementsUniqueAmulet10"] = { affix = "", "Equipment and Skill Gems have 25% reduced Attribute Requirements", statOrder = { 2224 }, level = 20, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, }, + ["GlobalItemAttributeRequirementsUniqueAmulet19"] = { affix = "", "Equipment and Skill Gems have 10% increased Attribute Requirements", statOrder = { 2224 }, level = 45, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, }, + ["GlobalItemAttributeRequirementsUnique__1_"] = { affix = "", "Equipment and Skill Gems have 100% reduced Attribute Requirements", statOrder = { 2224 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, }, + ["GlobalItemAttributeRequirementsUnique__2"] = { affix = "", "Equipment and Skill Gems have 50% increased Attribute Requirements", statOrder = { 2224 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, }, + ["ReducedCurseEffectUniqueRing7"] = { affix = "", "50% reduced effect of Curses on you", statOrder = { 1835 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3407849389, }, + ["ReducedCurseEffectUniqueRing26"] = { affix = "", "60% reduced effect of Curses on you", statOrder = { 1835 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3407849389, }, + ["IncreasedCurseEffectUnique__1"] = { affix = "", "50% increased effect of Curses on you", statOrder = { 1835 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3407849389, }, + ["ReducedCurseEffectUnique__1"] = { affix = "", "20% reduced effect of Curses on you", statOrder = { 1835 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3407849389, }, + ["ManaGainPerTargetUniqueRing7"] = { affix = "", "Gain 30 Mana per Enemy Hit with Attacks", statOrder = { 1433 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 820939409, }, + ["ManaGainPerTargetUniqueTwoHandAxe9"] = { affix = "", "Grants 30 Mana per Enemy Hit", statOrder = { 1434 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 640052854, }, + ["ManaGainPerTargetUnique__1"] = { affix = "", "Grants (2-3) Mana per Enemy Hit", statOrder = { 1434 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 640052854, }, + ["ManaGainPerTargetUnique__2"] = { affix = "", "Grants 2 Mana per Enemy Hit", statOrder = { 1434 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 640052854, }, + ["DisplaySocketedGemGetsChancetoFleeUniqueShieldDex4"] = { affix = "", "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 353 }, level = 1, group = "DisplaySocketedGemGetsChancetoFleeLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 952060721, }, + ["DisplaySocketedGemGetsChanceToFleeUniqueOneHandAxe3"] = { affix = "", "Socketed Gems are supported by Level 2 Chance to Flee", statOrder = { 353 }, level = 1, group = "DisplaySocketedGemGetsChancetoFleeLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 952060721, }, + ["EnemyCriticalStrikeMultiplierUniqueRing8"] = { affix = "", "Hits against you have 50% reduced Critical Damage Bonus", statOrder = { 950 }, level = 1, group = "EnemyCriticalMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3855016469, }, + ["PlayerLightAlternateColourUniqueRing9"] = { affix = "", "Emits a golden glow", statOrder = { 2226 }, level = 1, group = "PlayerLightAlternateColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1252481812, }, + ["ChaosResistanceOnLowLifeUniqueRing9"] = { affix = "", "+(20-25)% to Chaos Resistance when on Low Life", statOrder = { 2227 }, level = 1, group = "ChaosResistanceOnLowLife", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2366940416, }, + ["EnemyHitsRollLowDamageUniqueRing9"] = { affix = "", "Enemy hits on you roll low Damage", statOrder = { 2225 }, level = 1, group = "EnemyHitsRollLowDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2482008875, }, + ["DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are Supported by Level 30 Faster Attacks", statOrder = { 333 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 928701213, }, + ["DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4b"] = { affix = "", "Socketed Gems are Supported by Level 12 Faster Attacks", statOrder = { 333 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 928701213, }, + ["DisplaySocketedGemGetsFasterAttackUniqueRing37"] = { affix = "", "Socketed Gems are Supported by Level 13 Faster Attacks", statOrder = { 333 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 928701213, }, + ["DisplaySocketedGemsGetsFasterAttackUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Faster Attacks", statOrder = { 333 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 928701213, }, + ["DisplaySocketedGemGetsMeleePhysicalDamageUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are Supported by Level 30 Melee Physical Damage", statOrder = { 332 }, level = 1, group = "DisplaySocketedGemGetsMeleePhysicalDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2985291457, }, + ["ChanceToGainEnduranceChargeOnBlockUniqueHelmetStrDex4"] = { affix = "", "20% chance to gain an Endurance Charge when you Block", statOrder = { 1788 }, level = 1, group = "ChanceToGainEnduranceChargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "endurance_charge" }, tradeHash = 417188801, }, + ["ChanceToGainEnduranceChargeOnBlockUniqueDescentShield1"] = { affix = "", "50% chance to gain an Endurance Charge when you Block", statOrder = { 1788 }, level = 1, group = "ChanceToGainEnduranceChargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "endurance_charge" }, tradeHash = 417188801, }, + ["EnemyExtraDamageRollsOnLowLifeUniqueRing9"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Low Life", statOrder = { 2228 }, level = 1, group = "EnemyExtraDamageRollsOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3753748365, }, + ["EnemyExtraDamageRollsOnFullLifeUnique__1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 5983 }, level = 68, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3629143471, }, + ["EnemyExtraDamageRollsOnFullLifeUnique__2"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 5983 }, level = 1, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3629143471, }, + ["EnemyExtraDamageRollsWithLightningDamageUnique__1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Lucky", statOrder = { 5933 }, level = 37, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 4224965099, }, + ["ItemDropsOnDeathUniqueAmulet12"] = { affix = "", "Item drops on death", statOrder = { 2230 }, level = 1, group = "ItemDropsOnDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2524282232, }, + ["LightningDamageOnChargeExpiryUniqueAmulet12"] = { affix = "", "Deal 1 to 1000 Lightning Damage to nearby Enemies when you lose a Power, Frenzy, or Endurance Charge", statOrder = { 2229 }, level = 1, group = "LightningDamageOnChargeExpiry", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2528932950, }, + ["AttackerTakesChaosDamageUniqueBodyStrInt4"] = { affix = "", "Reflects 30 Chaos Damage to Melee Attackers", statOrder = { 1863 }, level = 1, group = "AttackerTakesChaosDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 189451991, }, + ["IncreasedMaximumPowerChargesUniqueWand3"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, + ["IncreasedMaximumPowerChargesUniqueStaff7"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, + ["IncreasedMaximumPowerChargesUnique__2"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, + ["IncreasedMaximumPowerChargesUnique__1"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, + ["IncreasedMaximumPowerChargesUnique__3"] = { affix = "", "+2 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, + ["IncreasedMaximumPowerChargesUnique__4"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, + ["UniqueMaximumPowerChargesWand_1"] = { affix = "", "+(-1-1) to Maximum Power Charges", statOrder = { 1496 }, level = 82, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, + ["ReducedMaximumPowerChargesUniqueCorruptedJewel18"] = { affix = "", "-1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, + ["ReducedMaximumPowerChargesUnique__1"] = { affix = "", "-1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, + ["IncreasedPowerChargeDurationUniqueWand3"] = { affix = "", "15% increased Power Charge Duration", statOrder = { 1806 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3872306017, }, + ["PowerChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Power Charge Duration", statOrder = { 1806 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3872306017, }, + ["IncreasedPowerChargeDurationUnique__1"] = { affix = "", "(80-100)% increased Power Charge Duration", statOrder = { 1806 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3872306017, }, + ["IncreasedSpellDamagePerPowerChargeUniqueWand3"] = { affix = "", "25% increased Spell Damage per Power Charge", statOrder = { 1804 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 827329571, }, + ["IncreasedSpellDamagePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Spell Damage per Power Charge", statOrder = { 1804 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 827329571, }, + ["IncreasedSpellDamagePerPowerChargeUnique__1"] = { affix = "", "(12-16)% increased Spell Damage per Power Charge", statOrder = { 1804 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 827329571, }, + ["ConsecratedGroundOnBlockUniqueBodyInt8"] = { affix = "", "100% chance to create Consecrated Ground when you Block", statOrder = { 2245 }, level = 1, group = "ConsecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1818006464, }, + ["DesecratedGroundOnBlockUniqueBodyStrInt4"] = { affix = "", "100% chance to create Desecrated Ground when you Block", statOrder = { 2246 }, level = 1, group = "DesecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2969730223, }, + ["DisableChestSlot"] = { affix = "", "Can't use Body Armour", statOrder = { 2254 }, level = 1, group = "DisableChestSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4007482102, }, + ["LocalIncreaseSocketedElementalGemUniqueGlovesInt6"] = { affix = "", "+1 to Level of Socketed Elemental Gems", statOrder = { 159 }, level = 1, group = "LocalIncreaseSocketedElementalGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "gem" }, tradeHash = 3571342795, }, + ["LocalIncreaseSocketedElementalGemUnique___1"] = { affix = "", "+2 to Level of Socketed Elemental Gems", statOrder = { 159 }, level = 50, group = "LocalIncreaseSocketedElementalGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "gem" }, tradeHash = 3571342795, }, + ["EnergyShieldGainedFromEnemyDeathUniqueGlovesInt6"] = { affix = "", "Gain (15-20) Energy Shield per enemy killed", statOrder = { 2243 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2528955616, }, + ["EnergyShieldGainedFromEnemyDeathUniqueHelmetDexInt3"] = { affix = "", "Gain (10-15) Energy Shield per enemy killed", statOrder = { 2243 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2528955616, }, + ["EnergyShieldGainedFromEnemyDeathUnique__1"] = { affix = "", "Gain (15-25) Energy Shield per enemy killed", statOrder = { 2243 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2528955616, }, + ["IncreasedClawDamageOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Claw Physical Damage when on Low Life", statOrder = { 2255 }, level = 1, group = "IncreasedClawDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1081444608, }, + ["IncreasedClawDamageOnLowLifeUnique__1__"] = { affix = "", "200% increased Damage with Claws while on Low Life", statOrder = { 5285 }, level = 1, group = "IncreasedClawAllDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1629782265, }, + ["IncreasedAccuracyWhenOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Accuracy Rating when on Low Life", statOrder = { 2256 }, level = 1, group = "IncreasedAccuracyWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 347697569, }, + ["IncreasedAttackSpeedWhenOnLowLifeUniqueClaw4"] = { affix = "", "25% increased Attack Speed when on Low Life", statOrder = { 1114 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1921572790, }, + ["IncreasedAttackSpeedWhenOnLowLifeUnique__1"] = { affix = "", "25% increased Attack Speed when on Low Life", statOrder = { 1114 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1921572790, }, + ["IncreasedAttackSpeedWhenOnLowLifeUniqueDescentHelmet1"] = { affix = "", "30% increased Attack Speed when on Low Life", statOrder = { 1114 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1921572790, }, + ["ReducedProjectileDamageUniqueAmulet12"] = { affix = "", "40% reduced Projectile Damage", statOrder = { 1663 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1839076647, }, + ["ReducedProjectileDamageTakenUniqueAmulet12"] = { affix = "", "20% reduced Damage taken from Projectile Hits", statOrder = { 2405 }, level = 1, group = "ProjectileDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1425651005, }, + ["NoItemRarity"] = { affix = "", "You cannot increase the Rarity of Items found", statOrder = { 2217 }, level = 1, group = "NoItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 993866933, }, + ["NoItemQuantity"] = { affix = "", "You cannot increase the Quantity of Items found", statOrder = { 2218 }, level = 1, group = "NoItemQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3778266957, }, + ["CannotDieToElementalReflect"] = { affix = "", "You cannot be killed by reflected Elemental Damage", statOrder = { 2338 }, level = 1, group = "CannotDieToElementalReflect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2776725787, }, + ["MeleeAttacksUsableWithoutManaUniqueOneHandAxe1"] = { affix = "", "Insufficient Mana doesn't prevent your Melee Attacks", statOrder = { 2346 }, level = 1, group = "MeleeAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 1852317988, }, + ["MeleeAttacksUsableWithoutManaUnique__1"] = { affix = "", "Insufficient Mana doesn't prevent your Melee Attacks", statOrder = { 2346 }, level = 1, group = "MeleeAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 1852317988, }, + ["HybridStrDex"] = { affix = "", "+(16-24) to Strength and Dexterity", statOrder = { 1075 }, level = 20, group = "HybridStrDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 538848803, }, + ["HybridStrInt"] = { affix = "", "+(16-24) to Strength and Intelligence", statOrder = { 1076 }, level = 20, group = "HybridStrInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1535626285, }, + ["HybridDexInt"] = { affix = "", "+(16-24) to Dexterity and Intelligence", statOrder = { 1077 }, level = 20, group = "HybridDexInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 2300185227, }, + ["HybridStrDexUnique__1"] = { affix = "", "+(30-50) to Strength and Dexterity", statOrder = { 1075 }, level = 1, group = "HybridStrDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 538848803, }, + ["IncreasedMeleeWeaponAndUnarmedRangeUniqueAmulet13"] = { affix = "", "+2 to Melee Strike Range", statOrder = { 2203 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2264295449, }, + ["IncreasedMeleeWeaponAndUnarmedRangeUniqueJewel42"] = { affix = "", "+2 to Melee Strike Range", statOrder = { 2203 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2264295449, }, + ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe5"] = { affix = "", "+2 to Weapon Range", statOrder = { 2401 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, }, + ["LocalIncreasedMeleeWeaponRangeUniqueDescentStaff1"] = { affix = "", "+2 to Weapon Range", statOrder = { 2401 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, }, + ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe7_"] = { affix = "", "+10 to Weapon Range", statOrder = { 2401 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, }, + ["LocalIncreasedMeleeWeaponRangeUnique__1"] = { affix = "", "+2 to Weapon Range", statOrder = { 2401 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, }, + ["LocalIncreasedMeleeWeaponRangeUnique___2"] = { affix = "", "+2 to Weapon Range", statOrder = { 2401 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, }, + ["LocalIncreasedMeleeWeaponRangeEssence1"] = { affix = "", "+2 to Weapon Range", statOrder = { 2401 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 350598685, }, + ["EnduranceChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Endurance Charge Duration", statOrder = { 1789 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1170174456, }, + ["EnduranceChargeDurationUniqueBodyStrInt4"] = { affix = "", "30% increased Endurance Charge Duration", statOrder = { 1789 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1170174456, }, + ["FrenzyChargeOnKillChanceUniqueAmulet15"] = { affix = "", "10% chance to gain a Frenzy Charge on kill", statOrder = { 2295 }, level = 20, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, }, + ["FrenzyChargeOnKillChanceUniqueBootsDex4"] = { affix = "", "(20-30)% chance to gain a Frenzy Charge on kill", statOrder = { 2295 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, }, + ["FrenzyChargeOnKillChanceUniqueDescentOneHandSword1"] = { affix = "", "33% chance to gain a Frenzy Charge on kill", statOrder = { 2295 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, }, + ["FrenzyChargeOnKillChanceUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge on kill", statOrder = { 2295 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, }, + ["FrenzyChargeOnKillChanceUnique__2"] = { affix = "", "25% chance to gain a Frenzy Charge on kill", statOrder = { 2295 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, }, + ["FrenzyChargeOnKillChanceProphecy"] = { affix = "", "30% chance to gain a Frenzy Charge on kill", statOrder = { 2295 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, }, + ["PowerChargeOnKillChanceUniqueAmulet15"] = { affix = "", "10% chance to gain a Power Charge on kill", statOrder = { 2297 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, }, + ["PowerChargeOnKillChanceUniqueDescentDagger1"] = { affix = "", "15% chance to gain a Power Charge on kill", statOrder = { 2297 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, }, + ["PowerChargeOnKillChanceUniqueUniqueShieldInt3"] = { affix = "", "10% chance to gain a Power Charge on kill", statOrder = { 2297 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, }, + ["PowerChargeOnKillChanceUnique__1"] = { affix = "", "(25-35)% chance to gain a Power Charge on kill", statOrder = { 2297 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, }, + ["PowerChargeOnKillChanceProphecy_"] = { affix = "", "30% chance to gain a Power Charge on kill", statOrder = { 2297 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, }, + ["EnduranceChargeOnKillChanceProphecy"] = { affix = "", "30% chance to gain an Endurance Charge on kill", statOrder = { 2293 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1054322244, }, + ["EnduranceChargeOnPowerChargeExpiryUniqueAmulet14"] = { affix = "", "Gain an Endurance Charge when you lose a Power Charge", statOrder = { 2300 }, level = 1, group = "EnduranceChargeOnPowerChargeExpiry", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1791875585, }, + ["ChillAndFreezeBasedOffEnergyShieldBelt5Unique"] = { affix = "", "Chill Effect and Freeze Duration on you are based on 100% of Energy Shield", statOrder = { 2262 }, level = 70, group = "ChillAndFreezeDurationBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1194648995, }, + ["MeleeDamageOnFullLifeUniqueAmulet13"] = { affix = "", "60% increased Melee Damage when on Full Life", statOrder = { 2302 }, level = 1, group = "MeleeDamageOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3579807004, }, + ["ConsecrateOnCritChanceToCreateUniqueRing11"] = { affix = "", "Creates Consecrated Ground on Critical Hit", statOrder = { 2303 }, level = 1, group = "ConsecrateOnCritChanceToCreate", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3195625581, }, + ["ProjectileSpeedPerFrenzyChargeUniqueAmulet15"] = { affix = "", "5% increased Projectile Speed per Frenzy Charge", statOrder = { 2304 }, level = 1, group = "ProjectileSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3159161267, }, + ["ProjectileDamagePerPowerChargeUniqueAmulet15"] = { affix = "", "5% increased Projectile Damage per Power Charge", statOrder = { 2305 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3816512110, }, + ["RightRingSlotNoManaRegenUniqueRing13"] = { affix = "", "Right ring slot: You cannot Regenerate Mana", statOrder = { 2312 }, level = 38, group = "RightRingSlotNoManaRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 783864527, }, + ["RightRingSlotEnergyShieldRegenUniqueRing13"] = { affix = "", "Right ring slot: Regenerate 6% of maximum Energy Shield per second", statOrder = { 2313 }, level = 38, group = "RightRingSlotEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3676958605, }, + ["LeftRingSlotManaRegenUniqueRing13"] = { affix = "", "Left ring slot: 100% increased Mana Regeneration Rate", statOrder = { 2323 }, level = 1, group = "LeftRingSlotManaRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 195090426, }, + ["LeftRingSlotNoEnergyShieldRegenUniqueRing13"] = { affix = "", "Left ring slot: You cannot Recharge or Regenerate Energy Shield", statOrder = { 2316 }, level = 1, group = "LeftRingSlotNoEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4263540840, }, + ["EnergyShieldRegenerationUnique__1"] = { affix = "", "Regenerate 1% of maximum Energy Shield per second", statOrder = { 2310 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3594640492, }, + ["EnergyShieldRegenerationUnique__2"] = { affix = "", "Regenerate 1% of maximum Energy Shield per second", statOrder = { 2310 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3594640492, }, + ["EnergyShieldRegenerationUnique__3"] = { affix = "", "Regenerate 2% of maximum Energy Shield per second", statOrder = { 2310 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3594640492, }, + ["FlatEnergyShieldRegenerationUnique__1"] = { affix = "", "Regenerate (80-100) Energy Shield per second", statOrder = { 2309 }, level = 1, group = "FlatEnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1330109706, }, + ["KilledMonsterItemRarityOnCritUniqueRing11"] = { affix = "", "(40-50)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", statOrder = { 2306 }, level = 1, group = "KilledMonsterItemRarityOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 21824003, }, + ["OnslaughtBuffOnKillUniqueRing12"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2307 }, level = 58, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1195849808, }, + ["OnslaughtBuffOnKillUniqueDagger12"] = { affix = "", "You gain Onslaught for 3 seconds on Kill", statOrder = { 2307 }, level = 1, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1195849808, }, + ["AttackAndCastSpeedPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "4% reduced Attack and Cast Speed per Frenzy Charge", statOrder = { 1708 }, level = 1, group = "AttackAndCastSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 269590092, }, + ["LifeRegenerationPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "Regenerate 0.8% of maximum Life per second per Frenzy Charge", statOrder = { 2292 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2828673491, }, + ["EnemiesOnLowLifeTakeMoreDamagePerFrenzyChargeUniqueBootsDex4"] = { affix = "", "(20-30)% increased Damage per Frenzy Charge with Hits against Enemies on Low Life", statOrder = { 2465 }, level = 1, group = "EnemiesOnLowLifeTakeMoreDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1696792323, }, + ["AvoidIgniteUniqueOneHandSword4"] = { affix = "", "Cannot be Ignited", statOrder = { 1522 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 331731406, }, + ["IncreasedMovementVelictyWhileCursedUniqueOneHandSword4"] = { affix = "", "30% increased Movement Speed while Cursed", statOrder = { 2291 }, level = 1, group = "MovementVelocityWhileCursed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3988943320, }, + ["ShieldBlockChanceUniqueAmulet16"] = { affix = "", "+10% Chance to Block Attack Damage while holding a Shield", statOrder = { 1056 }, level = 1, group = "GlobalShieldBlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4061558269, }, + ["ReflectDamageToAttackersOnBlockUniqueAmulet16"] = { affix = "", "Reflects 240 to 300 Physical Damage to Attackers on Block", statOrder = { 2257 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHash = 1445684883, }, + ["ReflectDamageToAttackersOnBlockUniqueDescentStaff1"] = { affix = "", "Reflects 8 to 14 Physical Damage to Attackers on Block", statOrder = { 2257 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHash = 1445684883, }, + ["ReflectDamageToAttackersOnBlockUniqueDescentShield1"] = { affix = "", "Reflects 4 to 8 Physical Damage to Attackers on Block", statOrder = { 2257 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHash = 1445684883, }, + ["ReflectDamageToAttackersOnBlockUniqueShieldDex5"] = { affix = "", "Reflects 1000 to 10000 Physical Damage to Attackers on Block", statOrder = { 2257 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHash = 1445684883, }, + ["ReflectDamageToAttackersOnBlockUniqueStaff9"] = { affix = "", "Reflects (22-44) Physical Damage to Attackers on Block", statOrder = { 2257 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHash = 1445684883, }, + ["GainLifeOnBlockUniqueAmulet16"] = { affix = "", "(34-48) Life gained when you Block", statOrder = { 1445 }, level = 1, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 762600725, }, + ["GainManaOnBlockUniqueAmulet16"] = { affix = "", "(18-24) Mana gained when you Block", statOrder = { 1446 }, level = 57, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHash = 2122183138, }, + ["GainManaOnBlockUnique__1"] = { affix = "", "(30-50) Mana gained when you Block", statOrder = { 1446 }, level = 1, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHash = 2122183138, }, + ["ZombieLifeUniqueSceptre3"] = { affix = "", "Raised Zombies have +5000 to maximum Life", statOrder = { 2260 }, level = 1, group = "ZombieLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 4116579804, }, + ["ZombieDamageUniqueSceptre3"] = { affix = "", "Raised Zombies deal (100-125)% more Physical Damage", statOrder = { 10005 }, level = 1, group = "ZombieDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHash = 568070507, }, + ["ZombieChaosElementalResistsUniqueSceptre3"] = { affix = "", "Raised Zombies have +(25-30)% to all Resistances", statOrder = { 2261 }, level = 1, group = "ZombieChaosElementalResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance", "minion" }, tradeHash = 3150000576, }, + ["ZombieSizeUniqueSceptre3_"] = { affix = "", "25% increased Raised Zombie Size", statOrder = { 2341 }, level = 1, group = "ZombieSize", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3563667308, }, + ["ZombiesExplodeEnemiesOnHitUniqueSceptre3"] = { affix = "", "Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage", statOrder = { 2343 }, level = 1, group = "ZombiesExplodeEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHash = 2857427872, }, + ["NumberOfZombiesSummonedPercentageUniqueSceptre3"] = { affix = "", "50% reduced maximum number of Raised Zombies", statOrder = { 2259 }, level = 1, group = "NumberOfZombiesSummonedPercentage", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 4041805509, }, + ["IncreasedIntelligencePerUniqueUniqueRing14"] = { affix = "", "2% increased Intelligence for each Unique Item Equipped", statOrder = { 2263 }, level = 1, group = "IncreasedIntelligencePerUnique", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4207939995, }, + ["IncreasedChanceForMonstersToDropWisdomScrollsUniqueRing14"] = { affix = "", "3% chance for Slain monsters to drop an additional Scroll of Wisdom", statOrder = { 2265 }, level = 1, group = "IncreasedChanceForMonstersToDropWisdomScrolls", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2920230984, }, + ["ConvertColdToFireUniqueRing15"] = { affix = "", "40% of Cold Damage Converted to Fire Damage", statOrder = { 1641 }, level = 1, group = "ConvertColdToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, tradeHash = 268659529, }, + ["IgnitedEnemiesTurnToAshUniqueRing15"] = { affix = "", "Ignited enemies killed by your Hits are destroyed", statOrder = { 2264 }, level = 1, group = "IgnitedEnemiesTurnToAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3173052379, }, + ["UndyingRageOnCritUniqueTwoHandMace6"] = { affix = "", "You gain Onslaught for 4 seconds on Critical Hit", statOrder = { 2340 }, level = 1, group = "UndyingRageOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1055188639, }, + ["NoBonusesFromCriticalStrikes"] = { affix = "", "Your Critical Hits do not deal extra Damage", statOrder = { 1340 }, level = 1, group = "NoBonusesFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 4058681894, }, + ["FlaskItemRarityUniqueFlask1"] = { affix = "", "(20-30)% increased Rarity of Items found during Effect", statOrder = { 777 }, level = 1, group = "FlaskItemRarity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1740200922, }, + ["FlaskItemQuantityUniqueFlask1"] = { affix = "", "(8-12)% increased Quantity of Items found during Effect", statOrder = { 776 }, level = 1, group = "FlaskItemQuantity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3736953565, }, + ["FlaskLightRadiusUniqueFlask1"] = { affix = "", "25% increased Light Radius during Effect", statOrder = { 779 }, level = 1, group = "FlaskLightRadius", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2745936267, }, + ["FlaskMaximumElementalResistancesUniqueFlask1"] = { affix = "", "+4% to all maximum Elemental Resistances during Effect", statOrder = { 766 }, level = 1, group = "FlaskMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "resistance" }, tradeHash = 4026156644, }, + ["FlaskElementalResistancesUniqueFlask1_"] = { affix = "", "+50% to Elemental Resistances during Effect", statOrder = { 782 }, level = 1, group = "FlaskElementalResistances", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "resistance" }, tradeHash = 3110554274, }, + ["SpellDamageModifiersApplyToAttackDamageUniqueHelmetInt7"] = { affix = "", "Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value", statOrder = { 2349 }, level = 1, group = "SpellDamageModifiersApplyToAttackDamage150Percent", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 185598681, }, + ["ConvertFireToChaosUniqueBodyInt4Updated"] = { affix = "", "15% of Fire Damage Converted to Chaos Damage", statOrder = { 1644 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHash = 147385515, }, + ["ConvertFireToChaosUniqueDagger10Updated"] = { affix = "", "30% of Fire Damage Converted to Chaos Damage", statOrder = { 1644 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHash = 147385515, }, + ["MovementVelicityPerEvasionUniqueBodyDex6"] = { affix = "", "1% increased Movement Speed per 600 Evasion Rating, up to 75%", statOrder = { 2337 }, level = 1, group = "MovementVelicityPerEvasion", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2591020064, }, + ["PhysicalDamageCanChillUniqueOneHandAxe1"] = { affix = "", "Physical Damage from Hits also Contributes to Chill Magnitude", statOrder = { 2530 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2227042420, }, + ["PhysicalDamageCanChillUniqueDescentOneHandAxe1"] = { affix = "", "Physical Damage from Hits also Contributes to Chill Magnitude", statOrder = { 2530 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2227042420, }, + ["ItemQuantityWhenFrozenUniqueBow9"] = { affix = "", "15% increased Quantity of Items Dropped by Slain Frozen Enemies", statOrder = { 2357 }, level = 1, group = "ItemQuantityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3304763863, }, + ["ItemRarityWhenShockedUniqueBow9"] = { affix = "", "30% increased Rarity of Items Dropped by Slain Shocked Enemies", statOrder = { 2359 }, level = 1, group = "ItemRarityWhenShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3188291252, }, + ["LocalChaosDamageUniqueOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, + ["LocalChaosDamageUniqueTwoHandSword7"] = { affix = "", "Adds (60-68) to (90-102) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, + ["LocalAddedChaosDamageUnique___1"] = { affix = "", "Adds 1 to 59 Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, + ["LocalAddedChaosDamageUnique__2"] = { affix = "", "Adds (53-67) to (71-89) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, + ["LocalAddedChaosDamageUnique__3"] = { affix = "", "Adds (600-650) to (750-800) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, + ["ChaosDegenerationAuraPlayersUniqueBodyStr3"] = { affix = "", "450 Chaos Damage taken per second", statOrder = { 1620 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2456773909, }, + ["ChaosDegenerationAuraNonPlayersUniqueBodyStr3"] = { affix = "", "250 Chaos Damage taken per second", statOrder = { 1620 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2456773909, }, + ["ChaosDegenerationAuraNonPlayersUnique__1"] = { affix = "", "50 Chaos Damage taken per second", statOrder = { 1620 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2456773909, }, + ["ChaosDegenerationAuraPlayersUnique__1"] = { affix = "", "50 Chaos Damage taken per second", statOrder = { 1620 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2456773909, }, + ["UniqueWingsOfEntropyCountsAsDualWielding"] = { affix = "", "Counts as Dual Wielding", statOrder = { 2361 }, level = 1, group = "CountsAsDualWielding", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2797075304, }, + ["ChaosDegenerationOnKillUniqueBodyStr3"] = { affix = "", "You take 450 Chaos Damage per second for 3 seconds on Kill", statOrder = { 2356 }, level = 1, group = "ChaosDegenerationOnKill", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2785780853, }, + ["ItemBloodFootstepsUniqueBodyStr3"] = { affix = "", "Gore Footprints", statOrder = { 10099 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHash = 4237211014, }, + ["DisplayChaosDegenerationAuraUniqueBodyStr3"] = { affix = "", "Deals 450 Chaos Damage per second to nearby Enemies", statOrder = { 2355 }, level = 1, group = "DisplayChaosDegenerationAura", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2280313599, }, + ["DisplayChaosDegenerationAuraUnique__1"] = { affix = "", "Deals 50 Chaos Damage per second to nearby Enemies", statOrder = { 2355 }, level = 1, group = "DisplayChaosDegenerationAura", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2280313599, }, + ["ItemBloodFootstepsUniqueBootsDex4"] = { affix = "", "Gore Footprints", statOrder = { 10099 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHash = 4237211014, }, + ["ItemSilverFootstepsUniqueHelmetStrDex2"] = { affix = "", "Mercury Footprints", statOrder = { 10104 }, level = 1, group = "ItemSilverFootsteps", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3970396418, }, + ["ItemBloodFootstepsUnique__1"] = { affix = "", "Gore Footprints", statOrder = { 10099 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHash = 4237211014, }, + ["MaximumBlockChanceUniqueAmulet16"] = { affix = "", "+3% to maximum Block chance", statOrder = { 1659 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 480796730, }, + ["MaximumBlockChanceUnique__1"] = { affix = "", "-10% to maximum Block chance", statOrder = { 1659 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 480796730, }, + ["FasterBurnFromAttacksUniqueOneHandSword4"] = { affix = "", "Ignites you inflict deal Damage 50% faster", statOrder = { 2236 }, level = 1, group = "FasterBurnFromAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHash = 2443492284, }, + ["CannotLeechMana"] = { affix = "", "Cannot Leech Mana", statOrder = { 2240 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1759630226, }, + ["CannotLeechManaUnique__1_"] = { affix = "", "Cannot Leech Mana", statOrder = { 2240 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1759630226, }, + ["CannotLeechOnLowLife"] = { affix = "", "Cannot Leech when on Low Life", statOrder = { 2242 }, level = 1, group = "CannotLeechOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3279535558, }, + ["MeleeDamageIncreaseUniqueHelmetStrDex3"] = { affix = "", "20% increased Melee Damage", statOrder = { 1124 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1002362373, }, + ["MeleeDamageUniqueAmulet12"] = { affix = "", "(30-40)% increased Melee Damage", statOrder = { 1124 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1002362373, }, + ["MeleeDamageImplicitGloves1"] = { affix = "", "(16-20)% increased Melee Damage", statOrder = { 1124 }, level = 78, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1002362373, }, + ["MeleeDamageUnique__1"] = { affix = "", "(20-25)% increased Melee Damage", statOrder = { 1124 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1002362373, }, + ["MeleeDamageUnique__2"] = { affix = "", "(25-40)% increased Melee Damage", statOrder = { 1124 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1002362373, }, + ["DamageAuraUniqueHelmetDexInt2"] = { affix = "", "50% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, }, + ["IronReflexes"] = { affix = "", "Iron Reflexes", statOrder = { 10059 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 326965591, }, + ["DisplayDamageAuraUniqueHelmetDexInt2"] = { affix = "", "You and nearby allies gain 50% increased Damage", statOrder = { 2363 }, level = 1, group = "DisplayDamageAura", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 637766438, }, + ["MainHandAddedFireDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (75-100) to (165-200) Fire Damage in Main Hand", statOrder = { 1208 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 169657426, }, + ["MainHandAddedFireDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Fire Damage in Main Hand", statOrder = { 1208 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 169657426, }, + ["OffHandAddedChaosDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (75-100) to (165-200) Chaos Damage in Off Hand", statOrder = { 1228 }, level = 1, group = "OffHandAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 3758293500, }, + ["OffHandAddedColdDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Cold Damage in Off Hand", statOrder = { 1214 }, level = 1, group = "OffHandAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2109066258, }, + ["ChaosDamageCanShockUniqueBow10"] = { affix = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2521 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHash = 2418601510, }, + ["ChaosDamageCanShockUnique__1"] = { affix = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2521 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHash = 2418601510, }, + ["ConvertLightningDamageToChaosUniqueBow10"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1640 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHash = 2109189637, }, + ["ConvertLightningDamageToChaosUniqueBow10Updated"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1640 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHash = 2109189637, }, + ["MaximumShockOverrideUniqueBow10"] = { affix = "", "+40% to Maximum Effect of Shock", statOrder = { 9812 }, level = 1, group = "MaximumShockOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 4007740198, }, + ["AttacksShockAsIfDealingMoreDamageUniqueBow10"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 7266 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHash = 1386792919, }, + ["AttacksShockAsIfDealingMoreDamageUnique__2"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 7266 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHash = 1386792919, }, + ["EnemiesExplodeOnDeathUniqueTwoHandMace7"] = { affix = "", "Enemies Killed with Attack or Spell Hits Explode, dealing 10% of their Life as Fire Damage", statOrder = { 2367 }, level = 1, group = "EnemiesExplodeOnDeath", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3457687358, }, + ["DisplaySocketedGemGetsReducedManaCostUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Inspiration", statOrder = { 349 }, level = 1, group = "DisplaySocketedGemGetsReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1866911844, }, + ["DisplaySocketedGemsGetFasterCastUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 354 }, level = 1, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2169938251, }, + ["SupportedByFasterCastUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Faster Casting", statOrder = { 354 }, level = 1, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2169938251, }, + ["FlaskRemovePercentageOfEnergyShieldUniqueFlask2"] = { affix = "", "Removes 80% of your maximum Energy Shield on use", statOrder = { 633 }, level = 1, group = "FlaskRemovePercentageOfEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "flask", "defences" }, tradeHash = 2917449574, }, + ["FlaskTakeChaosDamagePercentageOfLifeUniqueFlask2"] = { affix = "", "You take 50% of your maximum Life as Chaos Damage on use", statOrder = { 634 }, level = 1, group = "FlaskTakeChaosDamagePercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, tradeHash = 2301696196, }, + ["FlaskGainFrenzyChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Frenzy Charge on use", statOrder = { 646 }, level = 1, group = "FlaskGainFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask", "frenzy_charge" }, tradeHash = 3230795453, }, + ["FlaskGainPowerChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Power Charge on use", statOrder = { 647 }, level = 1, group = "FlaskGainPowerCharge", weightKey = { }, weightVal = { }, modTags = { "flask", "power_charge" }, tradeHash = 2697049014, }, + ["FlaskGainEnduranceChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Endurance Charge on use", statOrder = { 645 }, level = 1, group = "FlaskGainEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "flask" }, tradeHash = 3986030307, }, + ["FlaskGainEnduranceChargeUnique__1_"] = { affix = "", "Gain 1 Endurance Charge on use", statOrder = { 645 }, level = 1, group = "FlaskGainEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "flask" }, tradeHash = 3986030307, }, + ["CanOnlyDealDamageWithThisWeapon"] = { affix = "", "You can only deal Damage with this Weapon or Ignite", statOrder = { 2374 }, level = 1, group = "CanOnlyDealDamageWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3128318472, }, + ["LocalFlaskChargesUsedUniqueFlask2"] = { affix = "", "(250-300)% increased Charges per use", statOrder = { 1006 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3139816101, }, + ["LocalFlaskChargesUsedUniqueFlask9"] = { affix = "", "(70-100)% increased Charges per use", statOrder = { 1006 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3139816101, }, + ["LocalFlaskChargesUsedUnique__2"] = { affix = "", "(10-20)% reduced Charges per use", statOrder = { 1006 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3139816101, }, + ["LeftRingSlotElementalReflectDamageTakenUniqueRing10"] = { affix = "", "Left ring slot: You and your Minions take 80% reduced Reflected Elemental Damage", statOrder = { 2372 }, level = 57, group = "LeftRingSlotElementalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 2422197812, }, + ["RightRingSlotPhysicalReflectDamageTakenUniqueRing10"] = { affix = "", "Right ring slot: You and your Minions take 80% reduced Reflected Physical Damage", statOrder = { 2373 }, level = 1, group = "RightRingSlotPhysicalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 1357244124, }, + ["IncreasedEnemyFireResistanceUniqueHelmetInt5"] = { affix = "", "Damage Penetrates 25% Fire Resistance", statOrder = { 2613 }, level = 1, group = "EnemyFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, }, + ["UsingFlasksDispelsBurningUniqueHelmetInt5"] = { affix = "", "Removes Burning when you use a Flask", statOrder = { 2411 }, level = 1, group = "UsingFlasksDispelsBurning", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, tradeHash = 1305605911, }, + ["DamageRemovedFromManaBeforeLifeTestMod"] = { affix = "", "30% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 458438597, }, + ["ChanceToShockUniqueBow10"] = { affix = "", "10% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, }, + ["ChanceToShockUniqueOneHandSword7"] = { affix = "", "(15-20)% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, }, + ["ChanceToShockUniqueDescentTwoHandSword1"] = { affix = "", "9% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, }, + ["ChanceToShockUniqueStaff8"] = { affix = "", "15% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, }, + ["ChanceToShockUniqueRing29"] = { affix = "", "25% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, }, + ["ChanceToShockUniqueGlovesStr4"] = { affix = "", "30% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, }, + ["ChanceToShockUnique__1"] = { affix = "", "10% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, }, + ["ChanceToShockUnique__2_"] = { affix = "", "50% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, }, + ["ChanceToShockUnique__3"] = { affix = "", "(5-10)% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, }, + ["ChanceToShockUnique__4_"] = { affix = "", "(10-15)% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, }, + ["FishingLineStrengthUnique__1"] = { affix = "", "100% increased Fishing Line Strength", statOrder = { 2498 }, level = 1, group = "FishingLineStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1842038569, }, + ["FishingPoolConsumptionUnique__1__"] = { affix = "", "50% increased Fishing Pool Consumption", statOrder = { 2499 }, level = 1, group = "FishingPoolConsumption", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1550221644, }, + ["FishingLureTypeUniqueFishingRod1"] = { affix = "", "Siren Worm Bait", statOrder = { 2500 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3360430812, }, + ["FishingLureTypeUnique__1__"] = { affix = "", "Thaumaturgical Lure", statOrder = { 2500 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3360430812, }, + ["FishingCastDistanceUnique__1__"] = { affix = "", "20% increased Fishing Range", statOrder = { 2502 }, level = 1, group = "FishingCastDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 170497091, }, + ["FishingQuantityUniqueFishingRod1"] = { affix = "", "(40-50)% reduced Quantity of Fish Caught", statOrder = { 2503 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3802667447, }, + ["FishingQuantityUnique__2"] = { affix = "", "20% increased Quantity of Fish Caught", statOrder = { 2503 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3802667447, }, + ["FishingQuantityUnique__1"] = { affix = "", "(10-20)% increased Quantity of Fish Caught", statOrder = { 2503 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3802667447, }, + ["FishingRarityUniqueFishingRod1"] = { affix = "", "(50-60)% increased Rarity of Fish Caught", statOrder = { 2504 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3310914132, }, + ["FishingRarityUnique__1"] = { affix = "", "40% increased Rarity of Fish Caught", statOrder = { 2504 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3310914132, }, + ["FishingRarityUnique__2_"] = { affix = "", "(20-30)% increased Rarity of Fish Caught", statOrder = { 2504 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3310914132, }, + ["IncreasedSpellDamagePerBlockChanceUniqueClaw7"] = { affix = "", "8% increased Spell Damage per 5% Chance to Block Attack Damage", statOrder = { 2394 }, level = 1, group = "SpellDamagePerBlockChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2449668043, }, + ["LifeGainedOnSpellHitUniqueClaw7"] = { affix = "", "Gain (15-20) Life per Enemy Hit with Spells", statOrder = { 1429 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 2018035324, }, + ["LifeGainedOnSpellHitUniqueDescentClaw1"] = { affix = "", "Gain 3 Life per Enemy Hit with Spells", statOrder = { 1429 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 2018035324, }, + ["LifeGainedOnSpellHitUnique__1"] = { affix = "", "Gain 4 Life per Enemy Hit with Spells", statOrder = { 1429 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 2018035324, }, + ["LoseLifeOnSpellHitUnique__1"] = { affix = "", "Lose (10-15) Life per Enemy Hit with Spells", statOrder = { 1429 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 2018035324, }, + ["AttackSpeedPerGreenSocketUniqueOneHandSword5"] = { affix = "", "12% increased Global Attack Speed per Green Socket", statOrder = { 2382 }, level = 1, group = "AttackSpeedPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 250876318, }, + ["PhysicalDamgePerRedSocketUniqueOneHandSword5"] = { affix = "", "25% increased Global Physical Damage with Weapons per Red Socket", statOrder = { 2380 }, level = 1, group = "PhysicalDamgePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2112615899, }, + ["ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUniqueOneHandSword5"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2385 }, level = 1, group = "ManaLeechPermyriadFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 172852114, }, + ["ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUnique"] = { affix = "", "0.3% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2385 }, level = 1, group = "ManaLeechPermyriadFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 172852114, }, + ["MeleeRangePerWhiteSocketUniqueOneHandSword5"] = { affix = "", "+2 to Melee Strike Range per White Socket", statOrder = { 2389 }, level = 1, group = "MeleeRangePerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2076080860, }, + ["MeleeDamageTakenUniqueAmulet12"] = { affix = "", "60% increased Damage taken from Melee Attacks", statOrder = { 2404 }, level = 1, group = "MeleeDamageTaken", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2626398389, }, + ["ArmourAsLifeRegnerationOnBlockUniqueShieldStrInt6"] = { affix = "", "Regenerate 2% of your Armour as Life over 1 second when you Block", statOrder = { 2485 }, level = 1, group = "ArmourAsLifeRegnerationOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 3002650433, }, + ["LoseEnergyShieldOnBlockUniqueShieldStrInt6"] = { affix = "", "Lose 10% of your maximum Energy Shield when you Block", statOrder = { 2396 }, level = 1, group = "LoseEnergyShieldOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "energy_shield", "defences" }, tradeHash = 4059516437, }, + ["ChaosDamageAsPortionOfDamageUniqueRing16"] = { affix = "", "Gain (40-60)% of Physical Damage as extra Chaos Damage", statOrder = { 1607 }, level = 87, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 459352300, }, + ["ChaosDamageAsPortionOfDamageUnique__1"] = { affix = "", "Gain (30-40)% of Physical Damage as extra Chaos Damage", statOrder = { 1607 }, level = 1, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 459352300, }, + ["ChaosDamageAsPortionOfFireDamageUnique__1"] = { affix = "", "Gain (6-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1613 }, level = 1, group = "ChaosDamageAsPortionOfFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHash = 2105236138, }, + ["ChaosDamageAsPortionOfColdDamageUnique__1"] = { affix = "", "Gain (6-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1612 }, level = 1, group = "ChaosDamageAsPortionOfColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHash = 1036710490, }, + ["ChaosDamageAsPortionOfLightningDamageUnique__1"] = { affix = "", "Gain (6-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1610 }, level = 1, group = "ChaosDamageAsPortionOfLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHash = 502598927, }, + ["PhysicalDamageTakenAsLightningPercentUniqueBodyStrDex2"] = { affix = "", "50% of Physical damage from Hits taken as Lightning damage", statOrder = { 2121 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHash = 425242359, }, + ["OffHandChillDurationUniqueOneHandAxe2"] = { affix = "", "100% increased Chill Duration on Enemies when in Off Hand", statOrder = { 2423 }, level = 1, group = "OffHandChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 4199402748, }, + ["TrapThrowSpeedUniqueBootsDex6"] = { affix = "", "(14-18)% increased Trap Throwing Speed", statOrder = { 1597 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 118398748, }, + ["TrapThrowSpeedUnique__1_"] = { affix = "", "(20-30)% reduced Trap Throwing Speed", statOrder = { 1597 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 118398748, }, + ["MovementSpeedOnTrapThrowUniqueBootsDex6"] = { affix = "", "30% increased Movement Speed for 9 seconds on Throwing a Trap", statOrder = { 2427 }, level = 1, group = "MovementSpeedOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1620219216, }, + ["MovementSpeedOnTrapThrowUnique__1"] = { affix = "", "15% increased Movement Speed for 9 seconds on Throwing a Trap", statOrder = { 2427 }, level = 1, group = "MovementSpeedOnTrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3102860761, }, + ["DisplaySupportedByTrapUniqueBootsDex6"] = { affix = "", "Socketed Gems are Supported by Level 15 Trap", statOrder = { 319 }, level = 1, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1122134690, }, + ["DisplaySupportedByTrapUniqueStaff4"] = { affix = "", "Socketed Gems are Supported by Level 8 Trap", statOrder = { 319 }, level = 1, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1122134690, }, + ["DisplaySupportedByTrapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Trap", statOrder = { 319 }, level = 40, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1122134690, }, + ["TrapDurationUniqueBelt6"] = { affix = "", "(50-75)% reduced Trap Duration", statOrder = { 1592 }, level = 47, group = "TrapDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2001530951, }, + ["TrapDurationUnique__1"] = { affix = "", "10% reduced Trap Duration", statOrder = { 1592 }, level = 1, group = "TrapDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2001530951, }, + ["TrapDamageUniqueBelt6"] = { affix = "", "(30-40)% increased Trap Damage", statOrder = { 854 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2941585404, }, + ["TrapDamageUniqueShieldDexInt1"] = { affix = "", "(18-28)% increased Trap Damage", statOrder = { 854 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2941585404, }, + ["TrapDamageUnique___1"] = { affix = "", "(15-25)% increased Trap Damage", statOrder = { 854 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2941585404, }, + ["RegenerateLifeOnCastUniqueWand4"] = { affix = "", "Regenerate (6-8) Life over 1 second when you Cast a Spell", statOrder = { 2484 }, level = 1, group = "RegenerateLifeOnCast", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1955882986, }, + ["PhasingUniqueBootsStrDex4"] = { affix = "", "Phasing", statOrder = { 2474 }, level = 1, group = "Phasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 963290143, }, + ["CullingCriticalStrikes"] = { affix = "", "Critical Strikes have Culling Strike", statOrder = { 3028 }, level = 1, group = "CullingCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 2996445420, }, + ["IncreasedFireDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Fire Damage taken", statOrder = { 1892 }, level = 1, group = "FireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHash = 3743301799, }, + ["ReducedFireDamageTakenUnique__1"] = { affix = "", "-(200-100) Fire Damage taken from Hits", statOrder = { 1887 }, level = 1, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHash = 614758785, }, + ["FrenzyChargeOnIgniteUniqueTwoHandSword6"] = { affix = "", "Gain a Frenzy Charge if an Attack Ignites an Enemy", statOrder = { 2491 }, level = 1, group = "FrenzyChargeOnIgnite", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 3598983877, }, + ["CullingAgainstBurningEnemiesUniqueTwoHandSword6"] = { affix = "", "Culling Strike against Burning Enemies", statOrder = { 2490 }, level = 1, group = "CullingAgainstBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1777334641, }, + ["ChaosDamageTakenUniqueBodyStr4"] = { affix = "", "-(40-30) Chaos Damage taken", statOrder = { 2493 }, level = 1, group = "ChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 496011033, }, + ["IncreasedCurseDurationUniqueShieldDex4"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 5539 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1435748744, }, + ["IncreasedCurseDurationUniqueShieldStrDex2"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 5539 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1435748744, }, + ["IncreasedCurseDurationUniqueHelmetInt9"] = { affix = "", "Curse Skills have (30-50)% increased Skill Effect Duration", statOrder = { 5539 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1435748744, }, + ["IncreaseSocketedCurseGemLevelUniqueShieldDex4"] = { affix = "", "+3 to Level of Socketed Curse Gems", statOrder = { 135 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 3691695237, }, + ["IncreaseSocketedCurseGemLevelUniqueHelmetInt9"] = { affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 135 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 3691695237, }, + ["IncreaseSocketedCurseGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 135 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 3691695237, }, + ["IncreaseSocketedCurseGemLevelUnique__2"] = { affix = "", "+3 to Level of Socketed Curse Gems", statOrder = { 135 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 3691695237, }, + ["IncreasedSelfCurseDurationUniqueShieldStrDex2"] = { affix = "", "100% increased Duration of Curses on you", statOrder = { 1836 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2920970371, }, + ["ReducedSelfCurseDurationUniqueShieldDex3"] = { affix = "", "50% reduced Duration of Curses on you", statOrder = { 1836 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2920970371, }, + ["ChaosResistanceWhileUsingFlaskUniqueBootsStrDex3"] = { affix = "", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 2902 }, level = 1, group = "ChaosResistanceWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos", "resistance" }, tradeHash = 392168009, }, + ["SetElementalResistancesUniqueHelmetStrInt4"] = { affix = "", "You have no Elemental Resistances", statOrder = { 2489 }, level = 1, group = "SetElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1776968075, }, + ["IncreasedAccuracyPercentImplicitQuiver7"] = { affix = "", "(20-30)% increased Accuracy Rating", statOrder = { 1268 }, level = 5, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 624954515, }, + ["IncreasedAccuracyPercentImplicitQuiver7New"] = { affix = "", "(20-30)% increased Accuracy Rating", statOrder = { 1268 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 624954515, }, + ["IncreasedAccuracyPercentUnique__1"] = { affix = "", "(30-40)% increased Accuracy Rating", statOrder = { 1268 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 624954515, }, + ["DisplaySocketedSkillsChainUniqueOneHandMace3"] = { affix = "", "Socketed Gems Chain 1 additional times", statOrder = { 387 }, level = 1, group = "DisplaySocketedSkillsChain", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 2788729902, }, + ["LocalIncreaseSocketedVaalGemLevelUniqueGlovesStrDex4"] = { affix = "", "+5 to Level of Socketed Vaal Gems", statOrder = { 139 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "vaal", "gem" }, tradeHash = 1170386874, }, + ["LocalIncreaseSocketedNonVaalGemLevelUnique__1"] = { affix = "", "-5 to Level of Socketed Non-Vaal Gems", statOrder = { 142 }, level = 1, group = "LocalIncreaseSocketedNonVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 2574694107, }, + ["LocalIncreaseSocketedVaalGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Vaal Gems", statOrder = { 139 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "vaal", "gem" }, tradeHash = 1170386874, }, + ["CriticalStrikesLeechInstantlyUniqueGlovesStr3"] = { affix = "", "Leech from Critical Hits is instant", statOrder = { 2208 }, level = 94, group = "CriticalStrikesLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3389184522, }, + ["LocalArmourAndEvasionAndEnergyShieldUniqueBodyStrDexInt1i"] = { affix = "", "(270-340)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 94, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHash = 3523867985, }, + ["ArrowPierceAppliesToProjectileDamageUniqueQuiver3"] = { affix = "", "Arrows deal 50% increased Damage with Hits to Targets they Pierce", statOrder = { 4309 }, level = 45, group = "ArrowPierceAppliesToProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3647471922, }, + ["ArrowDamageAgainstPiercedTargetsUnique__1"] = { affix = "", "Arrows deal 50% increased Damage with Hits to Targets they Pierce", statOrder = { 4308 }, level = 45, group = "ArrowDamageAgainstPiercedTargets", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1019891080, }, + ["OnslaughtOnVaalSkillUseUniqueGlovesStrDex4"] = { affix = "", "You gain Onslaught for 20 seconds on using a Vaal Skill", statOrder = { 2560 }, level = 1, group = "OnslaughtOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHash = 2654043939, }, + ["LocalIncreaseSocketedSupportGemLevelUniqueTwoHandAxe7"] = { affix = "", "+2 to Level of Socketed Support Gems", statOrder = { 140 }, level = 94, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4154259475, }, + ["LocalIncreaseSocketedSupportGemLevelUniqueStaff12"] = { affix = "", "+1 to Level of Socketed Support Gems", statOrder = { 140 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4154259475, }, + ["LocalIncreaseSocketedSupportGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Support Gems", statOrder = { 140 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4154259475, }, + ["AdditionalChainUniqueOneHandMace3"] = { affix = "", "Skills Chain +1 times", statOrder = { 1474 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1787073323, }, + ["AdditionalChainUnique__1"] = { affix = "", "Skills Chain +2 times", statOrder = { 1474 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1787073323, }, + ["AdditionalChainUnique__2"] = { affix = "", "Skills Chain +1 times", statOrder = { 1474 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1787073323, }, + ["CurseTransferOnKillUniqueQuiver5"] = { affix = "", "Hexes Transfer to all Enemies in a range of 30 when Hexed Enemy dies", statOrder = { 2572 }, level = 5, group = "CurseTransferOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 986616727, }, + ["AdditionalMeleeDamageToBurningEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Ignited Enemies", statOrder = { 1129 }, level = 1, group = "AdditionalMeleeDamageToBurningEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 17354819, }, + ["AdditionalMeleeDamageToShockedEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Shocked Enemies", statOrder = { 1127 }, level = 1, group = "AdditionalMeleeDamageToShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1138694108, }, + ["AdditionalMeleeDamageToFrozenEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Frozen Enemies", statOrder = { 1125 }, level = 1, group = "AdditionalMeleeDamageToFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 298331790, }, + ["ProjectileShockChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Shock", statOrder = { 2366 }, level = 1, group = "ProjectileShockChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2803352419, }, + ["ProjectileFreezeChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Freeze", statOrder = { 2365 }, level = 1, group = "ProjectileFreezeChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3733737728, }, + ["SupportedByLifeLeechUniqueBodyStrInt5"] = { affix = "", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 343 }, level = 1, group = "SupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 891277550, }, + ["SupportedByLifeLeechUnique__1"] = { affix = "", "Socketed Gems are supported by Level 10 Life Leech", statOrder = { 343 }, level = 1, group = "SupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 891277550, }, + ["SupportedByChanceToBleedUnique__1"] = { affix = "", "Socketed Gems are supported by Level 1 Chance to Bleed", statOrder = { 344 }, level = 1, group = "SupportedByChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2178803872, }, + ["ElementalDamageTakenAsChaosUniqueBodyStrInt5"] = { affix = "", "25% of Elemental damage from Hits taken as Chaos damage", statOrder = { 2126 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, tradeHash = 1175213674, }, + ["ArcaneVisionUniqueBodyStrInt5"] = { affix = "", "Light Radius is based on Energy Shield instead of Life", statOrder = { 2397 }, level = 1, group = "ArcaneVision", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3836017971, }, + ["PhysicalDamageFromBeastsUniqueBodyDex6"] = { affix = "", "-(50-40) Physical Damage taken from Hits by Animals", statOrder = { 2566 }, level = 1, group = "PhysicalDamageFromBeasts", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3277537093, }, + ["WeaponLightningDamageUniqueOneHandMace3"] = { affix = "", "(80-100)% increased Lightning Damage", statOrder = { 857 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, }, + ["DamageTakenPerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "1% increased Damage taken per Frenzy Charge", statOrder = { 2568 }, level = 1, group = "IncreaseDamageTakenPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1625103793, }, + ["IncreaseLightningDamagePerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "(15-20)% increased Lightning Damage per Frenzy Charge", statOrder = { 2569 }, level = 1, group = "IncreaseLightningDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3693130674, }, + ["LifeGainedOnEnemyDeathPerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "20 Life gained on Kill per Frenzy Charge", statOrder = { 2570 }, level = 1, group = "LifeGainedOnEnemyDeathPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1269609669, }, + ["CannotBeKnockedBack"] = { affix = "", "Cannot be Knocked Back", statOrder = { 1345 }, level = 1, group = "CannotBeKnockedBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4212255859, }, + ["UnwaveringStance"] = { affix = "", "Unwavering Stance", statOrder = { 10072 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 1683578560, }, + ["ReducedEnergyShieldRegenerationRateUniqueQuiver7"] = { affix = "", "40% reduced Energy Shield Recharge Rate", statOrder = { 966 }, level = 81, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, }, + ["LocalFlaskInstantRecoverPercentOfLifeUniqueFlask6"] = { affix = "", "Recover (75-100)% of maximum Life on use", statOrder = { 635 }, level = 1, group = "LocalFlaskInstantRecoverPercentOfLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 2629106530, }, + ["LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealingUniqueFlask6"] = { affix = "", "25% of Maximum Life taken as Chaos Damage per second", statOrder = { 636 }, level = 1, group = "LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealing", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, tradeHash = 3232201443, }, + ["PowerChargeOnKnockbackUniqueStaff7"] = { affix = "", "10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage", statOrder = { 2574 }, level = 1, group = "PowerChargeOnKnockback", weightKey = { }, weightVal = { }, modTags = { "power_charge", "attack" }, tradeHash = 2179619644, }, + ["GrantsBearTrapUniqueShieldDexInt1"] = { affix = "", "Grants Level 25 Bear Trap Skill", statOrder = { 449 }, level = 1, group = "BearTrapSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3541114083, }, + ["PowerChargeOnTrapThrowChanceUniqueShieldDexInt1"] = { affix = "", "25% chance to gain a Power Charge when you Throw a Trap", statOrder = { 2575 }, level = 1, group = "PowerChargeOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 1936544447, }, + ["CritChancePercentPerStrengthUniqueOneHandSword8_"] = { affix = "", "1% increased Critical Hit Chance per 8 Strength", statOrder = { 2576 }, level = 1, group = "CritChancePercentPerStrength", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3068290007, }, + ["IncreasedAttackSpeedWhileIgnitedUniqueRing24"] = { affix = "", "(25-40)% increased Attack Speed while Ignited", statOrder = { 2577 }, level = 1, group = "AttackSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2047819517, }, + ["IncreasedAttackSpeedWhileIgnitedUniqueJewel20"] = { affix = "", "(10-20)% increased Attack Speed while Ignited", statOrder = { 2577 }, level = 1, group = "AttackSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2047819517, }, + ["IncreasedCastSpeedWhileIgnitedUniqueRing24"] = { affix = "", "(25-40)% increased Cast Speed while Ignited", statOrder = { 2578 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 3660039923, }, + ["IncreasedCastSpeedWhileIgnitedUniqueJewel20_"] = { affix = "", "(10-20)% increased Cast Speed while Ignited", statOrder = { 2578 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 3660039923, }, + ["IncreasedChanceToBeIgnitedUniqueRing24"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2583 }, level = 1, group = "IncreasedChanceToBeIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1618339429, }, + ["IncreasedChanceToBeIgnitedUnique__1"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2583 }, level = 1, group = "IncreasedChanceToBeIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1618339429, }, + ["CausesPoisonOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Poison on Critical Hit", statOrder = { 7333 }, level = 1, group = "LocalCausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHash = 374737750, }, + ["CausesPoisonOnCritUnique__1"] = { affix = "", "Melee Critical Hits Poison the Enemy", statOrder = { 2428 }, level = 1, group = "CausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHash = 2635385320, }, + ["BlockIncreasedDuringFlaskEffectUniqueFlask7"] = { affix = "", "+(8-12)% Chance to Block Attack Damage during Effect", statOrder = { 767 }, level = 85, group = "BlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHash = 2519106214, }, + ["BlockIncreasedDuringFlaskEffectUnique__1"] = { affix = "", "+(35-50)% Chance to Block Attack Damage during Effect", statOrder = { 767 }, level = 85, group = "BlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHash = 2519106214, }, + ["EvasionRatingIncreasesWeaponDamageUniqueOneHandSword9"] = { affix = "", "1% increased Attack Damage per 450 Evasion Rating", statOrder = { 2581 }, level = 1, group = "EvasionRatingIncreasesWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 93696421, }, + ["IncreasedDamageToIgnitedTargetsUniqueBootsStrInt3"] = { affix = "", "(25-40)% increased Damage with Hits against Ignited Enemies", statOrder = { 6742 }, level = 1, group = "IncreasedDamageToIgnitedTargets", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3585754616, }, + ["MovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8"] = { affix = "", "20% increased Movement Speed while on Full Energy Shield", statOrder = { 2603 }, level = 1, group = "MovementSpeedWhileOnFullEnergyShield", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2825197711, }, + ["ChanceForEnemyToFleeOnBlockUniqueShieldDex4"] = { affix = "", "100% Chance to Cause Monster to Flee on Block", statOrder = { 2594 }, level = 1, group = "ChanceForEnemyToFleeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3212461220, }, + ["IncreasedChaosDamageUniqueBodyStrDex4"] = { affix = "", "(50-80)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, + ["IncreasedChaosDamageUniqueCorruptedJewel2"] = { affix = "", "(15-20)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, + ["IncreasedChaosDamageUniqueShieldDex7"] = { affix = "", "(20-30)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, + ["IncreasedChaosDamageUnique__1"] = { affix = "", "(30-35)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, + ["IncreasedChaosDamageUnique__2"] = { affix = "", "(80-100)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, + ["IncreasedChaosDamageUnique__3"] = { affix = "", "(7-13)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, + ["IncreasedChaosDamageUnique__4"] = { affix = "", "(60-80)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, + ["IncreasedChaosDamageUnique__4_2"] = { affix = "", "(20-30)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, + ["IncreasedChaosDamageUnique__5"] = { affix = "", "(20-40)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, + ["IncreasedChaosDamageImplicit1_"] = { affix = "", "(17-23)% increased Chaos Damage", statOrder = { 858 }, level = 100, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, + ["IncreasedChaosDamageImplicitUnique__1"] = { affix = "", "30% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, + ["IncreasedLifeLeechRateUniqueBodyStrDex4"] = { affix = "", "Leech Life 100% faster", statOrder = { 1821 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1570501432, }, + ["IncreasedLifeLeechRateUniqueAmulet20"] = { affix = "", "Leech 30% faster", statOrder = { 1819 }, level = 1, group = "LifeManaESLeechRate", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "mana", "defences" }, tradeHash = 2460686383, }, + ["IncreasedLifeLeechRateUnique__1"] = { affix = "", "Leech Life 50% faster", statOrder = { 1821 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1570501432, }, + ["ReducedLifeLeechRateUniqueJewel19"] = { affix = "", "Leech Life (10-20)% slower", statOrder = { 1821 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1570501432, }, + ["IncreasedLifeLeechRateUnique__2"] = { affix = "", "Leech Life (500-1000)% faster", statOrder = { 1821 }, level = 52, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1570501432, }, + ["IncreasedManaLeechRateUnique__1"] = { affix = "", "Leech Mana (500-1000)% faster", statOrder = { 1823 }, level = 52, group = "IncreasedManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3554867738, }, + ["SpellAddedChaosDamageUniqueWand7"] = { affix = "", "Adds (90-130) to (140-190) Chaos Damage to Spells", statOrder = { 1244 }, level = 1, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHash = 2300399854, }, + ["SpellAddedChaosDamageUnique__1"] = { affix = "", "Adds (48-56) to (73-84) Chaos Damage to Spells", statOrder = { 1244 }, level = 81, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHash = 2300399854, }, + ["SpellAddedChaosDamageUnique__2"] = { affix = "", "Adds (16-21) to (31-36) Chaos Damage to Spells", statOrder = { 1244 }, level = 1, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHash = 2300399854, }, + ["HealOnRampageUniqueGlovesStrDex5"] = { affix = "", "Recover 20% of maximum Life on Rampage", statOrder = { 2588 }, level = 1, group = "HealOnRampage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2737492258, }, + ["DispelStatusAilmentsOnRampageUniqueGlovesStrInt2"] = { affix = "", "Removes Elemental Ailments on Rampage", statOrder = { 2589 }, level = 1, group = "DispelStatusAilmentsOnRampage", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 627889781, }, + ["PhysicalDamageImmunityOnRampageUniqueGlovesStrInt2"] = { affix = "", "Gain Immunity to Physical Damage for 1.5 seconds on Rampage", statOrder = { 2590 }, level = 1, group = "PhysicalDamageImmunityOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3100457893, }, + ["VaalSoulsOnRampageUniqueGlovesStrDex5"] = { affix = "", "Kills grant an additional Vaal Soul if you have Rampaged Recently", statOrder = { 6316 }, level = 1, group = "AdditionalVaalSoulOnRampage", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHash = 3271016161, }, + ["GroundSmokeOnRampageUniqueGlovesDexInt6"] = { affix = "", "Creates a Smoke Cloud on Rampage", statOrder = { 2601 }, level = 1, group = "GroundSmokeOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3321583955, }, + ["PhasingOnRampageUniqueGlovesDexInt6"] = { affix = "", "Enemies do not block your movement for 4 seconds on Rampage", statOrder = { 2602 }, level = 1, group = "PhasingOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 376956212, }, + ["GlobalChanceToBlindOnHitUniqueSceptre8"] = { affix = "", "10% Global chance to Blind Enemies on Hit", statOrder = { 2592 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2221570601, }, + ["LifeRegenerationPerLevelUniqueTwoHandSword7"] = { affix = "", "Regenerate 0.2 Life per second per Level", statOrder = { 2595 }, level = 1, group = "LifeRegenerationPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1384864963, }, + ["CriticalStrikeChancePerLevelUniqueTwoHandAxe8"] = { affix = "", "3% increased Global Critical Hit Chance per Level", statOrder = { 2596 }, level = 1, group = "CriticalStrikeChancePerLevel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3081076859, }, + ["AttackDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Attack Damage per Level", statOrder = { 2597 }, level = 1, group = "AttackDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 63607615, }, + ["SpellDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Spell Damage per Level", statOrder = { 2598 }, level = 1, group = "SpellDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 797084288, }, + ["FlaskChargesOnCritUniqueTwoHandAxe8"] = { affix = "", "Gain a Flask Charge when you deal a Critical Hit", statOrder = { 2599 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHash = 1546046884, }, + ["ChanceToReflectChaosDamageToSelfUniqueTwoHandSword7_"] = { affix = "", "Enemies you Attack have 20% chance to Reflect 35 to 50 Chaos Damage to you", statOrder = { 2604 }, level = 1, group = "ChanceToReflectChaosDamageToSelf", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 515996808, }, + ["SimulatedRampageStrDex5"] = { affix = "", "Rampage", statOrder = { 10018 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2397408229, }, + ["SimulatedRampageDexInt6"] = { affix = "", "Rampage", statOrder = { 10018 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2397408229, }, + ["SimulatedRampageStrInt2"] = { affix = "", "Rampage", statOrder = { 10018 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2397408229, }, + ["SimulatedRampageUnique__1"] = { affix = "", "Melee Hits count as Rampage Kills", "Rampage", statOrder = { 10017, 10017.1 }, level = 1, group = "SimulatedRampageMeleeHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2889807051, }, + ["SimulatedRampageUnique__2"] = { affix = "", "Rampage", statOrder = { 10018 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2397408229, }, + ["SimulatedRampageUnique__3_"] = { affix = "", "Rampage", statOrder = { 10018 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2397408229, }, + ["BlindImmunityUniqueSceptre8"] = { affix = "", "Cannot be Blinded", statOrder = { 2608 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1436284579, }, + ["BlindImmunityUnique__1"] = { affix = "", "Cannot be Blinded", statOrder = { 2608 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1436284579, }, + ["ManaGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Mana on Kill per Level", statOrder = { 2606 }, level = 1, group = "ManaGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1064067689, }, + ["EnergyShieldGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Energy Shield on Kill per Level", statOrder = { 2607 }, level = 1, group = "EnergyShieldGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 294153754, }, + ["LocalIncreaseSocketedActiveSkillGemLevelUniqueTwoHandSword7_"] = { affix = "", "+1 to Level of Socketed Skill Gems", statOrder = { 141 }, level = 1, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 524797741, }, + ["IncreasedChaosDamagePerLevelUniqueTwoHandSword7"] = { affix = "", "1% increased Elemental Damage per Level", statOrder = { 2609 }, level = 1, group = "ChaosDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2094646950, }, + ["IncreasedElementalDamagePerLevelUniqueTwoHandSword7"] = { affix = "", "1% increased Chaos Damage per Level", statOrder = { 2610 }, level = 1, group = "ElementalDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 4084331136, }, + ["LifeGainedOnEnemyDeathPerLevelUniqueTwoHandSword7"] = { affix = "", "Gain 1 Life on Kill per Level", statOrder = { 2605 }, level = 1, group = "LifeGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 4228691877, }, + ["SocketedGemHasElementalEquilibriumUniqueRing25"] = { affix = "", "Socketed Gems have Elemental Equilibrium", statOrder = { 431 }, level = 1, group = "SocketedGemHasElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, tradeHash = 1592277680, }, + ["SocketedGemHasSecretsOfSufferingUnique__1"] = { affix = "", "Socketed Gems have Secrets of Suffering", statOrder = { 433 }, level = 1, group = "SocketedGemHasSecretsOfSuffering", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental", "fire", "cold", "lightning", "critical", "ailment", "gem" }, tradeHash = 4051493629, }, + ["ImmuneToElementalAilmentsWhileLifeAndManaCloseUnique__1"] = { affix = "", "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500", statOrder = { 9756 }, level = 1, group = "ImmuneToElementalAilmentsWhileLifeAndManaClose", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 2716882575, }, + ["FireResistanceWhenSocketedWithRedGemUniqueRing25"] = { affix = "", "+(75-100)% to Fire Resistance when Socketed with a Red Gem", statOrder = { 1411 }, level = 1, group = "FireResistanceWhenSocketedWithRedGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance", "gem" }, tradeHash = 3051845758, }, + ["LightningResistanceWhenSocketedWithBlueGemUniqueRing25"] = { affix = "", "+(75-100)% to Lightning Resistance when Socketed with a Blue Gem", statOrder = { 1418 }, level = 1, group = "LightningResistanceWhenSocketedWithBlueGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance", "gem" }, tradeHash = 289814996, }, + ["ColdResistanceWhenSocketedWithGreenGemUniqueRing25"] = { affix = "", "+(75-100)% to Cold Resistance when Socketed with a Green Gem", statOrder = { 1415 }, level = 1, group = "ColdResistanceWhenSocketedWithGreenGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance", "gem" }, tradeHash = 1064331314, }, + ["LightningPenetrationUniqueStaff8"] = { affix = "", "Damage Penetrates 20% Lightning Resistance", statOrder = { 2615 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, }, + ["LightningPenetrationUnique__1"] = { affix = "", "Damage Penetrates 20% Lightning Resistance", statOrder = { 2615 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, }, + ["FirePenetrationUnique__1"] = { affix = "", "Damage Penetrates 10% Fire Resistance", statOrder = { 2613 }, level = 81, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, }, + ["SocketedGemsGetIncreasedItemQuantityUniqueShieldInt4"] = { affix = "", "Enemies slain by Socketed Gems drop 10% increased item quantity", statOrder = { 384 }, level = 1, group = "SocketedGemsGetIncreasedItemQuantity", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 85122299, }, + ["IncreaseDamageOnBlindedEnemiesUniqueQuiver9_"] = { affix = "", "(40-60)% increased Damage with Hits against Blinded Enemies", statOrder = { 6753 }, level = 69, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2242791457, }, + ["IncreaseDamageOnBlindedEnemiesUnique__1"] = { affix = "", "(25-40)% increased Damage with Hits against Blinded Enemies", statOrder = { 6753 }, level = 1, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2242791457, }, + ["SmokeCloudWhenHitUniqueQuiver9"] = { affix = "", "25% chance to create a Smoke Cloud when Hit", statOrder = { 2248 }, level = 1, group = "SmokeCloudWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 953314356, }, + ["IncreasedWeaponElementalDamageDuringFlaskUniqueBelt10"] = { affix = "", "30% increased Elemental Damage with Attack Skills during any Flask Effect", statOrder = { 2413 }, level = 1, group = "IncreasedWeaponElementalDamageDuringFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 782323220, }, + ["IncreasedFireDamageTakenUniqueBodyStrDex5"] = { affix = "", "20% increased Fire Damage taken", statOrder = { 1892 }, level = 1, group = "FireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHash = 3743301799, }, + ["FireDamageTakenConvertedToPhysicalUniqueBodyStrDex5"] = { affix = "", "10% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2118 }, level = 1, group = "FireDamageTakenAsPhysicalNegate", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHash = 1029319062, }, + ["FireDamageTakenConvertedToPhysicalUnique__1"] = { affix = "", "100% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2117 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHash = 3205239847, }, + ["LocalAddedFireDamageAgainstIgnitedEnemiesUniqueSceptre9"] = { affix = "", "Adds 15 to 25 Fire Damage to Attacks against Ignited Enemies", statOrder = { 1149 }, level = 1, group = "AddedFireDamageVsIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 627339348, }, + ["CastSocketedMinionSpellsOnKillUniqueBow12"] = { affix = "", "Trigger Socketed Minion Spells on Kill with this Weapon", "Minion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses", statOrder = { 535, 535.1 }, level = 1, group = "CastSocketedMinionSpellsOnKill", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "minion" }, tradeHash = 2816098341, }, + ["IncreasedMinionDamagePerDexterityUniqueBow12"] = { affix = "", "Minions deal 1% increased Damage per 5 Dexterity", statOrder = { 1649 }, level = 1, group = "IncreasedMinionDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 4187741589, }, + ["CastSocketedSpellsOnShockedEnemyKillUnique__1"] = { affix = "", "50% chance to Trigger Socketed Spells on killing a Shocked enemy", statOrder = { 534 }, level = 1, group = "CastSocketedSpellsOnShockedEnemyKill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 2770461177, }, + ["MaxPowerChargesIsZeroUniqueAmulet19"] = { affix = "", "Cannot gain Power Charges", statOrder = { 2640 }, level = 1, group = "MaxPowerChargesIsZero", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2503253050, }, + ["IncreasedDamagePerCurseUniqueHelmetInt9"] = { affix = "", "(10-20)% increased Damage with Hits per Curse on Enemy", statOrder = { 2639 }, level = 1, group = "IncreasedDamagePerCurse", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1818773442, }, + ["StealChargesOnHitPercentUniqueGlovesStrDex6"] = { affix = "", "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2618 }, level = 1, group = "StealChargesOnHitPercent", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 875143443, }, + ["StealChargesOnHitPercentUnique__1"] = { affix = "", "Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2618 }, level = 1, group = "StealChargesOnHitPercent", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 875143443, }, + ["IncreasedPhysicalDamagePerEnduranceChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Physical Damage per Endurance Charge", statOrder = { 1803 }, level = 1, group = "IncreasedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2481358827, }, + ["IncreasedPhysicalDamagePerEnduranceChargeUnique__1"] = { affix = "", "10% increased Physical Damage per Endurance Charge", statOrder = { 1803 }, level = 1, group = "IncreasedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2481358827, }, + ["IncreasedDamageVsFullLifePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "2% increased Damage per Power Charge with Hits against Enemies that are on Full Life", statOrder = { 2622 }, level = 1, group = "DamageVsFullLifePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2111067745, }, + ["IncreasedDamageVsLowLifePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "2% increased Damage per Power Charge with Hits against Enemies on Low Life", statOrder = { 2623 }, level = 1, group = "DamageVsLowLivePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 82392902, }, + ["ElementalPenetrationPerFrenzyChargeUniqueGlovesStrDex6"] = { affix = "", "Penetrate 1% Elemental Resistances per Frenzy Charge", statOrder = { 2621 }, level = 1, group = "ElementalPenetrationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2724643145, }, + ["ChargeDurationUniqueBodyDexInt3"] = { affix = "", "(100-200)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 2651 }, level = 1, group = "ChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 2839036860, }, + ["ElementalStatusAilmentDurationUniqueAmulet19"] = { affix = "", "20% reduced Duration of Elemental Ailments on Enemies", statOrder = { 1544 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 2604619892, }, + ["ElementalStatusAilmentDurationDescentUniqueQuiver1"] = { affix = "", "50% increased Duration of Elemental Ailments on Enemies", statOrder = { 1544 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 2604619892, }, + ["ElementalStatusAilmentDurationUnique__1_"] = { affix = "", "(10-15)% increased Duration of Elemental Ailments on Enemies", statOrder = { 1544 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 2604619892, }, + ["CanOnlyKillFrozenEnemiesUniqueGlovesStrInt3"] = { affix = "", "Your Hits can only Kill Frozen Enemies", statOrder = { 2646 }, level = 1, group = "CanOnlyKillFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2740359895, }, + ["FreezeDurationUniqueGlovesStrInt3"] = { affix = "", "100% increased Freeze Duration on Enemies", statOrder = { 1541 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 496146175, }, + ["FreezeChillDurationUnique__1"] = { affix = "", "10000% increased Chill Duration on Enemies", "10000% increased Freeze Duration on Enemies", statOrder = { 1539, 1541 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 496146175, }, + ["FreezeDurationUnique__1"] = { affix = "", "25% increased Freeze Duration on Enemies", statOrder = { 1541 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 496146175, }, + ["ElementalPenetrationMarakethSceptreImplicit1"] = { affix = "", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2612 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2101383955, }, + ["ElementalPenetrationMarakethSceptreImplicit2"] = { affix = "", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2612 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2101383955, }, + ["UniqueEnemiesInPresenceHaveFireExposure1"] = { affix = "", "Enemies in your Presence have Exposure", statOrder = { 5945 }, level = 1, group = "EnemiesInPresenceHaveExposure", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHash = 2360818866, }, + ["UniqueBearSkillDamageConvertedToFire1"] = { affix = "", "Bear Skills Convert 80% of Physical Damage to Fire Damage", statOrder = { 1629 }, level = 1, group = "UniqueBearSkillDamageConvertedToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 4287372938, }, + ["UniqueSkillsGainXGloryEvery2Seconds1"] = { affix = "", "Skills which require Glory generate (2-5) Glory every 2 seconds", statOrder = { 3999 }, level = 1, group = "UniqueSkillsGainXGloryEvery2Seconds", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2480962043, }, + ["MinonAreaOfEffectUniqueRing33"] = { affix = "", "Minions have 10% increased Area of Effect", statOrder = { 2649 }, level = 1, group = "MinionAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3811191316, }, + ["MinionAreaOfEffectUnique__1"] = { affix = "", "Minions have (6-8)% increased Area of Effect", statOrder = { 2649 }, level = 1, group = "MinionAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3811191316, }, + ["PhysicalDamageToSelfOnMinionDeathUniqueRing33"] = { affix = "", "350 Physical Damage taken on Minion Death", statOrder = { 2652 }, level = 25, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 4176970656, }, + ["PhysicalDamageToSelfOnMinionDeathESPercentUniqueRing33_"] = { affix = "", "8% of Maximum Energy Shield taken as Physical Damage on Minion Death", statOrder = { 2648 }, level = 1, group = "SelfPhysicalDamageOnMinionDeathPerES", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1617739170, }, + ["DealNoPhysicalDamageUniqueBelt14"] = { affix = "", "Deal no Physical Damage", statOrder = { 2445 }, level = 65, group = "DealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3900877792, }, + ["DealNoNonPhysicalDamageUniqueBelt__1"] = { affix = "", "Deal no Non-Physical Damage", statOrder = { 2446 }, level = 65, group = "DealNoNonPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 282353000, }, + ["RangedAttacksConsumeAmmoUniqueBelt__1"] = { affix = "", "Attacks that Fire Projectiles Consume up to 1 additional Steel Shard", statOrder = { 4446 }, level = 1, group = "RangedAttacksConsumeAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 591162856, }, + ["AdditionalProjectilesAfterAmmoConsumedUniqueBelt__1"] = { affix = "", "Skills Fire 3 additional Projectiles for 4 seconds after", "you consume a total of 12 Steel Shards", statOrder = { 9321, 9321.1 }, level = 1, group = "AdditionalProjectilesAfterAmmoConsumed", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2511521167, }, + ["FasterBurnFromAttacksEnemiesUniqueBelt14"] = { affix = "", "Ignites you inflict with Attacks deal Damage 35% faster", statOrder = { 2238 }, level = 65, group = "FasterBurnFromAttacksEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack", "ailment" }, tradeHash = 1420236871, }, + ["SocketedGemsProjectilesNovaUniqueStaff10"] = { affix = "", "Socketed Gems fire Projectiles in a circle", statOrder = { 436 }, level = 1, group = "DisplaySocketedGemsNova", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 967556848, }, + ["SocketedGemsProjectilesNovaUnique__1"] = { affix = "", "Socketed Projectile Spells fire Projectiles in a circle", statOrder = { 437 }, level = 1, group = "DisplaySocketedSpellsNova", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 3235941702, }, + ["SocketedGemsAdditionalProjectilesUniqueStaff10_"] = { affix = "", "Socketed Gems fire 4 additional Projectiles", statOrder = { 434 }, level = 1, group = "DisplaySocketedGemAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4016885052, }, + ["SocketedGemsAdditionalProjectilesUniqueWand9"] = { affix = "", "Socketed Gems fire an additional Projectile", statOrder = { 434 }, level = 1, group = "DisplaySocketedGemAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4016885052, }, + ["SocketedGemsAdditionalProjectilesUnique__1__"] = { affix = "", "Socketed Projectile Spells fire 4 additional Projectiles", statOrder = { 435 }, level = 1, group = "DisplaySocketedSpellsAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 973574623, }, + ["SocketedGemsReducedDurationUniqueStaff10"] = { affix = "", "Socketed Gems have 70% reduced Skill Effect Duration", statOrder = { 438 }, level = 1, group = "DisplaySocketedGemReducedDuration", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 678608747, }, + ["SupportedByReducedManaUniqueBodyDexInt4"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 349 }, level = 1, group = "DisplaySocketedGemGetsReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1866911844, }, + ["SupportedByGenerosityUniqueBodyDexInt4_"] = { affix = "", "Socketed Gems are Supported by Level 30 Generosity", statOrder = { 350 }, level = 1, group = "DisplaySocketedGemGenerosity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2593773031, }, + ["IncreasedAuraEffectUniqueBodyDexInt4"] = { affix = "", "(10-15)% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3145 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1880071428, }, + ["IncreasedAuraEffectUniqueJewel45"] = { affix = "", "3% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3145 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1880071428, }, + ["IncreasedAuraRadiusUniqueBodyDexInt4"] = { affix = "", "(20-40)% increased Area of Effect of Aura Skills", statOrder = { 1874 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 895264825, }, + ["IncreasedAuraRadiusUnique__1"] = { affix = "", "20% increased Area of Effect of Aura Skills", statOrder = { 1874 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 895264825, }, + ["IncreasedElementalDamagePerFrenzyChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Elemental Damage per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "IncreasedElementalDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 1586440250, }, + ["MinesMultipleDetonationUniqueStaff11"] = { affix = "", "Mines can be Detonated an additional time", statOrder = { 2656 }, level = 1, group = "MinesMultipleDetonation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 325437053, }, + ["GainOnslaughtWhenCullingEnemyUniqueOneHandAxe6"] = { affix = "", "You gain Onslaught for 3 seconds on Culling Strike", statOrder = { 2653 }, level = 1, group = "GainOnslaughtOnCull", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3818161429, }, + ["LocalAddedPhysicalDamageUniqueOneHandAxe6"] = { affix = "", "Adds (3-5) to (7-10) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe6"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, + ["LifeLeechPermyriadUniqueOneHandAxe6"] = { affix = "", "Leeches 2% of Physical Damage as Life", statOrder = { 972 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, }, + ["CannotBeChilledWhenOnslaughtUniqueOneHandAxe6"] = { affix = "", "100% chance to Avoid being Chilled during Onslaught", statOrder = { 2655 }, level = 1, group = "CannotBeChilledDuringOnslaught", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2872105818, }, + ["LifeRegenerationRatePercentageUniqueAmulet21"] = { affix = "", "Regenerate 4% of maximum Life per second", statOrder = { 1617 }, level = 20, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, + ["LifeRegenerationRatePercentageUniqueShieldStrInt3"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, + ["LifeRegenerationRatePercentageUniqueJewel24"] = { affix = "", "Regenerate 2% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, + ["LifeRegenerationRatePercentUniqueShieldStr5"] = { affix = "", "You and your Totems Regenerate 0.5% of maximum Life per second for each Summoned Totem", statOrder = { 9940 }, level = 1, group = "LifeRegenerationRatePercentagePerTotem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1496370423, }, + ["LifeRegenerationRatePercentUnique__1"] = { affix = "", "Regenerate 2% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, + ["LifeRegenerationRatePercentUnique__2"] = { affix = "", "Regenerate 10% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, + ["LifeRegenerationRatePercentUnique__3"] = { affix = "", "Regenerate 1% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, + ["LifeRegenerationRatePercentUnique__4_"] = { affix = "", "Regenerate 1% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, + ["LifeRegenerationRatePercentUnique__5"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, + ["LifeRegenerationRatePercentImplicitUnique__5"] = { affix = "", "Regenerate (1-2)% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, + ["RemoteMineLayingSpeedUniqueStaff11"] = { affix = "", "(40-60)% increased Mine Throwing Speed", statOrder = { 1598 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1896971621, }, + ["RemoteMineLayingSpeedUnique__1"] = { affix = "", "(10-15)% reduced Mine Throwing Speed", statOrder = { 1598 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1896971621, }, + ["RemoteMineArmingSpeedUnique__1"] = { affix = "", "Mines have (40-50)% increased Detonation Speed", statOrder = { 8399 }, level = 1, group = "MineArmingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3085465082, }, + ["LessMineDamageUniqueStaff11"] = { affix = "", "35% less Mine Damage", statOrder = { 1092 }, level = 1, group = "LessMineDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3298440988, }, + ["SupportedByRemoteMineUniqueStaff11"] = { affix = "", "Socketed Gems are Supported by Level 10 Blastchain Mine", statOrder = { 352 }, level = 1, group = "SupportedByRemoteMineLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1710508327, }, + ["ColdWeaponDamageUniqueOneHandMace4"] = { affix = "", "(30-40)% increased Cold Damage with Attack Skills", statOrder = { 5310 }, level = 1, group = "ColdWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 860668586, }, + ["AddedLightningDamageWhileUnarmedUniqueGloves_1"] = { affix = "", "Adds 1 to (77-111) Lightning Damage to Unarmed Melee Hits", statOrder = { 2110 }, level = 1, group = "AddedLightningDamageWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3835522656, }, + ["AddedLightningDamageWhileUnarmedUniqueGlovesStr4_"] = { affix = "", "Adds (150-225) to (525-600) Lightning Damage to Unarmed Melee Hits", statOrder = { 2110 }, level = 1, group = "AddedLightningDamageWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3835522656, }, + ["AddedLightningDamagetoSpellsWhileUnarmedUniqueGlovesStr4"] = { affix = "", "Adds (90-135) to (315-360) Lightning Damage to Spells while Unarmed", statOrder = { 2111 }, level = 1, group = "AddedLightningDamagetoSpellsWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 3597806437, }, + ["GainEnergyShieldOnKillShockedEnemyUniqueGlovesStr4"] = { affix = "", "+(200-250) Energy Shield gained on killing a Shocked enemy", statOrder = { 2244 }, level = 1, group = "GainEnergyShieldOnKillShockedEnemy", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 347328113, }, + ["GainEnergyShieldOnKillShockedEnemyUnique__1_"] = { affix = "", "+(90-120) Energy Shield gained on killing a Shocked enemy", statOrder = { 2244 }, level = 1, group = "GainEnergyShieldOnKillShockedEnemy", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 347328113, }, + ["CannotKnockBackUniqueOneHandMace5_"] = { affix = "", "Cannot Knock Enemies Back", statOrder = { 2636 }, level = 1, group = "CannotKnockBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2095084973, }, + ["ChillOnAttackStunUniqueOneHandMace5"] = { affix = "", "All Attack Damage Chills when you Stun", statOrder = { 2637 }, level = 1, group = "ChillOnAttackStun", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack", "ailment" }, tradeHash = 2437193018, }, + ["DisplayLifeRegenerationAuraUniqueAmulet21"] = { affix = "", "Nearby Allies gain 4% of maximum Life Regenerated per second", statOrder = { 2625 }, level = 1, group = "DisplayLifeRegenerationAura", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3462673103, }, + ["DisplayManaRegenerationAuaUniqueAmulet21"] = { affix = "", "Nearby Allies gain 80% increased Mana Regeneration Rate", statOrder = { 2630 }, level = 1, group = "DisplayManaRegenerationAua", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 778848857, }, + ["IncreasedRarityWhenSlayingFrozenUniqueOneHandMace4"] = { affix = "", "40% increased Rarity of Items Dropped by Frozen Enemies", statOrder = { 2360 }, level = 1, group = "IncreasedRarityWhenSlayingFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2138434718, }, + ["SwordPhysicalDamageToAddAsFireUniqueOneHandSword10"] = { affix = "", "Gain (66-99)% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3342 }, level = 1, group = "SwordPhysicalDamageToAddAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHash = 3606204707, }, + ["CannotBeBuffedByAlliedAurasUniqueOneHandSword11"] = { affix = "", "Allies' Aura Buffs do not affect you", statOrder = { 2643 }, level = 1, group = "CannotBeBuffedByAlliedAuras", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1489905076, }, + ["AurasCannotBuffAlliesUniqueOneHandSword11"] = { affix = "", "Your Aura Buffs do not affect Allies", statOrder = { 2645 }, level = 1, group = "AurasCannotBuffAllies", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 4196775867, }, + ["IncreasedBuffEffectivenessUniqueOneHandSword11"] = { affix = "", "10% increased effect of Buffs on you", statOrder = { 1808 }, level = 1, group = "IncreasedBuffEffectiveness", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 306104305, }, + ["IncreasedBuffEffectivenessBodyInt12"] = { affix = "", "30% increased effect of Buffs on you", statOrder = { 1808 }, level = 1, group = "IncreasedBuffEffectiveness", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 306104305, }, + ["EnemyKnockbackDirectionReversedUniqueGlovesStr5_"] = { affix = "", "Knockback direction is reversed", statOrder = { 2642 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 281201999, }, + ["DisplaySupportedByKnockbackUniqueGlovesStr5"] = { affix = "", "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 356 }, level = 1, group = "DisplaySupportedByKnockback", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 4066711249, }, + ["LifeRegenPerMinutePerEnduranceChargeUniqueBodyDexInt3"] = { affix = "", "Regenerate 75 Life per second per Endurance Charge", statOrder = { 2635 }, level = 1, group = "LifeRegenPerMinutePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1898967950, }, + ["LifeRegenPerMinutePerEnduranceChargeUnique__1"] = { affix = "", "Regenerate (100-140) Life per second per Endurance Charge", statOrder = { 2635 }, level = 1, group = "LifeRegenPerMinutePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1898967950, }, + ["MonstersFleeOnFlaskUseUniqueFlask9"] = { affix = "", "75% chance to cause Enemies to Flee on use", statOrder = { 654 }, level = 1, group = "MonstersFleeOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1457911472, }, + ["PhysicalDamageOnFlaskUseUniqueFlask9"] = { affix = "", "(7-10)% more Melee Physical Damage during effect", statOrder = { 789 }, level = 1, group = "PhysicalDamageOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "physical_damage", "damage", "physical", "attack" }, tradeHash = 3636096208, }, + ["KnockbackOnFlaskUseUniqueFlask9"] = { affix = "", "Adds Knockback to Melee Attacks during Effect", statOrder = { 716 }, level = 1, group = "KnockbackOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "attack" }, tradeHash = 251342217, }, + ["CausesBleedingImplicitMarakethRapier1"] = { affix = "", "Causes Bleeding on Hit", statOrder = { 2150 }, level = 1, group = "CausesBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2091621414, }, + ["LifeAndManaOnHitImplicitMarakethClaw1"] = { affix = "", "Grants 6 Life and Mana per Enemy Hit", statOrder = { 1431 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 1420170973, }, + ["LifeAndManaOnHitImplicitMarakethClaw2"] = { affix = "", "Grants 10 Life and Mana per Enemy Hit", statOrder = { 1431 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 1420170973, }, + ["LifeAndManaOnHitImplicitMarakethClaw3"] = { affix = "", "Grants 14 Life and Mana per Enemy Hit", statOrder = { 1431 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 1420170973, }, + ["LifeAndManaOnHitSeparatedImplicitMarakethClaw1"] = { affix = "", "Grants 15 Life per Enemy Hit", "Grants 6 Mana per Enemy Hit", statOrder = { 974, 1434 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 2259391009, }, + ["LifeAndManaOnHitSeparatedImplicitMarakethClaw2"] = { affix = "", "Grants 28 Life per Enemy Hit", "Grants 10 Mana per Enemy Hit", statOrder = { 974, 1434 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 2259391009, }, + ["LifeAndManaOnHitSeparatedImplicitMarakethClaw3"] = { affix = "", "Grants 38 Life per Enemy Hit", "Grants 14 Mana per Enemy Hit", statOrder = { 974, 1434 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 2259391009, }, + ["IcestormUniqueStaff12"] = { affix = "", "Grants Level 1 Icestorm Skill", statOrder = { 484 }, level = 1, group = "IcestormActiveSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3164659793, }, + ["PowerChargeOnMeleeStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun with Melee Damage", statOrder = { 2425 }, level = 1, group = "PowerChargeOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2318615887, }, + ["PowerChargeOnStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun", statOrder = { 2426 }, level = 1, group = "PowerChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3470535775, }, + ["ChanceToAvoidElementalStatusAilmentsUniqueAmulet22"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["ChanceToAvoidElementalStatusAilmentsUniqueJewel46"] = { affix = "", "10% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, }, + ["ChanceToBePiercedUniqueBodyStr6"] = { affix = "", "Enemy Projectiles Pierce you", statOrder = { 8989 }, level = 1, group = "ProjectilesAlwaysPierceYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1457679290, }, + ["IronWillUniqueGlovesStrInt4__"] = { affix = "", "Iron Will", statOrder = { 10060 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 281311123, }, + ["GluttonyOfElementsUniqueAmulet23"] = { affix = "", "Grants Level 10 Gluttony of Elements Skill", statOrder = { 467 }, level = 7, group = "DisplayGluttonyOfElements", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3321235265, }, + ["SocketedGemsSupportedByPierceUniqueBodyStr6"] = { affix = "", "Socketed Gems are Supported by Level 15 Pierce", statOrder = { 363 }, level = 1, group = "DisplaySupportedByPierce", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 254728692, }, + ["LifeRegenPerActiveBuffUniqueBodyInt12"] = { affix = "", "Regenerate (12-20) Life per second per Buff on you", statOrder = { 7023 }, level = 1, group = "LifeRegenPerBuff", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 996053100, }, + ["MaceDamageJewel"] = { affix = "Brutal", "(14-16)% increased Damage with Maces", statOrder = { 1186 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHash = 1181419800, }, + ["AxeDamageJewel"] = { affix = "Sinister", "(14-16)% increased Damage with Axes", statOrder = { 1170 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 3314142259, }, + ["SwordDamageJewel"] = { affix = "Vicious", "(14-16)% increased Damage with Swords", statOrder = { 1196 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 83050999, }, + ["BowDamageJewel"] = { affix = "Fierce", "(14-16)% increased Damage with Bows", statOrder = { 1190 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHash = 4188894176, }, + ["ClawDamageJewel"] = { affix = "Savage", "(14-16)% increased Damage with Claws", statOrder = { 1178 }, level = 1, group = "IncreasedClawDamageForJewel", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHash = 1069260037, }, + ["DaggerDamageJewel"] = { affix = "Lethal", "(14-16)% increased Damage with Daggers", statOrder = { 1182 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHash = 3586984690, }, + ["WandDamageJewel"] = { affix = "Cruel", "(14-16)% increased Damage with Wands", statOrder = { 2579 }, level = 1, group = "IncreasedWandDamageForJewel", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHash = 379328644, }, + ["StaffDamageJewel"] = { affix = "Judging", "(14-16)% increased Damage with Quarterstaves", statOrder = { 1175 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHash = 4045894391, }, + ["OneHandedMeleeDamageJewel"] = { affix = "Soldier's", "(12-14)% increased Damage with One Handed Weapons", statOrder = { 2935 }, level = 1, group = "IncreasedOneHandedMeleeDamageForJewel", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 1010549321, }, + ["TwoHandedMeleeDamageJewel"] = { affix = "Champion's", "(12-14)% increased Damage with Two Handed Weapons", statOrder = { 2936 }, level = 1, group = "IncreasedTwoHandedMeleeDamageForJewel", weightKey = { "bow", "wand", "one_handed_mod", "dual_wielding_mod", "shield_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 1836374041, }, + ["DualWieldingMeleeDamageJewel"] = { affix = "Gladiator's", "(12-14)% increased Attack Damage while Dual Wielding", statOrder = { 1154 }, level = 1, group = "IncreasedDualWieldlingDamageForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 444174528, }, + ["UnarmedMeleeDamageJewel"] = { affix = "Brawling", "(14-16)% increased Melee Physical Damage with Unarmed Attacks", statOrder = { 1169 }, level = 1, group = "IncreasedUnarmedDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 515842015, }, + ["MeleeDamageJewel_"] = { affix = "of Combat", "(10-12)% increased Melee Damage", statOrder = { 1124 }, level = 1, group = "MeleeDamageForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 1002362373, }, + ["ProjectileDamageJewel"] = { affix = "of Archery", "(10-12)% increased Projectile Damage", statOrder = { 1663 }, level = 1, group = "ProjectileDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "damage" }, tradeHash = 1839076647, }, + ["ProjectileDamageJewelUniqueJewel41"] = { affix = "", "10% increased Projectile Damage", statOrder = { 1663 }, level = 1, group = "ProjectileDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1839076647, }, + ["SpellDamageJewel"] = { affix = "of Mysticism", "(10-12)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "SpellDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, + ["StaffSpellDamageJewel"] = { affix = "Wizard's", "(14-16)% increased Spell Damage while wielding a Staff", statOrder = { 1118 }, level = 1, group = "StaffSpellDamageForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 1, 0, 0, 0, 0, 1 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 3496944181, }, + ["DualWieldingSpellDamageJewel_"] = { affix = "Sorcerer's", "(14-16)% increased Spell Damage while Dual Wielding", statOrder = { 1121 }, level = 1, group = "DualWieldingSpellDamageForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 1 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 1678690824, }, + ["ShieldSpellDamageJewel"] = { affix = "Battlemage's", "(14-16)% increased Spell Damage while holding a Shield", statOrder = { 1120 }, level = 1, group = "ShieldSpellDamageForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "bow", "staff", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 1 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 1766142294, }, + ["TrapDamageJewel"] = { affix = "Trapping", "(14-16)% increased Trap Damage", statOrder = { 854 }, level = 1, group = "TrapDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2941585404, }, + ["MineDamageJewel"] = { affix = "Sabotage", "(14-16)% increased Mine Damage", statOrder = { 1091 }, level = 1, group = "MineDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2137912951, }, + ["DamageJewel"] = { affix = "of Wounding", "(8-10)% increased Damage", statOrder = { 1087 }, level = 1, group = "DamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "damage" }, tradeHash = 2154246560, }, + ["MinionDamageJewel"] = { affix = "Leadership", "Minions deal (14-16)% increased Damage", statOrder = { 1646 }, level = 1, group = "MinionDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "damage", "minion" }, tradeHash = 1589917703, }, + ["FireDamageJewel"] = { affix = "Flaming", "(14-16)% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, }, + ["ColdDamageJewel"] = { affix = "Chilling", "(14-16)% increased Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, }, + ["LightningDamageJewel"] = { affix = "Humming", "(14-16)% increased Lightning Damage", statOrder = { 857 }, level = 1, group = "LightningDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, }, + ["PhysicalDamageJewel"] = { affix = "Sharpened", "(14-16)% increased Global Physical Damage", statOrder = { 1122 }, level = 1, group = "PhysicalDamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1310194496, }, + ["PhysicalDamagePercentUnique___1"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1122 }, level = 1, group = "PhysicalDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1310194496, }, + ["DamageOverTimeJewel"] = { affix = "of Entropy", "(10-12)% increased Damage over Time", statOrder = { 1104 }, level = 1, group = "DamageOverTimeForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "damage" }, tradeHash = 967627487, }, + ["DamageOverTimeUnique___1"] = { affix = "", "(8-12)% increased Damage over Time", statOrder = { 1104 }, level = 1, group = "DamageOverTimeForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 967627487, }, + ["ChaosDamageJewel"] = { affix = "Chaotic", "(9-13)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "ChaosDamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, + ["AreaDamageJewel"] = { affix = "of Blasting", "(10-12)% increased Area Damage", statOrder = { 1699 }, level = 1, group = "AreaDamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "damage" }, tradeHash = 4251717817, }, + ["MaceAttackSpeedJewel"] = { affix = "Beating", "(6-8)% increased Attack Speed with Maces or Sceptres", statOrder = { 1259 }, level = 1, group = "MaceAttackSpeedForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHash = 2515515064, }, + ["AxeAttackSpeedJewel"] = { affix = "Cleaving", "(6-8)% increased Attack Speed with Axes", statOrder = { 1255 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3550868361, }, + ["SwordAttackSpeedJewel"] = { affix = "Fencing", "(6-8)% increased Attack Speed with Swords", statOrder = { 1261 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3293699237, }, + ["BowAttackSpeedJewel"] = { affix = "Volleying", "(6-8)% increased Attack Speed with Bows", statOrder = { 1260 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHash = 3759735052, }, + ["ClawAttackSpeedJewel"] = { affix = "Ripping", "(6-8)% increased Attack Speed with Claws", statOrder = { 1257 }, level = 1, group = "ClawAttackSpeedForJewel", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHash = 1421645223, }, + ["DaggerAttackSpeedJewel"] = { affix = "Slicing", "(6-8)% increased Attack Speed with Daggers", statOrder = { 1258 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHash = 2538566497, }, + ["WandAttackSpeedJewel"] = { affix = "Jinxing", "(6-8)% increased Attack Speed with Wands", statOrder = { 1262 }, level = 1, group = "WandAttackSpeedForJewel", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHash = 3720627346, }, + ["StaffAttackSpeedJewel"] = { affix = "Blunt", "(6-8)% increased Attack Speed with Quarterstaves", statOrder = { 1256 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHash = 3283482523, }, + ["OneHandedMeleeAttackSpeedJewel"] = { affix = "Bandit's", "(4-6)% increased Attack Speed with One Handed Melee Weapons", statOrder = { 1254 }, level = 1, group = "OneHandedMeleeAttackSpeedForJewel", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 1813451228, }, + ["TwoHandedMeleeAttackSpeedJewel"] = { affix = "Warrior's", "(4-6)% increased Attack Speed with Two Handed Melee Weapons", statOrder = { 1253 }, level = 1, group = "TwoHandedMeleeAttackSpeedForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "bow", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 1917910910, }, + ["DualWieldingAttackSpeedJewel"] = { affix = "Harmonic", "(4-6)% increased Attack Speed while Dual Wielding", statOrder = { 1250 }, level = 1, group = "AttackSpeedWhileDualWieldingForJewel", weightKey = { "shield_mod", "two_handed_mod", "default", }, weightVal = { 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHash = 4249220643, }, + ["DualWieldingCastSpeedJewel"] = { affix = "Resonant", "(3-5)% increased Cast Speed while Dual Wielding", statOrder = { 1281 }, level = 1, group = "CastSpeedWhileDualWieldingForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 1 }, modTags = { "caster", "speed" }, tradeHash = 2382196858, }, + ["ShieldAttackSpeedJewel"] = { affix = "Charging", "(4-6)% increased Attack Speed while holding a Shield", statOrder = { 1252 }, level = 1, group = "AttackSpeedWithAShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 1 }, modTags = { "attack", "speed" }, tradeHash = 3805075944, }, + ["ShieldCastSpeedJewel"] = { affix = "Warding", "(3-5)% increased Cast Speed while holding a Shield", statOrder = { 1282 }, level = 1, group = "CastSpeedWithAShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 1 }, modTags = { "caster", "speed" }, tradeHash = 1612163368, }, + ["StaffCastSpeedJewel"] = { affix = "Wright's", "(3-5)% increased Cast Speed while wielding a Staff", statOrder = { 1283 }, level = 1, group = "CastSpeedWithAStaffForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 1, 0, 0, 1 }, modTags = { "caster", "speed" }, tradeHash = 2066542501, }, + ["UnarmedAttackSpeedJewel"] = { affix = "Furious", "(6-8)% increased Unarmed Attack Speed with Melee Skills", statOrder = { 1265 }, level = 1, group = "AttackSpeedWhileUnarmedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHash = 1584440377, }, + ["AttackSpeedJewel"] = { affix = "of Berserking", "(3-5)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeedForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, + ["ProjectileSpeedJewel"] = { affix = "of Soaring", "(6-8)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "IncreasedProjectileSpeedForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "speed" }, tradeHash = 3759663284, }, + ["CastSpeedJewel"] = { affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["TrapThrowSpeedJewel"] = { affix = "Honed", "(6-8)% increased Trap Throwing Speed", statOrder = { 1597 }, level = 1, group = "TrapThrowSpeedForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 118398748, }, + ["MineLaySpeedJewel"] = { affix = "Arming", "(6-8)% increased Mine Throwing Speed", statOrder = { 1598 }, level = 1, group = "MineLaySpeedForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 1896971621, }, + ["AttackAndCastSpeedJewel"] = { affix = "of Zeal", "(2-4)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, + ["AttackAndCastSpeedJewelUniqueJewel43"] = { affix = "", "4% increased Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, + ["AttackAndCastSpeedUnique__1"] = { affix = "", "(10-15)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 75, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, + ["AttackAndCastSpeedUnique__2"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, + ["AttackAndCastSpeedUnique__3"] = { affix = "", "(6-9)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, + ["AttackAndCastSpeedUnique__4"] = { affix = "", "(6-10)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, + ["AttackAndCastSpeedUnique__5"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, + ["AttackAndCastSpeedUnique__6"] = { affix = "", "(5-7)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, + ["AttackAndCastSpeedUnique__7"] = { affix = "", "(5-8)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, + ["StrengthDexterityUnique__1"] = { affix = "", "+20 to Strength and Dexterity", statOrder = { 1075 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 538848803, }, + ["StrengthDexterityImplicitSword_1"] = { affix = "", "+50 to Strength and Dexterity", statOrder = { 1075 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 538848803, }, + ["StrengthIntelligenceUnique__1"] = { affix = "", "+20 to Strength and Intelligence", statOrder = { 1076 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1535626285, }, + ["StrengthIntelligenceUnique__2"] = { affix = "", "+(10-30) to Strength and Intelligence", statOrder = { 1076 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1535626285, }, + ["DexterityIntelligenceUnique__1__"] = { affix = "", "+20 to Dexterity and Intelligence", statOrder = { 1077 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 2300185227, }, + ["PhysicalDamageWhileHoldingAShield"] = { affix = "Flanking", "(12-14)% increased Attack Damage while holding a Shield", statOrder = { 1101 }, level = 1, group = "DamageWhileHoldingAShieldForJewel", weightKey = { "bow", "wand", "dual_wielding_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 1393393937, }, + ["FireGemCastSpeedJewel"] = { affix = "Pyromantic", "(3-5)% increased Cast Speed with Fire Skills", statOrder = { 1210 }, level = 1, group = "FireGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "elemental", "fire", "caster", "speed" }, tradeHash = 1476643878, }, + ["ColdGemCastSpeedJewel"] = { affix = "Cryomantic", "(3-5)% increased Cast Speed with Cold Skills", statOrder = { 1218 }, level = 1, group = "ColdGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "elemental", "cold", "caster", "speed" }, tradeHash = 928238845, }, + ["LightningGemCastSpeedJewel_"] = { affix = "Electromantic", "(3-5)% increased Cast Speed with Lightning Skills", statOrder = { 1223 }, level = 1, group = "LightningGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "elemental", "lightning", "caster", "speed" }, tradeHash = 1788635023, }, + ["ChaosGemCastSpeedJewel"] = { affix = "Withering", "(3-5)% increased Cast Speed with Chaos Skills", statOrder = { 1229 }, level = 1, group = "ChaosGemCastSpeedForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "speed" }, tradeHash = 2054902222, }, + ["CurseCastSpeedJewel_"] = { affix = "of Blasphemy", "Curse Skills have (5-10)% increased Cast Speed", statOrder = { 1869 }, level = 1, group = "CurseCastSpeedForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed", "curse" }, tradeHash = 2378065031, }, + ["StrengthJewel"] = { affix = "of Strength", "+(12-16) to Strength", statOrder = { 947 }, level = 1, group = "StrengthForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["DexterityJewel"] = { affix = "of Dexterity", "+(12-16) to Dexterity", statOrder = { 948 }, level = 1, group = "DexterityForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["IntelligenceJewel"] = { affix = "of Intelligence", "+(12-16) to Intelligence", statOrder = { 949 }, level = 1, group = "IntelligenceForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["StrengthDexterityJewel"] = { affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrder = { 1075 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHash = 538848803, }, + ["StrengthIntelligenceJewel"] = { affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrder = { 1076 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHash = 1535626285, }, + ["DexterityIntelligenceJewel"] = { affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrder = { 1077 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHash = 2300185227, }, + ["AllAttributesJewel"] = { affix = "of Adaption", "+(6-8) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributesForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "attribute" }, tradeHash = 1379411836, }, + ["IncreasedLifeJewel"] = { affix = "Healthy", "+(8-12) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLifeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, + ["PercentIncreasedLifeJewel"] = { affix = "Vivid", "(5-7)% increased maximum Life", statOrder = { 870 }, level = 1, group = "PercentIncreasedLifeForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "resource", "life" }, tradeHash = 983749596, }, + ["IncreasedManaJewel"] = { affix = "Learned", "+(8-12) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, + ["PercentIncreasedManaJewel"] = { affix = "Enlightened", "(8-10)% increased maximum Mana", statOrder = { 872 }, level = 1, group = "PercentIncreasedManaForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "resource", "mana" }, tradeHash = 2748665614, }, + ["IncreasedManaRegenJewel"] = { affix = "Energetic", "(12-15)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "IncreasedManaRegenForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["IncreasedEnergyShieldJewel_"] = { affix = "Glowing", "+(8-12) to maximum Energy Shield", statOrder = { 867 }, level = 1, group = "IncreasedEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, }, + ["EnergyShieldJewel"] = { affix = "Shimmering", "(6-8)% increased maximum Energy Shield", statOrder = { 868 }, level = 1, group = "EnergyShieldForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, }, + ["IncreasedLifeAndManaJewel"] = { affix = "Determined", "+(4-6) to maximum Life", "+(4-6) to maximum Mana", statOrder = { 869, 871 }, level = 1, group = "LifeAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHash = 1843765141, }, + ["PercentIncreasedLifeAndManaJewel"] = { affix = "Passionate", "(2-4)% increased maximum Life", "(4-6)% increased maximum Mana", statOrder = { 870, 872 }, level = 1, group = "PercentageLifeAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "green_herring", "resource", "life", "mana" }, tradeHash = 815489141, }, + ["EnergyShieldAndManaJewel"] = { affix = "Wise", "(2-4)% increased maximum Energy Shield", "(4-6)% increased maximum Mana", statOrder = { 868, 872 }, level = 1, group = "EnergyShieldAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHash = 90481046, }, + ["LifeAndEnergyShieldJewel"] = { affix = "Faithful", "(2-4)% increased maximum Energy Shield", "(2-4)% increased maximum Life", statOrder = { 868, 870 }, level = 1, group = "LifeAndEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 1207485992, }, + ["LifeLeechPermyriadJewel"] = { affix = "Hungering", "Leech (0.2-0.4)% of Physical Attack Damage as Life", statOrder = { 971 }, level = 1, group = "LifeLeechPermyriadForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 1 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 2557965901, }, + ["ManaLeechPermyriadJewel"] = { affix = "Thirsting", "Leech (0.2-0.4)% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 1, group = "ManaLeechPermyriadForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 1 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 707457662, }, + ["LifeOnHitJewel"] = { affix = "of Rejuvenation", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 1, group = "LifeGainPerTargetForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 1 }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, }, + ["ManaOnHitJewel"] = { affix = "of Absorption", "Gain (1-2) Mana per Enemy Hit with Attacks", statOrder = { 1433 }, level = 1, group = "ManaGainPerTargetForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 1 }, modTags = { "resource", "mana", "attack" }, tradeHash = 820939409, }, + ["EnergyShieldOnHitJewel"] = { affix = "of Focus", "Gain (2-3) Energy Shield per Enemy Hit with Attacks", statOrder = { 1436 }, level = 1, group = "EnergyShieldGainPerTargetForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "energy_shield", "defences", "attack" }, tradeHash = 211381198, }, + ["LifeRecoupJewel"] = { affix = "of Infusion", "(4-6)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "resource", "life" }, tradeHash = 1444556985, }, + ["IncreasedArmourJewel"] = { affix = "Armoured", "(14-18)% increased Armour", statOrder = { 864 }, level = 1, group = "IncreasedArmourForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 1 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, }, + ["IncreasedEvasionJewel"] = { affix = "Evasive", "(14-18)% increased Evasion Rating", statOrder = { 866 }, level = 1, group = "IncreasedEvasionForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 1 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, }, + ["ArmourEvasionJewel"] = { affix = "Fighter's", "(6-12)% increased Armour", "(6-12)% increased Evasion Rating", statOrder = { 864, 866 }, level = 1, group = "ArmourEvasionForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 855315578, }, + ["ArmourEnergyShieldJewel"] = { affix = "Paladin's", "(6-12)% increased Armour", "(2-4)% increased maximum Energy Shield", statOrder = { 864, 868 }, level = 1, group = "ArmourEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 1627905397, }, + ["EvasionEnergyShieldJewel"] = { affix = "Rogue's", "(6-12)% increased Evasion Rating", "(2-4)% increased maximum Energy Shield", statOrder = { 866, 868 }, level = 1, group = "EvasionEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 3667468782, }, + ["IncreasedDefensesJewel"] = { affix = "Defensive", "(4-6)% increased Global Defences", statOrder = { 2486 }, level = 1, group = "IncreasedDefensesForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, tradeHash = 1389153006, }, + ["ItemRarityJewel"] = { affix = "of Raiding", "(4-6)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemRarityForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHash = 3917489142, }, + ["IncreasedAccuracyJewel"] = { affix = "of Accuracy", "+(20-40) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracyForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 803737631, }, + ["PercentIncreasedAccuracyJewel"] = { affix = "of Precision", "(10-14)% increased Accuracy Rating", statOrder = { 1268 }, level = 1, group = "IncreasedAccuracyPercentForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 1 }, modTags = { "attack" }, tradeHash = 624954515, }, + ["PercentIncreasedAccuracyJewelUnique__1"] = { affix = "", "20% increased Accuracy Rating", statOrder = { 1268 }, level = 1, group = "IncreasedAccuracyPercentForJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 624954515, }, + ["AccuracyAndCritsJewel"] = { affix = "of Deadliness", "(6-10)% increased Critical Hit Chance", "(6-10)% increased Accuracy Rating", statOrder = { 933, 1268 }, level = 1, group = "AccuracyAndCritsForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 1 }, modTags = { "attack", "critical" }, tradeHash = 2639697810, }, + ["CriticalStrikeChanceJewel"] = { affix = "of Menace", "(8-12)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CritChanceForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "critical" }, tradeHash = 587431675, }, + ["CriticalStrikeMultiplierJewel"] = { affix = "of Potency", "(9-12)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CritMultiplierForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "damage", "critical" }, tradeHash = 3556824919, }, + ["CritChanceWithMaceJewel"] = { affix = "of Striking FIX ME", "(12-16)% increased Critical Hit Chance with Maces or Sceptres", statOrder = { 1301 }, level = 1, group = "CritChanceWithMaceForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHash = 107161577, }, + ["CritChanceWithAxeJewel"] = { affix = "of Biting FIX ME", "(12-16)% increased Critical Hit Chance with Axes", statOrder = { 1304 }, level = 1, group = "CritChanceWithAxeForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHash = 2560468845, }, + ["CritChanceWithSwordJewel"] = { affix = "of Stinging FIX ME", "(12-16)% increased Critical Hit Chance with Swords", statOrder = { 1300 }, level = 1, group = "CritChanceWithSwordForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHash = 2630620421, }, + ["CritChanceWithBowJewel"] = { affix = "of the Sniper FIX ME", "(12-16)% increased Critical Hit Chance with Bows", statOrder = { 1297 }, level = 1, group = "CritChanceWithBowForJewel", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHash = 2091591880, }, + ["CritChanceWithClawJewel"] = { affix = "of the Eagle FIX ME", "(12-16)% increased Critical Hit Chance with Claws", statOrder = { 1298 }, level = 1, group = "CritChanceWithClawForJewel", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHash = 3428039188, }, + ["CritChanceWithDaggerJewel"] = { affix = "of Needling FIX ME", "(12-16)% increased Critical Hit Chance with Daggers", statOrder = { 1299 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHash = 4018186542, }, + ["CritChanceWithWandJewel"] = { affix = "of Divination FIX ME", "(12-16)% increased Critical Hit Chance with Wands", statOrder = { 1303 }, level = 1, group = "CritChanceWithWandForJewel", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHash = 1729982003, }, + ["CritChanceWithStaffJewel"] = { affix = "of Tyranny FIX ME", "(12-16)% increased Critical Hit Chance with Quarterstaves", statOrder = { 1302 }, level = 1, group = "CritChanceWithStaffForJewel", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHash = 3621953418, }, + ["CritMultiplierWithMaceJewel"] = { affix = "of Crushing FIX ME", "+(8-10)% to Critical Damage Bonus with Maces or Sceptres", statOrder = { 1321 }, level = 1, group = "CritMultiplierWithMaceForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 458899422, }, + ["CritMultiplierWithAxeJewel"] = { affix = "of Execution FIX ME", "+(8-10)% to Critical Damage Bonus with Axes", statOrder = { 1322 }, level = 1, group = "CritMultiplierWithAxeForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 4219746989, }, + ["CritMultiplierWithSwordJewel"] = { affix = "of Severing FIX ME", "+(8-10)% to Critical Damage Bonus with Swords", statOrder = { 1324 }, level = 1, group = "CritMultiplierWithSwordForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 3114492047, }, + ["CritMultiplierWithBowJewel"] = { affix = "of the Hunter FIX ME", "(8-10)% increased Critical Damage Bonus with Bows", statOrder = { 1323 }, level = 1, group = "CritMultiplierWithBowForJewel", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 1712221299, }, + ["CritMultiplierWithClawJewel"] = { affix = "of the Bear FIX ME", "+(8-10)% to Critical Damage Bonus with Claws", statOrder = { 1326 }, level = 1, group = "CritMultiplierWithClawForJewel", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 2811834828, }, + ["CritMultiplierWithDaggerJewel"] = { affix = "of Assassination FIX ME", "(8-10)% increased Critical Damage Bonus with Daggers", statOrder = { 1320 }, level = 1, group = "CritMultiplierWithDaggerForJewel", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 3998601568, }, + ["CritMultiplierWithWandJewel_"] = { affix = "of Evocation FIX ME", "+(8-10)% to Critical Damage Bonus with Wands", statOrder = { 1325 }, level = 1, group = "CritMultiplierWithWandForJewel", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 1241396104, }, + ["CritMultiplierWithStaffJewel"] = { affix = "of Trauma FIX ME", "(8-10)% increased Critical Damage Bonus with Quarterstaves", statOrder = { 1327 }, level = 1, group = "CritMultiplierWithStaffForJewel", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 1661096452, }, + ["OneHandedCritChanceJewel"] = { affix = "Harming", "(14-18)% increased Critical Hit Chance with One Handed Melee Weapons", statOrder = { 1310 }, level = 1, group = "OneHandedCritChanceForJewel", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 2381842786, }, + ["TwoHandedCritChanceJewel"] = { affix = "Sundering", "(14-18)% increased Critical Hit Chance with Two Handed Melee Weapons", statOrder = { 1308 }, level = 1, group = "TwoHandedCritChanceForJewel", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 764295120, }, + ["DualWieldingCritChanceJewel"] = { affix = "Technical", "(14-18)% increased Attack Critical Hit Chance while Dual Wielding", statOrder = { 1312 }, level = 1, group = "DualWieldingCritChanceForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 3702513529, }, + ["ShieldCritChanceJewel"] = { affix = "", "(10-14)% increased Critical Hit Chance while holding a Shield", statOrder = { 1306 }, level = 1, group = "ShieldCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 1215447494, }, + ["MeleeCritChanceJewel"] = { affix = "of Weight", "(10-14)% increased Melee Critical Hit Chance", statOrder = { 1311 }, level = 1, group = "MeleeCritChanceForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 1199429645, }, + ["SpellCritChanceJewel"] = { affix = "of Annihilation", "(10-14)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCritChanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "caster", "critical" }, tradeHash = 737908626, }, + ["TrapCritChanceJewel_"] = { affix = "Inescapable", "(12-16)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 1, group = "TrapCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHash = 1192661666, }, + ["TrapCritChanceUnique__1"] = { affix = "", "(100-120)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 1, group = "TrapCritChanceForJewel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1192661666, }, + ["MineCritChanceJewel"] = { affix = "Crippling", "(12-16)% increased Critical Hit Chance with Mines", statOrder = { 1307 }, level = 1, group = "MineCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHash = 214031493, }, + ["FireCritChanceJewel"] = { affix = "Incinerating", "(14-18)% increased Critical Hit Chance with Fire Skills", statOrder = { 1313 }, level = 1, group = "FireCritChanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "fire", "critical" }, tradeHash = 1104796138, }, + ["ColdCritChanceJewel"] = { affix = "Avalanching", "(14-18)% increased Critical Hit Chance with Cold Skills", statOrder = { 1315 }, level = 1, group = "ColdCritChanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "cold", "critical" }, tradeHash = 3337344042, }, + ["LightningCritChanceJewel"] = { affix = "Thundering", "(14-18)% increased Critical Hit Chance with Lightning Skills", statOrder = { 1314 }, level = 1, group = "LightningCritChanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "lightning", "critical" }, tradeHash = 1186596295, }, + ["ElementalCritChanceJewel"] = { affix = "of the Apocalypse", "(10-14)% increased Critical Hit Chance with Elemental Skills", statOrder = { 1316 }, level = 1, group = "ElementalCritChanceForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "critical" }, tradeHash = 439950087, }, + ["ChaosCritChanceJewel"] = { affix = "Obliterating", "(12-16)% increased Critical Hit Chance with Chaos Skills", statOrder = { 1317 }, level = 1, group = "ChaosCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, tradeHash = 1424360933, }, + ["OneHandCritMultiplierJewel_"] = { affix = "Piercing", "(15-18)% increased Critical Damage Bonus with One Handed Melee Weapons", statOrder = { 1329 }, level = 1, group = "OneHandCritMultiplierForJewel", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 670153687, }, + ["TwoHandCritMultiplierJewel"] = { affix = "Rupturing", "+(15-18)% to Critical Damage Bonus with Two Handed Melee Weapons", statOrder = { 1309 }, level = 1, group = "TwoHandCritMultiplierForJewel", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 252507949, }, + ["DualWieldingCritMultiplierJewel"] = { affix = "Puncturing", "+(15-18)% to Critical Damage Bonus while Dual Wielding", statOrder = { 3811 }, level = 1, group = "DualWieldingCritMultiplierForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 2546185479, }, + ["ShieldCritMultiplierJewel"] = { affix = "", "+(6-8)% to Melee Critical Damage Bonus while holding a Shield", statOrder = { 1332 }, level = 1, group = "ShieldCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 3668589927, }, + ["MeleeCritMultiplier"] = { affix = "of Demolishing", "+(12-15)% to Melee Critical Damage Bonus", statOrder = { 1330 }, level = 1, group = "MeleeCritMultiplierForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 4237442815, }, + ["SpellCritMultiplier"] = { affix = "of Unmaking", "(12-15)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHash = 274716455, }, + ["TrapCritMultiplier"] = { affix = "Debilitating", "+(8-10)% to Critical Damage Bonus with Traps", statOrder = { 940 }, level = 1, group = "TrapCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHash = 1780168381, }, + ["MineCritMultiplier"] = { affix = "Incapacitating", "+(8-10)% to Critical Damage Bonus with Mines", statOrder = { 1333 }, level = 1, group = "MineCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHash = 2529112796, }, + ["FireCritMultiplier"] = { affix = "Infernal", "+(15-18)% to Critical Damage Bonus with Fire Skills", statOrder = { 1334 }, level = 1, group = "FireCritMultiplierForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "critical" }, tradeHash = 2307547323, }, + ["ColdCritMultiplier"] = { affix = "Arctic", "+(15-18)% to Critical Damage Bonus with Cold Skills", statOrder = { 1336 }, level = 1, group = "ColdCritMultiplierForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "critical" }, tradeHash = 915908446, }, + ["LightningCritMultiplier"] = { affix = "Surging", "+(15-18)% to Critical Damage Bonus with Lightning Skills", statOrder = { 1335 }, level = 1, group = "LightningCritMultiplierForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "critical" }, tradeHash = 2441475928, }, + ["ElementalCritMultiplier"] = { affix = "of the Elements", "+(12-15)% to Critical Damage Bonus with Elemental Skills", statOrder = { 1337 }, level = 1, group = "ElementalCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHash = 1569407745, }, + ["ChaosCritMultiplier"] = { affix = "", "+(8-10)% to Critical Damage Bonus with Chaos Skills", statOrder = { 1338 }, level = 1, group = "ChaosCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, tradeHash = 2710238363, }, + ["FireResistanceJewel"] = { affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["ColdResistanceJewel"] = { affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["LightningResistanceJewel"] = { affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["FireColdResistanceJewel"] = { affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrder = { 2454 }, level = 1, group = "FireColdResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHash = 2915988346, }, + ["FireLightningResistanceJewel"] = { affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrder = { 2455 }, level = 1, group = "FireLightningResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHash = 3441501978, }, + ["ColdLightningResistanceJewel"] = { affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrder = { 2456 }, level = 1, group = "ColdLightningResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHash = 4277795662, }, + ["AllResistancesJewel"] = { affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistancesForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "resistance" }, tradeHash = 2901986750, }, + ["ChaosResistanceJewel"] = { affix = "of Order", "+(7-13)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistanceForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, + ["StunDurationJewel"] = { affix = "of Stunning", "(10-14)% increased Stun Duration on Enemies", statOrder = { 986 }, level = 1, group = "StunDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { }, tradeHash = 2517001139, }, + ["StunRecoveryJewel"] = { affix = "of Recovery", "(25-35)% increased Stun Recovery", statOrder = { 993 }, level = 1, group = "StunRecoveryForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { }, tradeHash = 2511217560, }, + ["ManaCostReductionJewel"] = { affix = "of Efficiency", "(3-5)% reduced Mana Cost of Skills", statOrder = { 1560 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "resource", "mana" }, tradeHash = 474294393, }, + ["ManaCostReductionUniqueJewel44"] = { affix = "", "3% reduced Mana Cost of Skills", statOrder = { 1560 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 474294393, }, + ["ManaCostIncreasedUniqueCorruptedJewel3"] = { affix = "", "50% increased Mana Cost of Skills", statOrder = { 1560 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 474294393, }, + ["FasterAilmentDamageJewel"] = { affix = "Decrepifying", "Damaging Ailments deal damage (4-6)% faster", statOrder = { 5671 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "ailment" }, tradeHash = 538241406, }, + ["AuraRadiusJewel"] = { affix = "Hero's FIX ME", "(10-15)% increased Area of Effect of Aura Skills", statOrder = { 1874 }, level = 1, group = "AuraRadiusForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, tradeHash = 895264825, }, + ["CurseRadiusJewel"] = { affix = "Hexing FIX ME", "(8-10)% increased Area of Effect of Curses", statOrder = { 1875 }, level = 1, group = "CurseRadiusForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHash = 153777645, }, + ["AvoidIgniteJewel"] = { affix = "Dousing FIX ME", "(6-8)% chance to Avoid being Ignited", statOrder = { 1529 }, level = 1, group = "AvoidIgniteForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1783006896, }, + ["AvoidShockJewel"] = { affix = "Insulating FIX ME", "(6-8)% chance to Avoid being Shocked", statOrder = { 1531 }, level = 1, group = "AvoidShockForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1871765599, }, + ["AvoidFreezeJewel"] = { affix = "Thawing FIX ME", "(6-8)% chance to Avoid being Frozen", statOrder = { 1528 }, level = 1, group = "AvoidFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1514829491, }, + ["AvoidChillJewel"] = { affix = "Heating FIX ME", "(6-8)% chance to Avoid being Chilled", statOrder = { 1527 }, level = 1, group = "AvoidChillForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3483999943, }, + ["AvoidStunJewel"] = { affix = "FIX ME", "(6-8)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStunForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHash = 4262448838, }, + ["ChanceToFreezeJewel"] = { affix = "FIX ME", "(2-3)% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, }, + ["ChanceToShockJewel"] = { affix = "FIX ME", "(2-3)% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShockForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, }, + ["EnduranceChargeDurationJewel"] = { affix = "of Endurance", "(10-14)% increased Endurance Charge Duration", statOrder = { 1789 }, level = 1, group = "EnduranceChargeDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge" }, tradeHash = 1170174456, }, + ["FrenzyChargeDurationJewel"] = { affix = "of Frenzy", "(10-14)% increased Frenzy Charge Duration", statOrder = { 1791 }, level = 1, group = "FrenzyChargeDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge" }, tradeHash = 3338298622, }, + ["PowerChargeDurationJewel_"] = { affix = "of Power", "(10-14)% increased Power Charge Duration", statOrder = { 1806 }, level = 1, group = "PowerChargeDurationForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge" }, tradeHash = 3872306017, }, + ["KnockbackChanceJewel_"] = { affix = "of Fending", "(4-6)% chance to Knock Enemies Back on hit", statOrder = { 1662 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHash = 977908611, }, + ["KnockbackChanceUnique__1"] = { affix = "", "10% chance to Knock Enemies Back on hit", statOrder = { 1662 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 977908611, }, + ["BlockDualWieldingJewel"] = { affix = "Parrying", "+1% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1060 }, level = 1, group = "BlockDualWieldingForJewel", weightKey = { "staff", "two_handed_mod", "shield_mod", "default", }, weightVal = { 0, 0, 0, 1 }, modTags = { "block" }, tradeHash = 2166444903, }, + ["BlockShieldJewel"] = { affix = "Shielding", "+1% Chance to Block Attack Damage while holding a Shield", statOrder = { 1056 }, level = 1, group = "BlockShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "default", }, weightVal = { 0, 0, 1 }, modTags = { "block" }, tradeHash = 4061558269, }, + ["BlockStaffJewel"] = { affix = "Deflecting", "+1% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1059 }, level = 1, group = "BlockStaffForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "default", }, weightVal = { 0, 1, 0, 0, 0, 1, 0 }, modTags = { "block" }, tradeHash = 1778298516, }, + ["FreezeDurationJewel"] = { affix = "of the Glacier", "(12-16)% increased Chill and Freeze Duration on Enemies", statOrder = { 5264 }, level = 1, group = "FreezeDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1308198396, }, + ["ShockDurationJewel"] = { affix = "of the Storm", "(12-16)% increased Shock Duration", statOrder = { 1540 }, level = 1, group = "ShockDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3668351662, }, + ["IgniteDurationJewel"] = { affix = "of Immolation", "(3-5)% increased Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "BurnDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, }, + ["ChillAndShockEffectOnYouJewel"] = { affix = "of Insulation", "15% reduced effect of Chill and Shock on you", statOrder = { 9259 }, level = 1, group = "ChillAndShockEffectOnYouJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHash = 1984113628, }, + ["CurseEffectOnYouJewel"] = { affix = "of Hexwarding", "(25-30)% reduced effect of Curses on you", statOrder = { 1835 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "curse" }, tradeHash = 3407849389, }, + ["IgniteDurationOnYouJewel"] = { affix = "of the Flameruler", "(30-35)% reduced Ignite Duration on you", statOrder = { 996 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 986397080, }, + ["ChillEffectOnYouJewel"] = { affix = "of the Snowbreather", "(30-35)% reduced Effect of Chill on you", statOrder = { 1422 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1478653032, }, + ["ShockEffectOnYouJewel"] = { affix = "of the Stormdweller", "(30-35)% reduced effect of Shock on you", statOrder = { 9261 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3801067695, }, + ["PoisonDurationOnYouJewel"] = { affix = "of Neutralisation", "(30-35)% reduced Poison Duration on you", statOrder = { 1000 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "default", }, weightVal = { 1 }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3301100256, }, + ["BleedDurationOnYouJewel"] = { affix = "of Stemming", "(30-35)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 1, group = "ReducedBleedDuration", weightKey = { "default", }, weightVal = { 1 }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, }, + ["ManaReservationEfficiencyJewel"] = { affix = "Cerebral", "(2-3)% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 1 }, modTags = { "resource", "mana" }, tradeHash = 4237190083, }, + ["FlaskDurationJewel"] = { affix = "Prolonging", "(6-10)% increased Flask Effect Duration", statOrder = { 879 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHash = 3741323227, }, + ["FreezeChanceAndDurationJewel"] = { affix = "of Freezing", "(3-5)% chance to Freeze", "(12-16)% increased Freeze Duration on Enemies", statOrder = { 989, 1541 }, level = 1, group = "FreezeChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1936010701, }, + ["ShockChanceAndDurationJewel"] = { affix = "of Shocking", "(3-5)% chance to Shock", "(12-16)% increased Shock Duration", statOrder = { 991, 1540 }, level = 1, group = "ShockChanceAndDurationForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2971420375, }, + ["IgniteChanceAndDurationJewel"] = { affix = "of Burning", "(6-8)% increased Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1413663783, }, + ["PoisonChanceAndDurationForJewel"] = { affix = "of Poisoning", "(6-8)% increased Poison Duration", "(3-5)% chance to Poison on Hit", statOrder = { 2786, 2789 }, level = 1, group = "PoisonChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2866047695, }, + ["BleedChanceAndDurationForJewel__"] = { affix = "of Bleeding", "Attacks have (3-5)% chance to cause Bleeding", "(12-16)% increased Bleeding Duration", statOrder = { 2159, 4522 }, level = 1, group = "BleedChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 6403334, }, + ["ImpaleChanceForJewel_"] = { affix = "of Impaling", "(5-7)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4455 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "physical", "attack" }, tradeHash = 3739863694, }, + ["BurningDamageForJewel"] = { affix = "of Combusting", "(16-20)% increased Burning Damage", statOrder = { 1554 }, level = 1, group = "BurningDamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHash = 1175385867, }, + ["EnergyShieldDelayJewel"] = { affix = "Serene", "(4-6)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelayForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, }, + ["EnergyShieldRateJewel"] = { affix = "Fevered", "(6-8)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRechargeRateForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, }, + ["MinionBlockJewel"] = { affix = "of the Wall", "Minions have +(2-4)% Chance to Block Attack Damage", statOrder = { 2552 }, level = 1, group = "MinionBlockForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "block", "minion" }, tradeHash = 3374054207, }, + ["MinionLifeJewel"] = { affix = "Master's", "Minions have (8-12)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLifeForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, }, + ["MinionElementalResistancesJewel"] = { affix = "of Resilience", "Minions have +(11-15)% to all Elemental Resistances", statOrder = { 2558 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "elemental", "resistance", "minion" }, tradeHash = 1423639565, }, + ["MinionAccuracyRatingJewel"] = { affix = "of Training", "(22-26)% increased Minion Accuracy Rating", statOrder = { 8446 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "attack", "minion" }, tradeHash = 1718147982, }, + ["MinionElementalResistancesUnique__1"] = { affix = "", "Minions have +(7-10)% to all Elemental Resistances", statOrder = { 2558 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, tradeHash = 1423639565, }, + ["TotemDamageJewel"] = { affix = "Shaman's", "(12-16)% increased Totem Damage", statOrder = { 1089 }, level = 1, group = "TotemDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "damage" }, tradeHash = 3851254963, }, + ["ReducedTotemDamageUniqueJewel26"] = { affix = "", "(30-50)% reduced Totem Damage", statOrder = { 1089 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3851254963, }, + ["TotemDamageUnique__1_"] = { affix = "", "40% increased Totem Damage", statOrder = { 1089 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3851254963, }, + ["TotemLifeJewel"] = { affix = "Carved", "(8-12)% increased Totem Life", statOrder = { 1459 }, level = 1, group = "TotemLifeForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "resource", "life" }, tradeHash = 686254215, }, + ["TotemElementalResistancesJewel"] = { affix = "of Runes", "Totems gain +(6-10)% to all Elemental Resistances", statOrder = { 2442 }, level = 1, group = "TotemElementalResistancesForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "resistance" }, tradeHash = 1809006367, }, + ["JewelStrToDex"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 2671 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 2850960254, }, + ["JewelStrToDexUniqueJewel13"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 2671 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 2850960254, }, + ["DexterityUniqueJewel13"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["JewelDexToInt"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 2674 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1971303613, }, + ["JewelDexToIntUniqueJewel11"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 2674 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1971303613, }, + ["IntelligenceUniqueJewel11"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["JewelIntToStr"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 2675 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1903968940, }, + ["JewelIntToStrUniqueJewel34"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 2675 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1903968940, }, + ["StrengthUniqueJewel34"] = { affix = "", "+(16-24) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["JewelStrToInt"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 2672 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 2332369917, }, + ["JewelStrToIntUniqueJewel35"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 2672 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 2332369917, }, + ["IntelligenceUniqueJewel35"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, + ["JewelIntToDex"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 2676 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1956000455, }, + ["JewelIntToDexUniqueJewel36"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 2676 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1956000455, }, + ["DexterityUniqueJewel36"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, + ["JewelDexToStr"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 2673 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3577105420, }, + ["JewelDexToStrUniqueJewel37"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 2673 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3577105420, }, + ["StrengthUniqueJewel37"] = { affix = "", "+(16-24) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, + ["ReducedAttackAndCastSpeedUniqueGlovesStrInt4"] = { affix = "", "(20-30)% reduced Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, + ["AttackAndCastSpeedUniqueRing39"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, + ["LifeLeechLocalPermyriadUniqueOneHandMace8__"] = { affix = "", "Leeches 1% of Physical Damage as Life", statOrder = { 972 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, }, + ["AoEKnockBackOnFlaskUseUniqueFlask9_"] = { affix = "", "Knocks Back Enemies in an Area when you use a Flask", statOrder = { 653 }, level = 1, group = "AoEKnockBackOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3591397930, }, + ["AttacksCostNoManaUniqueTwoHandAxe9"] = { affix = "", "Your Attacks do not cost Mana", statOrder = { 1569 }, level = 1, group = "AttacksCostNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 4080656180, }, + ["CannotLeechOrRegenerateManaUniqueTwoHandAxe9"] = { affix = "", "Cannot Leech or Regenerate Mana", statOrder = { 2241 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 2918242917, }, + ["CannotLeechOrRegenerateManaUnique__1_"] = { affix = "", "Cannot Leech or Regenerate Mana", statOrder = { 2241 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 2918242917, }, + ["ResoluteTechniqueUniqueTwoHandAxe9"] = { affix = "", "Resolute Technique", statOrder = { 10078 }, level = 1, group = "ResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 3943945975, }, + ["JewelUniqueAllocateDisconnectedPassives"] = { affix = "", "Passives in Radius can be Allocated without being connected to your tree", statOrder = { 806 }, level = 1, group = "JewelUniqueAllocateDisconnectedPassives", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2719662643, }, + ["JewelRingRadiusValuesUnique__1"] = { affix = "", "Only affects Passives in Very Small Ring", statOrder = { 13 }, level = 1, group = "JewelRingRadiusValues", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3642528642, }, + ["JewelRingRadiusValuesUnique__2"] = { affix = "", "Only affects Passives in Medium-Large Ring", statOrder = { 13 }, level = 1, group = "JewelRingRadiusValues", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3642528642, }, + ["AllocateDisconnectedPassivesDonutUnique__1"] = { affix = "", "Passives in Radius can be Allocated without being connected to your tree", statOrder = { 806 }, level = 1, group = "AllocateDisconnectedPassivesDonut", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4077035099, }, + ["AvoidStunUniqueRingVictors"] = { affix = "", "(10-20)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, }, + ["AvoidStunUnique__1"] = { affix = "", "30% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, }, + ["AvoidElementalAilmentsUnique__1_"] = { affix = "", "30% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, }, + ["AvoidElementalAilmentsUnique__2"] = { affix = "", "(20-25)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, }, + ["LocalChanceToBleedImplicitMarakethRapier1"] = { affix = "", "15% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, + ["LocalChanceToBleedImplicitMarakethRapier2"] = { affix = "", "20% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, + ["LocalChanceToBleedUniqueDagger12"] = { affix = "", "30% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, + ["LocalChanceToBleedUniqueOneHandMace8"] = { affix = "", "30% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, + ["LocalChanceToBleedUnique__1__"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, + ["ChanceToBleedUnique__1_"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2159 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3204820200, }, + ["ChanceToBleedUnique__2__"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2159 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3204820200, }, + ["ChanceToBleedUnique__3_"] = { affix = "", "Attacks have 15% chance to cause Bleeding", statOrder = { 2159 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3204820200, }, + ["StealRareModUniqueJewel3"] = { affix = "", "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 2680 }, level = 1, group = "JewelStealRareMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3355050323, }, + ["UnarmedAreaOfEffectUniqueJewel4"] = { affix = "", "(10-15)% increased Area of Effect while Unarmed", statOrder = { 2677 }, level = 1, group = "UnarmedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2216127021, }, + ["UnarmedStrikeRangeUniqueJewel__1_"] = { affix = "", "+(3-4) to Melee Strike Range while Unarmed", statOrder = { 2698 }, level = 1, group = "UnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3273962791, }, + ["UniqueJewelMeleeToBow"] = { affix = "", "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers", statOrder = { 2687 }, level = 1, group = "UniqueJewelMeleeToBow", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2018468320, }, + ["ChaosDamageIncreasedPerIntUniqueJewel2"] = { affix = "", "5% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius", statOrder = { 2691 }, level = 1, group = "ChaosDamageIncreasedPerInt", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 3540967981, }, + ["PassivesApplyToMinionsUniqueJewel7"] = { affix = "", "Passives in Radius apply to Minions instead of you", statOrder = { 2692 }, level = 1, group = "PassivesApplyToMinionsJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2054270841, }, + ["SpellDamagePerIntelligenceUniqueStaff12"] = { affix = "", "2% increased Spell Damage per 10 Intelligence", statOrder = { 2395 }, level = 1, group = "SpellDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2818518881, }, + ["NearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { affix = "", "Culling Strike", statOrder = { 1700 }, level = 1, group = "GrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2524254339, }, + ["NearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "IncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3917489142, }, + ["NearbyAlliesHaveCullingStrikeUnique__1"] = { affix = "", "Culling Strike", statOrder = { 1700 }, level = 1, group = "GrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2524254339, }, + ["NearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "IncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3917489142, }, + ["NearbyAlliesHaveCriticalStrikeMultiplierUnique__1"] = { affix = "", "50% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3556824919, }, + ["LifeOnCorpseRemovalUniqueJewel14"] = { affix = "", "Recover 2% of maximum Life when you Consume a corpse", statOrder = { 2678 }, level = 1, group = "LifeOnCorpseRemoval", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2715345125, }, + ["TotemLifePerStrengthUniqueJewel15"] = { affix = "", "3% increased Totem Life per 10 Strength Allocated in Radius", statOrder = { 2679 }, level = 1, group = "TotemLifePerStrengthInRadius", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 768628581, }, + ["TotemsCannotBeStunnedUniqueJewel15"] = { affix = "", "Totems cannot be Stunned", statOrder = { 2684 }, level = 1, group = "TotemsCannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 335735137, }, + ["FireDamagePerBuffUniqueJewel17"] = { affix = "", "Adds (3-5) to (8-12) Fire Attack Damage per Buff on you", statOrder = { 1150 }, level = 1, group = "FireDamagePerBuff", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 761505024, }, + ["FireSpellDamagePerBuffUniqueJewel17"] = { affix = "", "Adds (2-3) to (5-8) Fire Spell Damage per Buff on you", statOrder = { 1151 }, level = 1, group = "FireSpellDamagePerBuff", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 3434279150, }, + ["MinionLifeRecoveryOnBlockUniqueJewel18"] = { affix = "", "Minions Recover 2% of their maximum Life when they Block", statOrder = { 2683 }, level = 1, group = "MinionLifeRecoveryOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life", "minion" }, tradeHash = 676967140, }, + ["MinionLifeRecoveryOnBlockUnique__1"] = { affix = "", "Minions Recover 10% of their maximum Life when they Block", statOrder = { 2683 }, level = 1, group = "MinionLifeRecoveryOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life", "minion" }, tradeHash = 676967140, }, + ["IncreasedDamageWhileLeechingLifeUniqueJewel19"] = { affix = "", "(25-30)% increased Damage while Leeching", statOrder = { 2685 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 310246444, }, + ["IncreasedDamageWhileLeechingUnique__1"] = { affix = "", "(30-40)% increased Damage while Leeching", statOrder = { 2685 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 310246444, }, + ["IncreasedDamageWhileLeechingUnique__2__"] = { affix = "", "(15-25)% increased Damage while Leeching", statOrder = { 2685 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 310246444, }, + ["MovementVelocityWhileIgnitedUniqueJewel20"] = { affix = "", "(10-20)% increased Movement Speed while Ignited", statOrder = { 2460 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 581625445, }, + ["MovementVelocityWhileIgnitedUnique__1"] = { affix = "", "10% increased Movement Speed while Ignited", statOrder = { 2460 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 581625445, }, + ["MovementVelocityWhileIgnitedUnique__2"] = { affix = "", "(10-20)% increased Movement Speed while Ignited", statOrder = { 2460 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 581625445, }, + ["FortifyOnMeleeHitUniqueJewel22"] = { affix = "", "Melee Hits have 10% chance to Fortify", statOrder = { 1938 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1166417447, }, + ["DamageTakenUniqueJewel24"] = { affix = "", "10% increased Damage taken", statOrder = { 1888 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3691641145, }, + ["IncreasedDamagePerMagicItemJewel25"] = { affix = "", "(20-25)% increased Damage for each Magic Item Equipped", statOrder = { 2699 }, level = 1, group = "IncreasedDamagePerMagicItem", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 886366428, }, + ["AdditionalTotemProjectilesUniqueJewel26"] = { affix = "", "Totems fire 2 additional Projectiles", statOrder = { 2701 }, level = 1, group = "AdditionalTotemProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 736847554, }, + ["SpellDamageWithNoManaReservedUniqueJewel30"] = { affix = "", "(40-60)% increased Spell Damage while no Mana is Reserved", statOrder = { 2702 }, level = 1, group = "SpellDamageWithNoManaReserved", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 3779823630, }, + ["AllAttributesPerAssignedKeystoneUniqueJewel32"] = { affix = "", "4% increased Attributes per allocated Keystone", statOrder = { 2705 }, level = 1, group = "AllAttributesPerAssignedKeystone", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1212897608, }, + ["LifeOnHitPerStatusAilmentOnEnemyUniqueJewel33"] = { affix = "", "Gain 3 Life per Elemental Ailment on Enemies Hit with Attacks", statOrder = { 2694 }, level = 1, group = "LifeOnHitPerStatusAilmentOnEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHash = 1609999275, }, + ["LifeOnSpellHitPerStatusAilmentOnEnemyUniqueJewel33"] = { affix = "", "Gain 3 Life per Elemental Ailment on Enemies Hit with Spells", statOrder = { 2695 }, level = 1, group = "LifeOnSpellHitPerStatusAilmentOnEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 622657842, }, + ["ItemLimitUniqueJewel8"] = { affix = "", "Survival", statOrder = { 9994 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2995661301, }, + ["ItemLimitUniqueJewel9"] = { affix = "", "Survival", statOrder = { 9994 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2995661301, }, + ["ItemLimitUniqueJewel10"] = { affix = "", "Survival", statOrder = { 9994 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2995661301, }, + ["DisplayNearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have Culling Strike", statOrder = { 2202 }, level = 1, group = "DisplayGrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1560540713, }, + ["DisplayNearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have 30% increased Item Rarity", statOrder = { 1391 }, level = 1, group = "DisplayIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1722463112, }, + ["DisplayNearbyAlliesHaveCriticalStrikeMultiplierTwoHandAxe9"] = { affix = "", "Nearby Allies have +50% to Critical Damage Bonus", statOrder = { 7204 }, level = 1, group = "DisplayGrantsCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3152714748, }, + ["DisplayNearbyAlliesHaveFortifyTwoHandAxe9"] = { affix = "", "Nearby Allies have +10 Fortification", statOrder = { 7206 }, level = 1, group = "DisplayGrantsFortify", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 244825991, }, + ["AdditionalVaalSoulOnKillUniqueCorruptedJewel4_"] = { affix = "", "(20-30)% chance to gain an additional Vaal Soul on Kill", statOrder = { 2722 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHash = 1962922582, }, + ["VaalSkillDurationUniqueCorruptedJewel5"] = { affix = "", "(15-20)% increased Vaal Skill Effect Duration", statOrder = { 2723 }, level = 1, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHash = 547412107, }, + ["VaalSkillRefundChanceUniqueCorruptedJewel5"] = { affix = "", "Vaal Skills have (15-20)% chance to regain consumed Souls when used", statOrder = { 9823 }, level = 1, group = "VaalSkillRefundChance", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHash = 2833218772, }, + ["VaalSkillCriticalStrikeChanceCorruptedJewel6"] = { affix = "", "(80-120)% increased Vaal Skill Critical Hit Chance", statOrder = { 2725 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical", "vaal" }, tradeHash = 3165492062, }, + ["VaalSkillCriticalStrikeMultiplierCorruptedJewel6"] = { affix = "", "+(22-30)% to Vaal Skill Critical Damage Bonus", statOrder = { 2726 }, level = 1, group = "VaalSkillCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical", "vaal" }, tradeHash = 2070982674, }, + ["AttackDamageUniqueJewel42"] = { affix = "", "10% increased Attack Damage", statOrder = { 1093 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2843214518, }, + ["IncreasedFlaskEffectUniqueJewel45"] = { affix = "", "Flasks applied to you have 8% increased Effect", statOrder = { 2398 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 114734841, }, + ["CurseEffectivenessUniqueJewel45"] = { affix = "", "4% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2353576063, }, + ["CurseEffectivenessUnique__2_"] = { affix = "", "(15-20)% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2353576063, }, + ["CurseEffectivenessUnique__3_"] = { affix = "", "(5-10)% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2353576063, }, + ["CurseEffectivenessUnique__4"] = { affix = "", "(10-15)% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2353576063, }, + ["ManaCostOfTotemAurasUniqueCorruptedJewel8"] = { affix = "", "60% reduced Cost of Aura Skills that summon Totems", statOrder = { 2728 }, level = 1, group = "ManaCostOfTotemAuras", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2701327257, }, + ["AdditionalVaalSoulOnShatterUniqueCorruptedJewel7"] = { affix = "", "50% chance to gain an additional Vaal Soul per Enemy Shattered", statOrder = { 2727 }, level = 1, group = "AdditionalVaalSoulOnShatter", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHash = 1633381214, }, + ["IncreasedCorruptedGemExperienceUniqueCorruptedJewel9"] = { affix = "", "10% increased Experience Gain for Corrupted Gems", statOrder = { 2729 }, level = 1, group = "IncreasedCorruptedGemExperience", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 47271484, }, + ["CorruptThresholdSoulEaterOnVaalSkillUseUniqueCorruptedJewel11"] = { affix = "", "With 5 Corrupted Items Equipped: Gain Soul Eater for 10 seconds on Vaal Skill use", statOrder = { 2730 }, level = 1, group = "CorruptThresholdSoulEaterOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHash = 1677654268, }, + ["ManaGainedOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Recover 1% of maximum Mana on Kill", statOrder = { 1443 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1604736568, }, + ["LifeLostOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Lose 1% of maximum Life on Kill", statOrder = { 1442 }, level = 1, group = "LifeLostOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 751813227, }, + ["EnergyShieldLostOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Lose 1% of maximum Energy Shield on Kill", statOrder = { 1444 }, level = 1, group = "EnergyShieldLostOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1699499433, }, + ["PunishmentSelfCurseOnKillUniqueCorruptedJewel13"] = { affix = "", "(20-30)% chance to Curse you with Punishment on Kill", statOrder = { 2738 }, level = 1, group = "PunishmentSelfCurseOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1556263668, }, + ["AdditionalCurseOnSelfUniqueCorruptedJewel13"] = { affix = "", "An additional Curse can be applied to you", statOrder = { 1834 }, level = 1, group = "AdditionalCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3112863846, }, + ["IncreasedDamagePerCurseOnSelfCorruptedJewel13_"] = { affix = "", "(10-20)% increased Damage per Curse on you", statOrder = { 1110 }, level = 1, group = "IncreasedDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1019020209, }, + ["DamageTakenOnFullESUniqueCorruptedJewel15"] = { affix = "", "10% increased Damage taken while on Full Energy Shield", statOrder = { 1894 }, level = 1, group = "DamageTakenOnFullES", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 969865219, }, + ["DamageTakenOnFullESUnique__1"] = { affix = "", "15% increased Damage taken while on Full Energy Shield", statOrder = { 1894 }, level = 1, group = "DamageTakenOnFullES", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 969865219, }, + ["ConvertLightningToColdUniqueRing34"] = { affix = "", "40% of Lightning Damage Converted to Cold Damage", statOrder = { 1639 }, level = 25, group = "ConvertLightningToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHash = 3627052716, }, + ["SpellChanceToShockFrozenEnemiesUniqueRing34"] = { affix = "", "Your spells have 100% chance to Shock against Frozen Enemies", statOrder = { 2564 }, level = 1, group = "SpellChanceToShockFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "caster", "ailment" }, tradeHash = 288651645, }, + ["ClawPhysDamageAndEvasionPerDexUniqueJewel47"] = { affix = "", "1% increased Evasion Rating per 3 Dexterity Allocated in Radius", "1% increased Claw Physical Damage per 3 Dexterity Allocated in Radius", "1% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius", statOrder = { 2740, 2741, 2756 }, level = 1, group = "ClawPhysDamageAndEvasionPerDex", weightKey = { }, weightVal = { }, modTags = { "evasion", "physical_damage", "defences", "damage", "physical", "attack" }, tradeHash = 869956483, }, + ["ColdAndPhysicalNodesInRadiusSwapPropertiesUniqueJewel48_"] = { affix = "", "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage", "Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage", statOrder = { 2743, 2744 }, level = 1, group = "ColdAndPhysicalNodesInRadiusSwapProperties", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 3834234392, }, + ["AllDamageInRadiusBecomesFireUniqueJewel49"] = { affix = "", "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage", statOrder = { 2742 }, level = 1, group = "AllDamageInRadiusBecomesFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 1421711266, }, + ["EnergyShieldInRadiusIncreasesArmourUniqueJewel50"] = { affix = "", "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value", statOrder = { 2745 }, level = 1, group = "EnergyShieldInRadiusIncreasesArmour", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3208876368, }, + ["LifeInRadiusBecomesEnergyShieldAtHalfValueUniqueJewel51"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield", statOrder = { 2746 }, level = 1, group = "LifeInRadiusBecomesEnergyShieldAtHalfValue", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 1380481398, }, + ["LifePerIntelligenceInRadusUniqueJewel52"] = { affix = "", "Adds 1 to Maximum Life per 3 Intelligence Allocated in Radius", statOrder = { 2751 }, level = 1, group = "LifePerIntelligenceInRadus", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3833699760, }, + ["AddedLightningDamagePerDexInRadiusUniqueJewel53"] = { affix = "", "Adds 1 to 2 Lightning damage to Attacks", "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius", statOrder = { 846, 2750 }, level = 1, group = "AddedLightningDamagePerDexInRadius", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2402140837, }, + ["LifePassivesBecomeManaPassivesInRadiusUniqueJewel54"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value", statOrder = { 2754 }, level = 1, group = "LifePassivesBecomeManaPassivesInRadius", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 3364361256, }, + ["DexterityAndIntelligenceGiveStrengthMeleeBonusInRadiusUniqueJewel55"] = { affix = "", "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus", statOrder = { 2755 }, level = 1, group = "DexterityAndIntelligenceGiveStrengthMeleeBonusInRadius", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1880450502, }, + ["LifeGainOnEndurangeChargeConsumptionUniqueBodyStrInt6"] = { affix = "", "Gain 100 Life when you lose an Endurance Charge", statOrder = { 2638 }, level = 1, group = "LifeGainOnEnduranceChargeConsumption", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3915702459, }, + ["SummonTotemCastSpeedUnique__1"] = { affix = "", "(14-20)% increased Totem Placement speed", statOrder = { 2250 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, }, + ["SummonTotemCastSpeedUnique__2"] = { affix = "", "(30-50)% increased Totem Placement speed", statOrder = { 2250 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, }, + ["SummonTotemCastSpeedImplicit1"] = { affix = "", "(20-30)% increased Totem Placement speed", statOrder = { 2250 }, level = 93, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, }, + ["AttackDamageAgainstBleedingUniqueDagger11"] = { affix = "", "40% increased Attack Damage against Bleeding Enemies", statOrder = { 2161 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3944782785, }, + ["AttackDamageAgainstBleedingUniqueOneHandMace8"] = { affix = "", "30% increased Attack Damage against Bleeding Enemies", statOrder = { 2161 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3944782785, }, + ["AttackDamageAgainstBleedingUnique__1__"] = { affix = "", "(25-40)% increased Attack Damage against Bleeding Enemies", statOrder = { 2161 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3944782785, }, + ["FlammabilityOnHitUniqueOneHandAxe7"] = { affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2186 }, level = 1, group = "FlammabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 654274615, }, + ["FlammabilityOnHitUnique__1"] = { affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2199 }, level = 1, group = "FlammabilityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 338121249, }, + ["LightningWarpSkillUniqueOneHandAxe8"] = { affix = "", "Grants Level 1 Lightning Warp Skill", statOrder = { 513 }, level = 1, group = "LightningWarpSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 243713911, }, + ["StunAvoidanceUniqueOneHandSword13"] = { affix = "", "20% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, }, + ["StunAvoidanceUnique___1"] = { affix = "", "20% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, }, + ["SupportedByMultistrikeUniqueOneHandSword13"] = { affix = "", "Socketed Gems are supported by Level 1 Multistrike", statOrder = { 341 }, level = 1, group = "SupportedByMultistrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2501237765, }, + ["MeleeDamageAgainstBleedingEnemiesUniqueOneHandMace6"] = { affix = "", "30% increased Melee Damage against Bleeding Enemies", statOrder = { 2162 }, level = 1, group = "MeleeDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1282978314, }, + ["MeleeDamageAgainstBleedingEnemiesUnique__1"] = { affix = "", "50% increased Melee Damage against Bleeding Enemies", statOrder = { 2162 }, level = 1, group = "MeleeDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1282978314, }, + ["SpellAddedFireDamageUniqueWand10"] = { affix = "", "Adds (4-6) to (8-12) Fire Damage to Spells", statOrder = { 1241 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, }, + ["SpellAddedFireDamageUnique__1"] = { affix = "", "Adds 100 to 100 Fire Damage to Spells", statOrder = { 1241 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, }, + ["SpellAddedFireDamageUnique__2_"] = { affix = "", "Adds (20-30) to 40 Fire Damage to Spells", statOrder = { 1241 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, }, + ["SpellAddedFireDamageUnique__3"] = { affix = "", "Adds (20-24) to (38-46) Fire Damage to Spells", statOrder = { 1241 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, }, + ["SpellAddedFireDamageUnique__4"] = { affix = "", "Adds (2-3) to (5-6) Fire Damage to Spells", statOrder = { 1241 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, }, + ["SpellAddedFireDamageUnique__5"] = { affix = "", "Battlemage", statOrder = { 10032 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 448903047, }, + ["SpellAddedFireDamageUnique__6_"] = { affix = "", "Adds (14-16) to (30-32) Fire Damage to Spells", statOrder = { 1241 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, }, + ["SpellAddedColdDamageUniqueBootsStrDex5"] = { affix = "", "Adds (25-30) to (40-50) Cold Damage to Spells", statOrder = { 1242 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, }, + ["SpellAddedColdDamageUnique__1"] = { affix = "", "Adds 100 to 100 Cold Damage to Spells", statOrder = { 1242 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, }, + ["SpellAddedColdDamageUnique__2"] = { affix = "", "Adds (20-30) to 40 Cold Damage to Spells", statOrder = { 1242 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, }, + ["SpellAddedColdDamageUnique__3"] = { affix = "", "Adds (2-3) to (5-6) Cold Damage to Spells", statOrder = { 1242 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, }, + ["SpellAddedColdDamageUnique__4"] = { affix = "", "Adds (40-60) to (90-110) Cold Damage to Spells", statOrder = { 1242 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, }, + ["SpellAddedColdDamageUnique__5"] = { affix = "", "Adds (35-39) to (54-60) Cold Damage to Spells", statOrder = { 1242 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, }, + ["SpellAddedColdDamageUnique__6__"] = { affix = "", "Adds (10-12) to (24-28) Cold Damage to Spells", statOrder = { 1242 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, }, + ["SpellAddedColdDamageUnique__7"] = { affix = "", "Adds (120-140) to (150-170) Cold Damage to Spells", statOrder = { 1242 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, }, + ["SpellAddedLightningDamageUnique__1"] = { affix = "", "Adds 100 to 100 Lightning Damage to Spells", statOrder = { 1243 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, }, + ["SpellAddedLightningDamageUnique__2"] = { affix = "", "Adds (1-10) to (150-200) Lightning Damage to Spells", statOrder = { 1243 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, }, + ["SpellAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (10-12) Lightning Damage to Spells", statOrder = { 1243 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, }, + ["SpellAddedLightningDamageUnique__4"] = { affix = "", "Adds 1 to (60-70) Lightning Damage to Spells", statOrder = { 1243 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, }, + ["SpellAddedLightningDamageUnique__5"] = { affix = "", "Adds (26-35) to (95-105) Lightning Damage to Spells", statOrder = { 1243 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, }, + ["SpellAddedLightningDamageUnique__6_"] = { affix = "", "Adds (13-18) to (50-56) Lightning Damage to Spells", statOrder = { 1243 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, }, + ["SpellAddedLightningDamageUnique__7"] = { affix = "", "Adds 1 to (60-68) Lightning Damage to Spells", statOrder = { 1243 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, }, + ["SpellAddedLightningDamageTwoHandUniqueStaff8d"] = { affix = "", "Adds (5-15) to (100-140) Lightning Damage to Spells", statOrder = { 1243 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, }, + ["IncreasedDamagePerCurseOnSelfUniqueCorruptedJewel8"] = { affix = "", "(10-20)% increased Damage per Curse on you", statOrder = { 1110 }, level = 1, group = "IncreasedDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1019020209, }, + ["LocalAddedChaosDamageImplicitE1"] = { affix = "", "Adds (23-33) to (45-60) Chaos damage", statOrder = { 1227 }, level = 30, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, + ["LocalAddedChaosDamageImplicitE2"] = { affix = "", "Adds (38-48) to (70-90) Chaos damage", statOrder = { 1227 }, level = 50, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, + ["LocalAddedChaosDamageImplicitE3_"] = { affix = "", "Adds (40-55) to (80-98) Chaos damage", statOrder = { 1227 }, level = 70, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, + ["DamageWithMovementSkillsUniqueClaw9"] = { affix = "", "20% increased Damage with Movement Skills", statOrder = { 1266 }, level = 1, group = "DamageWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 856021430, }, + ["DamageWithMovementSkillsUniqueBodyDex5"] = { affix = "", "(60-100)% increased Damage with Movement Skills", statOrder = { 1266 }, level = 1, group = "DamageWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 856021430, }, + ["AttackSpeedWithMovementSkillsUniqueClaw9"] = { affix = "", "15% increased Attack Speed with Movement Skills", statOrder = { 1267 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 3683134121, }, + ["AttackSpeedWithMovementSkillsUniqueBodyDex5"] = { affix = "", "(10-20)% increased Attack Speed with Movement Skills", statOrder = { 1267 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 3683134121, }, + ["LifeGainedOnKillingIgnitedEnemiesUniqueWand10_"] = { affix = "", "Gain 10 Life per Ignited Enemy Killed", statOrder = { 1441 }, level = 1, group = "LifeGainedOnKillingIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 893903361, }, + ["LifeGainedOnKillingIgnitedEnemiesUnique__1"] = { affix = "", "Gain (200-300) Life per Ignited Enemy Killed", statOrder = { 1441 }, level = 1, group = "LifeGainedOnKillingIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 893903361, }, + ["DamageTakenFromSkeletonsUniqueOneHandSword12_"] = { affix = "", "10% increased Damage taken from Skeletons", statOrder = { 1897 }, level = 1, group = "DamageTakenFromSkeletons", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 705686721, }, + ["DamageTakenFromGhostsUniqueOneHandSword12"] = { affix = "", "10% increased Damage taken from Ghosts", statOrder = { 1898 }, level = 1, group = "DamageTakenFromGhosts", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2156764291, }, + ["CannotBeShockedWhileFrozenUniqueStaff14"] = { affix = "", "You cannot be Shocked while Frozen", statOrder = { 2547 }, level = 1, group = "CannotBeShockedWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 798853218, }, + ["PhysicalDamageWhileFrozenUnique___1"] = { affix = "", "100% increased Global Physical Damage while Frozen", statOrder = { 2943 }, level = 1, group = "PhysicalDamageWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2614654450, }, + ["AttacksThatStunCauseBleedingUnique__1"] = { affix = "", "Hits that Stun inflict Bleeding", statOrder = { 2154 }, level = 1, group = "AttacksThatStunCauseBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1454946771, }, + ["GrantEnemiesOnslaughtOnKillUnique__1"] = { affix = "", "5% chance to grant Onslaught to nearby Enemies on Kill", statOrder = { 2977 }, level = 1, group = "GrantEnemiesOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1924591908, }, + ["OnslaugtOnKillPercentChanceUnique__1"] = { affix = "", "10% chance to gain Onslaught for 10 seconds on kill", statOrder = { 5159 }, level = 1, group = "OnslaugtOnKill10SecondsPercentChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2453026567, }, + ["MaximumLifeOnKillPercentUnique__1"] = { affix = "", "Recover 1% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, + ["MaximumLifeOnKillPercentUnique__2"] = { affix = "", "Recover (1-3)% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, + ["MaximumLifeOnKillPercentUnique__3__"] = { affix = "", "Recover (3-5)% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, + ["MaximumLifeOnKillPercentUnique__4_"] = { affix = "", "Recover 1% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, + ["MaximumLifeOnKillPercentUnique__5"] = { affix = "", "Recover (3-5)% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, + ["MaximumManaOnKillPercentUnique__1"] = { affix = "", "Recover (1-3)% of maximum Mana on Kill", statOrder = { 1439 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1030153674, }, + ["MaximumEnergyShieldOnKillPercentUnique__1"] = { affix = "", "Recover (3-5)% of maximum Energy Shield on Kill", statOrder = { 1438 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2406605753, }, + ["MaximumEnergyShieldOnKillPercentUnique__2"] = { affix = "", "Recover 1% of maximum Energy Shield on Kill", statOrder = { 1438 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2406605753, }, + ["BurningArrowThresholdJewelUnique__1"] = { affix = "", "+10% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 1, group = "BurningArrowGroundTarAndFire", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1038686782, }, + ["DisplayManifestWeaponUnique__1"] = { affix = "", "Triggers Level 15 Manifest Dancing Dervishes on Rampage", "Cannot be used while Manifested", "Manifested Dancing Dervishes die when Rampage ends", statOrder = { 2939, 2940, 2941 }, level = 1, group = "DisplayManifestWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 855357523, }, + ["DisplayManifestWeaponUnique__2"] = { affix = "", "Triggers Level 15 Manifest Dancing Dervishes on Rampage", "Cannot be used while Manifested", "Manifested Dancing Dervishes die when Rampage ends", statOrder = { 2939, 2940, 2941 }, level = 1, group = "DisplayManifestWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 855357523, }, + ["BarrageThresholdUnique__1"] = { affix = "", "With at least 40 Dexterity in Radius, Barrage fires an additional 6 Projectiles simultaneously on the first and final attacks", statOrder = { 2870 }, level = 1, group = "BarrageThreshold", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3988316455, }, + ["GroundSlamThresholdUnique__1"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam", "has a 50% increased angle", statOrder = { 2864, 2864.1 }, level = 1, group = "GroundSlamThreshold", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3902917146, }, + ["GroundSlamThresholdUnique__2"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam has a 35% chance", "to grant an Endurance Charge when you Stun an Enemy", statOrder = { 2863, 2863.1 }, level = 1, group = "GroundSlamThreshold2", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1559361866, }, + ["SummonSkeletonsThresholdUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages", statOrder = { 2853 }, level = 1, group = "SummonSkeletonsThreshold", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2077634227, }, + ["AddedDamagePerDexterityUnique__1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity", statOrder = { 2987 }, level = 1, group = "AddedDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2066426995, }, + ["AddedDamagePerStrengthUnique__1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks per 25 Strength", statOrder = { 4412 }, level = 1, group = "AddedDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 787185456, }, + ["DisplayBlindAuraUnique__1"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 2988 }, level = 1, group = "DisplayBlindAura", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2826979740, }, + ["DisplayNearbyEnemiesAreSlowedUnique__1"] = { affix = "", "Nearby Enemies are Hindered, with 25% reduced Movement Speed", statOrder = { 2995 }, level = 1, group = "DisplayNearbyEnemiesAreSlowed", weightKey = { }, weightVal = { }, modTags = { "speed", "aura" }, tradeHash = 607839150, }, + ["DisplaySupportedByHypothermiaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Hypothermia", statOrder = { 364 }, level = 1, group = "DisplaySupportedByHypothermia", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 13669281, }, + ["DisplaySupportedByIceBiteUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Ice Bite", statOrder = { 365 }, level = 1, group = "DisplaySupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1384629003, }, + ["DisplaySupportedByIceBiteUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Ice Bite", statOrder = { 365 }, level = 1, group = "DisplaySupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1384629003, }, + ["DisplaySupportedByColdPenetrationUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Cold Penetration", statOrder = { 366 }, level = 1, group = "DisplaySupportedByColdPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1991958615, }, + ["DisplaySupportedByManaLeechUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Mana Leech", statOrder = { 367 }, level = 1, group = "DisplaySupportedByManaLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2608615082, }, + ["DisplaySupportedByAddedColdDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Added Cold Damage", statOrder = { 368 }, level = 1, group = "DisplaySupportedByAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 4020144606, }, + ["DisplaySupportedByReducedManaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 369 }, level = 1, group = "DisplaySupportedByReducedMana", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 749770518, }, + ["DisplaySupportedByReducedManaUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 369 }, level = 1, group = "DisplaySupportedByReducedMana", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 749770518, }, + ["FlaskConsumesFrenzyChargesUnique__1"] = { affix = "", "Consumes Frenzy Charges on use", statOrder = { 642 }, level = 1, group = "FlaskConsumesFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "flask", "frenzy_charge" }, tradeHash = 570159344, }, + ["CriticalChanceAgainstBlindedEnemiesUnique__1"] = { affix = "", "(120-140)% increased Critical Hit Chance against Blinded Enemies", statOrder = { 2998 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1939202111, }, + ["CriticalChanceAgainstBlindedEnemiesUnique__2__"] = { affix = "", "(30-50)% increased Critical Hit Chance against Blinded Enemies", statOrder = { 2998 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1939202111, }, + ["DamageAgainstNearEnemiesUnique__1"] = { affix = "", "100% increased Damage with Hits against Hindered Enemies", statOrder = { 3663 }, level = 1, group = "DamageAgainstNearEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 528422616, }, + ["BeltSoulEaterDuringFlaskEffect__1"] = { affix = "", "Gain Soul Eater during any Flask Effect", statOrder = { 3018 }, level = 57, group = "BeltSoulEaterDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3968454273, }, + ["BeltSoulsRemovedOnFlaskUse__1"] = { affix = "", "Lose all Eaten Souls when you use a Flask", statOrder = { 3019 }, level = 1, group = "BeltSoulsRemovedOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3577316952, }, + ["FireDamageToNearbyEnemiesOnKillUnique"] = { affix = "", "Trigger Level 1 Fire Burst on Kill", statOrder = { 543 }, level = 1, group = "FireDamageToNearbyEnemiesOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4240751513, }, + ["SocketedAurasReserveNoManaUnique__1"] = { affix = "", "Socketed Gems have no Reservation", "Your Blessing Skills are Disabled", statOrder = { 379, 379.1 }, level = 48, group = "SocketedAurasReserveNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHash = 2497009514, }, + ["ItemGrantsIllusoryWarpUnique__1"] = { affix = "", "Grants Level 20 Illusory Warp Skill", statOrder = { 448 }, level = 1, group = "ItemGrantsIllusoryWarp", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3279574030, }, + ["LocalDoubleImplicitMods"] = { affix = "", "Implicit Modifier magnitudes are doubled", statOrder = { 49 }, level = 65, group = "LocalModifiesImplicitMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2304729532, }, + ["LocalTripleImplicitModsUnique__1__"] = { affix = "", "Implicit Modifier magnitudes are tripled", statOrder = { 49 }, level = 1, group = "LocalModifiesImplicitMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2304729532, }, + ["UnarmedDamageVsBleedingEnemiesUnique__1"] = { affix = "", "100% increased Damage with Unarmed Attacks against Bleeding Enemies", statOrder = { 3146 }, level = 1, group = "UnarmedDamageVsBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3919199754, }, + ["ClawDamageModsAlsoAffectUnarmedUnique__1"] = { affix = "", "Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills", statOrder = { 3150 }, level = 1, group = "ClawDamageModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2865232420, }, + ["BaseUnarmedCriticalStrikeChanceUnique__1"] = { affix = "", "+7% to Unarmed Melee Attack Critical Hit Chance", statOrder = { 3149 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3613173483, }, + ["BaseUnarmedCriticalStrikeChanceUnique__2"] = { affix = "", "+(0.1-1.1)% to Unarmed Melee Attack Critical Hit Chance", statOrder = { 3149 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3613173483, }, + ["LifeGainVsBleedingEnemiesUnique__1"] = { affix = "", "Gain 30 Life per Bleeding Enemy Hit", statOrder = { 3148 }, level = 1, group = "LifeGainVsBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3148570142, }, + ["SummonWolfOnKillUnique__1"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 566 }, level = 62, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1468606528, }, + ["SummonWolfOnKillUnique__1New"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 566 }, level = 25, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1468606528, }, + ["SummonWolfOnKillUnique__2_"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 566 }, level = 1, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1468606528, }, + ["SummonWolfOnCritUnique__1"] = { affix = "", "20% chance to Trigger Level 25 Summon Spectral Wolf on Critical Hit with this Weapon", statOrder = { 527 }, level = 1, group = "SummonWolfOnCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHash = 4169720975, }, + ["SwordPhysicalAttackSpeedUnique__1"] = { affix = "", "35% increased Attack Speed with Swords", statOrder = { 1261 }, level = 80, group = "SwordAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 3293699237, }, + ["AxePhysicalDamageUnique__1"] = { affix = "", "80% increased Physical Damage with Axes", statOrder = { 1171 }, level = 80, group = "AxePhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2008219439, }, + ["DualWieldingPhysicalDamageUnique__1"] = { affix = "", "40% increased Physical Attack Damage while Dual Wielding", statOrder = { 1155 }, level = 1, group = "DualWieldingPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1274831335, }, + ["ProjectilesForkUnique____1"] = { affix = "", "Arrows Fork", statOrder = { 3159 }, level = 70, group = "ArrowsFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2421436896, }, + ["ClawAttackSpeedModsAlsoAffectUnarmed__1"] = { affix = "", "Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills", statOrder = { 3151 }, level = 1, group = "ClawAttackSpeedModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2988055461, }, + ["ClawCritModsAlsoAffectUnarmed__1"] = { affix = "", "Modifiers to Claw Critical Hit Chance also apply to Unarmed Critical Hit Chance with Melee Skills", statOrder = { 3152 }, level = 35, group = "ClawCritModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 531932482, }, + ["EnergyShieldDelayDuringFlaskEffect__1"] = { affix = "", "50% slower start of Energy Shield Recharge during any Flask Effect", statOrder = { 3155 }, level = 35, group = "EnergyShieldDelayDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "flask", "defences" }, tradeHash = 1912660783, }, + ["ESRechargeRateDuringFlaskEffect__1"] = { affix = "", "(150-200)% increased Energy Shield Recharge Rate during any Flask Effect", statOrder = { 3157 }, level = 1, group = "ESRechargeRateDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "flask", "defences" }, tradeHash = 1827657795, }, + ["IncreasedColdDamagePerBlockChanceUnique__1"] = { affix = "", "1% increased Cold Damage per 1% Chance to Block Attack Damage", statOrder = { 3162 }, level = 74, group = "IncreasedColdDamagePerBlockChance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 4150597533, }, + ["IncreasedArmourWhileChilledOrFrozenUnique__1"] = { affix = "", "300% increased Armour while Chilled or Frozen", statOrder = { 3163 }, level = 1, group = "IncreasedArmourWhileChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1857635068, }, + ["AddedColdDamageToSpellsAndAttacksUnique__1"] = { affix = "", "Adds (15-25) to (40-50) Cold Damage to Spells and Attacks", statOrder = { 1216 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHash = 1662717006, }, + ["AddedColdDamageToSpellsAndAttacksUnique__2"] = { affix = "", "Adds (5-7) to (13-15) Cold Damage to Spells and Attacks", statOrder = { 1216 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHash = 1662717006, }, + ["UtilityFlaskSmokeCloud"] = { affix = "", "Creates a Smoke Cloud on Use", statOrder = { 655 }, level = 1, group = "UtilityFlaskSmokeCloud", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 538730182, }, + ["UtilityFlaskConsecrate"] = { affix = "", "Creates Consecrated Ground on Use", statOrder = { 637 }, level = 1, group = "UtilityFlaskConsecrate", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2146730404, }, + ["UtilityFlaskChilledGround"] = { affix = "", "Creates Chilled Ground on Use", statOrder = { 638 }, level = 1, group = "UtilityFlaskChilledGround", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3311869501, }, + ["UtilityFlaskTaunt_"] = { affix = "", "Taunts nearby Enemies on use", statOrder = { 652 }, level = 1, group = "UtilityFlaskTaunt", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2005503156, }, + ["UtilityFlaskWard"] = { affix = "", "Restores Ward on use", statOrder = { 674 }, level = 1, group = "UtilityFlaskWard", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2451856207, }, + ["SummonsWormsOnUse"] = { affix = "", "2 Enemy Writhing Worms escape the Flask when used", "Writhing Worms are destroyed when Hit", statOrder = { 675, 675.1 }, level = 1, group = "SummonsWormsOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2434293916, }, + ["PowerChargeOnHitUnique__1"] = { affix = "", "20% chance to gain a Power Charge on Hit", statOrder = { 1516 }, level = 1, group = "PowerChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 1453197917, }, + ["LosePowerChargesOnMaxPowerChargesUnique__1"] = { affix = "", "Lose all Power Charges on reaching maximum Power Charges", statOrder = { 3178 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2135899247, }, + ["LosePowerChargesOnMaxPowerChargesUnique__2"] = { affix = "", "Lose all Power Charges on reaching maximum Power Charges", statOrder = { 3178 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2135899247, }, + ["LoseEnduranceChargesOnMaxEnduranceChargesUnique__1_"] = { affix = "", "You lose all Endurance Charges on reaching maximum Endurance Charges", statOrder = { 2408 }, level = 1, group = "LoseEnduranceChargesOnMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 3590104875, }, + ["ShockOnMaxPowerChargesUnique__1"] = { affix = "", "Shocks you when you reach maximum Power Charges", statOrder = { 3179 }, level = 1, group = "ShockOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 4256314560, }, + ["MoltenBurstOnMeleeHitUnique__1"] = { affix = "", "20% chance to Trigger Level 16 Molten Burst on Melee Hit", statOrder = { 558 }, level = 1, group = "MoltenBurstOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHash = 4125471110, }, + ["PenetrateEnemyFireResistUnique__1"] = { affix = "", "Damage Penetrates 20% Fire Resistance", statOrder = { 2613 }, level = 1, group = "PenetrateEnemyFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, }, + ["LocalFlaskPetrifiedUnique__1"] = { affix = "", "Petrified during Effect", statOrder = { 745 }, level = 1, group = "LocalFlaskPetrified", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1935500672, }, + ["LocalFlaskPhysicalDamageReductionUnique__1"] = { affix = "", "(40-50)% additional Physical Damage Reduction during Effect", statOrder = { 728 }, level = 1, group = "LocalFlaskPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "flask", "physical" }, tradeHash = 677302513, }, + ["LightningDegenAuraUniqueDisplay__1"] = { affix = "", "Nearby Enemies take 50 Lightning Damage per second", statOrder = { 2781 }, level = 1, group = "LightningDegenAuraDisplay", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1415558356, }, + ["CannotBeAffectedByFlasksUnique__1"] = { affix = "", "Flasks do not apply to you", statOrder = { 3319 }, level = 38, group = "CannotBeAffectedByFlasks", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3003321700, }, + ["FlasksApplyToMinionsUnique__1"] = { affix = "", "Flasks you Use apply to your Raised Zombies and Spectres", statOrder = { 3320 }, level = 1, group = "FlasksApplyToMinions", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHash = 3127641775, }, + ["RepeatingShockwave"] = { affix = "", "Triggers Level 7 Abberath's Fury when Equipped", statOrder = { 542 }, level = 1, group = "RepeatingShockwave", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3250579936, }, + ["LifeRegenerationWhileFrozenUnique__1"] = { affix = "", "Regenerate 10% of maximum Life per second while Frozen", statOrder = { 3313 }, level = 1, group = "LifeRegenerationWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2656696317, }, + ["KnockbackOnCounterattackChanceUnique__1"] = { affix = "", "100% chance to knockback on Counterattack", statOrder = { 3197 }, level = 1, group = "KnockbackOnCounterattack", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 399854017, }, + ["EnergyShieldRechargeOnBlockUnique__1"] = { affix = "", "20% chance for Energy Shield Recharge to start when you Block", statOrder = { 3014 }, level = 1, group = "EnergyShieldRechargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "energy_shield", "defences" }, tradeHash = 762154651, }, + ["LocalAttacksAlwaysCritUnique__1"] = { affix = "", "This Weapon's Critical Hit Chance is 100%", statOrder = { 3360 }, level = 1, group = "LocalAttacksAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 3384885789, }, + ["LocalDoubleDamageToChilledEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon deal Double Damage to Chilled Enemies", statOrder = { 3329 }, level = 1, group = "LocalDoubleDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 625037258, }, + ["LocalElementalPenetrationUnique__1"] = { affix = "", "Attacks with this Weapon Penetrate 30% Elemental Resistances", statOrder = { 3330 }, level = 1, group = "LocalElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 4064396395, }, + ["FlaskZealotsOathUnique__1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield during Effect", "Zealot's Oath during Effect", statOrder = { 620, 803 }, level = 1, group = "FlaskZealotsOath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "flask", "resource", "life", "defences" }, tradeHash = 2650716659, }, + ["IncreasedDamageAtNoFrenzyChargesUnique__1"] = { affix = "", "(60-80)% increased Damage while you have no Frenzy Charges", statOrder = { 3334 }, level = 1, group = "DamageOnNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3905661226, }, + ["CriticalChanceAgainstEnemiesOnFullLifeUnique__1"] = { affix = "", "100% increased Critical Hit Chance against Enemies that are on Full Life", statOrder = { 3335 }, level = 1, group = "CriticalChanceAgainstEnemiesOnFullLife", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 47954913, }, + ["AddedPhysicalToMinionAttacksUnique__1"] = { affix = "", "Minions deal (5-8) to (12-16) additional Attack Physical Damage", statOrder = { 3336 }, level = 1, group = "AddedPhysicalToMinionAttacks", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHash = 797833282, }, + ["AttackPhysicalDamageAddedAsLightningUnique__1"] = { affix = "", "Gain 15% of Physical Damage as Extra Lightning Damage with Attacks", statOrder = { 3344 }, level = 1, group = "AttackPhysicalDamageAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHash = 2329121140, }, + ["AttackPhysicalDamageAddedAsFireUnique__1"] = { affix = "", "Gain 15% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3342 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHash = 3606204707, }, + ["AttackPhysicalDamageAddedAsFireUnique__2"] = { affix = "", "Gain (30-40)% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3342 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHash = 3606204707, }, + ["EnergyShieldPer5StrengthUnique__1"] = { affix = "", "+2 maximum Energy Shield per 5 Strength", statOrder = { 3345 }, level = 1, group = "EnergyShieldPer5Strength", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3788706881, }, + ["MaximumGolemsUnique__1"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3262 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2821079699, }, + ["MaximumGolemsUnique__2"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3262 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2821079699, }, + ["MaximumGolemsUnique__3"] = { affix = "", "+3 to maximum number of Summoned Golems", statOrder = { 3262 }, level = 43, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2821079699, }, + ["MaximumGolemsUnique__4_"] = { affix = "", "-1 to maximum number of Summoned Golems", statOrder = { 3262 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2821079699, }, + ["GrantsLevel12StoneGolem"] = { affix = "", "Grants Level 12 Summon Stone Golem Skill", statOrder = { 450 }, level = 1, group = "GrantsStoneGolemSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3056188914, }, + ["ZealotsOathUnique__1"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9143 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 632761194, }, + ["WeaponCountsAsAllOneHandedWeapons__1"] = { affix = "", "Counts as all One Handed Melee Weapon Types", statOrder = { 3347 }, level = 1, group = "CountsAsAllOneHandMeleeWeapons", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1524882321, }, + ["SocketedGemsSupportedByFortifyUnique____1"] = { affix = "", "Socketed Gems are Supported by Level 12 Fortify", statOrder = { 351 }, level = 1, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 107118693, }, + ["CannotBePoisonedUnique__1"] = { affix = "", "Cannot be Poisoned", statOrder = { 2967 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3835551335, }, + ["EnergyShieldRecoveryRateUnique__1"] = { affix = "", "(50-100)% increased Energy Shield Recovery rate", statOrder = { 1370 }, level = 1, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 988575597, }, + ["IncreasedDamageTakenUnique__1"] = { affix = "", "10% increased Damage taken", statOrder = { 1888 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3691641145, }, + ["FlaskImmuneToDamage__1"] = { affix = "", "Immunity to Damage during Effect", statOrder = { 741 }, level = 1, group = "FlaskImmuneToDamage", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 4267616253, }, + ["LocalAlwaysCrit"] = { affix = "", "This Weapon's Critical Hit Chance is 100%", statOrder = { 3360 }, level = 1, group = "LocalAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 3384885789, }, + ["IncreasePhysicalDegenDamagePerDexterityUnique__1"] = { affix = "", "2% increased Physical Damage Over Time per 10 Dexterity", statOrder = { 3363 }, level = 1, group = "IncreasePhysicalDegenDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 555311393, }, + ["IncreaseBleedDurationPerIntelligenceUnique__1"] = { affix = "", "1% increased Bleeding Duration per 12 Intelligence", statOrder = { 3364 }, level = 1, group = "IncreaseBleedDurationPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "ailment" }, tradeHash = 1030835421, }, + ["BleedingEnemiesFleeOnHitUnique__1"] = { affix = "", "30% Chance to cause Bleeding Enemies to Flee on hit", statOrder = { 3365 }, level = 1, group = "BleedingEnemiesFleeOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2072206041, }, + ["ChanceToAvoidFireDamageUnique__1"] = { affix = "", "25% chance to Avoid Fire Damage from Hits", statOrder = { 2971 }, level = 1, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHash = 42242677, }, + ["TrapTriggerRadiusUnique__1"] = { affix = "", "(40-60)% increased Trap Trigger Area of Effect", statOrder = { 1595 }, level = 1, group = "TrapTriggerRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 497716276, }, + ["SpreadChilledGroundOnFreezeUnique__1"] = { affix = "", "15% chance to create Chilled Ground when you Freeze an Enemy", statOrder = { 2999 }, level = 1, group = "SpreadChilledGroundOnFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2901262227, }, + ["SpreadConsecratedGroundOnShatterUnique__1"] = { affix = "", "Create Consecrated Ground when you Shatter an Enemy", statOrder = { 3682 }, level = 1, group = "SpreadConsecratedGroundOnShatter", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4148932984, }, + ["ChanceToPoisonWithAttacksUnique___1"] = { affix = "", "20% chance to Poison on Hit with Attacks", statOrder = { 2791 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3954735777, }, + ["TrapTriggerTwiceChanceUnique__1"] = { affix = "", "(8-12)% Chance for Traps to Trigger an additional time", statOrder = { 3362 }, level = 1, group = "TrapTriggerTwiceChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1087710344, }, + ["TrapAndMineAddedPhysicalDamageUnique__1"] = { affix = "", "Traps and Mines deal (3-5) to (10-15) additional Physical Damage", statOrder = { 3361 }, level = 1, group = "TrapAndMineAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3391324703, }, + ["FlaskLifeGainOnSkillUseUnique__1"] = { affix = "", "Grants Last Breath when you Use a Skill during Effect, for (450-600)% of Mana Cost", statOrder = { 722 }, level = 1, group = "FlaskZerphisLastBreath", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 3686711832, }, + ["TrapPoisonChanceUnique__1"] = { affix = "", "Traps and Mines have a 25% chance to Poison on Hit", statOrder = { 3646 }, level = 1, group = "TrapPoisonChance", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3192135716, }, + ["SocketedGemsSupportedByBlasphemyUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 22 Blasphemy", statOrder = { 370 }, level = 1, group = "DisplaySocketedGemsSupportedByBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHash = 539747809, }, + ["SocketedGemsSupportedByBlasphemyUnique__2__"] = { affix = "", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 370 }, level = 1, group = "DisplaySocketedGemsSupportedByBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHash = 539747809, }, + ["ReducedReservationForSocketedCurseGemsUnique__1"] = { affix = "", "Socketed Curse Gems have 30% increased Reservation Efficiency", statOrder = { 441 }, level = 1, group = "DisplaySocketedCurseGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 1471600638, }, + ["ReducedReservationForSocketedCurseGemsUnique__2"] = { affix = "", "Socketed Curse Gems have 80% increased Reservation Efficiency", statOrder = { 441 }, level = 1, group = "DisplaySocketedCurseGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 1471600638, }, + ["GrantAlliesPowerChargeOnKillUnique__1"] = { affix = "", "10% chance to grant a Power Charge to nearby Allies on Kill", statOrder = { 2978 }, level = 1, group = "GrantAlliesPowerChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2367680009, }, + ["GrantAlliesFrenzyChargeOnHitUnique__1"] = { affix = "", "5% chance to grant a Frenzy Charge to nearby Allies on Hit", statOrder = { 2979 }, level = 1, group = "GrantAlliesFrenzyChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 991168463, }, + ["SummonRagingSpiritOnKillUnique__1"] = { affix = "", "25% chance to Trigger Level 10 Summon Raging Spirit on Kill", statOrder = { 560 }, level = 1, group = "SummonRagingSpiritOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3751996449, }, + ["PhysicalDamageConvertedToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1636 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, }, + ["PhysicalDamageConvertedToChaosUnique__2"] = { affix = "", "50% of Physical Damage Converted to Chaos Damage", statOrder = { 1636 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, }, + ["FishDetectionUnique__1_"] = { affix = "", "Glows while in an Area containing a Unique Fish", statOrder = { 3683 }, level = 1, group = "FishingDetection", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 931560398, }, + ["LocalMaimOnHitUnique__1"] = { affix = "", "Attacks with this Weapon Maim on hit", statOrder = { 3687 }, level = 1, group = "LocalMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3418949024, }, + ["LocalMaimOnHit2HImplicit_1"] = { affix = "", "25% chance to Maim on Hit", statOrder = { 7320 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2763429652, }, + ["AlwaysCritShockedEnemiesUnique__1"] = { affix = "", "Always Critical Hit Shocked Enemies", statOrder = { 3690 }, level = 1, group = "AlwaysCritShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3481428688, }, + ["CannotCritNonShockedEnemiesUnique___1"] = { affix = "", "You cannot deal Critical Hits against non-Shocked Enemies", statOrder = { 3691 }, level = 1, group = "CannotCritNonShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3344493315, }, + ["MinionChanceToBlindOnHitUnique__1"] = { affix = "", "Minions have 15% chance to Blind Enemies on hit", statOrder = { 3709 }, level = 1, group = "MinionChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2939409392, }, + ["MinionBlindImmunityUnique__1"] = { affix = "", "Minions cannot be Blinded", statOrder = { 3708 }, level = 1, group = "MinionBlindImmunity", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2684385509, }, + ["DisplaySocketedMinionGemsSupportedByLifeLeechUnique__1"] = { affix = "", "Socketed Minion Gems are Supported by Level 16 Life Leech", statOrder = { 374 }, level = 1, group = "DisplaySocketedMinionGemsSupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "minion", "gem" }, tradeHash = 4006301249, }, + ["MagicItemsDropIdentifiedUnique__1"] = { affix = "", "Found Magic Items drop Identified", statOrder = { 3710 }, level = 1, group = "MagicItemsDropIdentified", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3020069394, }, + ["ManaPerStackableJewelUnique__1"] = { affix = "", "Gain 30 Mana per Grand Spectrum", statOrder = { 3711 }, level = 1, group = "ManaPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 620607587, }, + ["ArmourPerStackableJewelUnique__1"] = { affix = "", "Gain 200 Armour per Grand Spectrum", statOrder = { 3712 }, level = 1, group = "ArmourPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1644446896, }, + ["IncreasedDamagePerStackableJewelUnique__1"] = { affix = "", "15% increased Elemental Damage per Grand Spectrum", statOrder = { 3715 }, level = 1, group = "IncreasedDamagePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3033481928, }, + ["CriticalStrikeChancePerStackableJewelUnique__1"] = { affix = "", "25% increased Critical Hit Chance per Grand Spectrum", statOrder = { 3714 }, level = 1, group = "CriticalStrikeChancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1153907800, }, + ["AllResistancePerStackableJewelUnique__1"] = { affix = "", "+7% to all Elemental Resistances per socketed Grand Spectrum", statOrder = { 3716 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1345312164, }, + ["MaximumLifePerStackableJewelUnique__1"] = { affix = "", "5% increased Maximum Life per socketed Grand Spectrum", statOrder = { 3717 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 262406138, }, + ["AvoidElementalAilmentsPerStackableJewelUnique__1"] = { affix = "", "12% chance to Avoid Elemental Ailments per Grand Spectrum", statOrder = { 3713 }, level = 1, group = "AvoidElementalAilmentsPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 3907129423, }, + ["MinionCriticalStrikeMultiplierPerStackableJewelUnique__1"] = { affix = "", "Minions have +10% to Critical Damage Bonus per Grand Spectrum", statOrder = { 3721 }, level = 1, group = "MinionCriticalStrikeMultiplierPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHash = 3164503003, }, + ["MinimumEnduranceChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Endurance Charges per Grand Spectrum", statOrder = { 3718 }, level = 1, group = "MinimumEnduranceChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 3024010112, }, + ["MinimumFrenzyChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Frenzy Charges per Grand Spectrum", statOrder = { 3719 }, level = 1, group = "MinimumFrenzyChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 28063707, }, + ["MinimumPowerChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Power Charges per Grand Spectrum", statOrder = { 3720 }, level = 1, group = "MinimumPowerChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2790884137, }, + ["AddedColdDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 10 to 20 Cold Damage to Spells per Power Charge", statOrder = { 1507 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 3408048164, }, + ["AddedColdDamagePerPowerChargeUnique__2"] = { affix = "", "Adds 50 to 70 Cold Damage to Spells per Power Charge", statOrder = { 1507 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 3408048164, }, + ["GainManaOnKillingFrozenEnemyUnique__1"] = { affix = "", "+(20-25) Mana gained on Killing a Frozen Enemy", statOrder = { 9101 }, level = 1, group = "GainManaOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3304801725, }, + ["GainPowerChargeOnKillingFrozenEnemyUnique__1"] = { affix = "", "Gain a Power Charge on killing a Frozen enemy", statOrder = { 1506 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3607154250, }, + ["IncreasedDamageIfFrozenRecentlyUnique__1"] = { affix = "", "60% increased Damage if you've Frozen an Enemy Recently", statOrder = { 5596 }, level = 44, group = "IncreasedDamageIfFrozenRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1064477264, }, + ["AddedLightningDamagePerIntelligenceUnique__1"] = { affix = "", "Adds 1 to 10 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4409 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3390848861, }, + ["AddedLightningDamagePerIntelligenceUnique__2"] = { affix = "", "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4409 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3390848861, }, + ["IncreasedAttackSpeedPerDexterityUnique__1"] = { affix = "", "1% increased Attack Speed per 20 Dexterity", statOrder = { 2213 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 720908147, }, + ["MovementVelocityWhileBleedingUnique__1"] = { affix = "", "20% increased Movement Speed while Bleeding", statOrder = { 8608 }, level = 1, group = "MovementVelocityWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 696659555, }, + ["IncreasedPhysicalDamageTakenWhileMovingUnique__1"] = { affix = "", "10% increased Physical Damage taken while moving", statOrder = { 3882 }, level = 1, group = "IncreasedPhysicalDamageTakenWhileMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 4052714663, }, + ["PhysicalDamageReductionWhileNotMovingUnique__1"] = { affix = "", "10% additional Physical Damage Reduction while stationary", statOrder = { 3880 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 2181129193, }, + ["AddedLightningDamagePerShockedEnemyKilledUnique__1"] = { affix = "", "Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently", statOrder = { 8421 }, level = 1, group = "AddedLightningDamagePerShockedEnemyKilled", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 4222857095, }, + ["ColdPenetrationAgainstChilledEnemiesUnique__1"] = { affix = "", "Damage Penetrates 20% Cold Resistance against Chilled Enemies", statOrder = { 5318 }, level = 81, group = "ColdPenetrationAgainstChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 1477032229, }, + ["GainLifeOnIgnitingEnemyUnique__1"] = { affix = "", "Recover (40-60) Life when you Ignite an Enemy", statOrder = { 9099 }, level = 81, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 4045269075, }, + ["GainLifeOnIgnitingEnemyUnique__2"] = { affix = "", "Recover (20-30) Life when you Ignite an Enemy", statOrder = { 9099 }, level = 36, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 4045269075, }, + ["ReflectsShocksUnique__1"] = { affix = "", "Shock Reflection", statOrder = { 9131 }, level = 1, group = "ReflectsShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3291999509, }, + ["ChaosDamageDoesNotBypassESNotLowLifeOrManaUnique__1"] = { affix = "", "Chaos Damage taken does not cause double loss of Energy Shield while not on Low Life", statOrder = { 5201 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 2319040925, }, + ["FrenzyChargeOnHitWhileBleedingUnique__1"] = { affix = "", "Gain a Frenzy Charge on Hit while Bleeding", statOrder = { 6363 }, level = 1, group = "FrenzyChargeOnHitWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 2977774856, }, + ["IncreasedColdDamagePerFrenzyChargeUnique__1"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5301 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHash = 329974315, }, + ["IncreasedColdDamagePerFrenzyChargeUnique__2"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5301 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHash = 329974315, }, + ["OnHitBlindChilledEnemiesUnique__1_"] = { affix = "", "Blind Chilled enemies on Hit", statOrder = { 4778 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3450276548, }, + ["GainLifeOnBlockUnique__1"] = { affix = "", "Recover (250-500) Life when you Block", statOrder = { 1448 }, level = 1, group = "RecoverLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 1678831767, }, + ["GrantsLevel30ReckoningUnique__1"] = { affix = "", "Grants Level 30 Reckoning Skill", statOrder = { 477 }, level = 1, group = "GrantsLevel30Reckoning", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2434330144, }, + ["MinionsRecoverLifeOnKillingPoisonedEnemyUnique__1_"] = { affix = "", "Minions Recover 10% of maximum Life on Killing a Poisoned Enemy", statOrder = { 8554 }, level = 1, group = "MinionsRecoverLifeOnKillingPoisonedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 2602664175, }, + ["WhenReachingMaxPowerChargesGainAFrenzyChargeUnique__1"] = { affix = "", "Gain a Frenzy Charge on reaching Maximum Power Charges", statOrder = { 3180 }, level = 1, group = "WhenReachingMaxPowerChargesGainAFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 2732344760, }, + ["GrantsEnvyUnique__1"] = { affix = "", "Grants Level 25 Envy Skill", statOrder = { 476 }, level = 87, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 52953650, }, + ["GrantsEnvyUnique__2"] = { affix = "", "Grants Level 15 Envy Skill", statOrder = { 476 }, level = 1, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 52953650, }, + ["GainArmourIfBlockedRecentlyUnique__1"] = { affix = "", "+(1500-3000) Armour if you've Blocked Recently", statOrder = { 3995 }, level = 1, group = "GainArmourIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 4091848539, }, + ["EnemiesBlockedAreIntimidatedUnique__1"] = { affix = "", "Permanently Intimidate enemies on Block", statOrder = { 8843 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2930706364, }, + ["MinionsPoisonEnemiesOnHitUnique__1"] = { affix = "", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 2790 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHash = 1974445926, }, + ["MinionsPoisonEnemiesOnHitUnique__2"] = { affix = "", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 2790 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHash = 1974445926, }, + ["GrantsLevel20BoneNovaTriggerUnique__1"] = { affix = "", "Trigger Level 20 Bone Nova when you Hit a Bleeding Enemy", statOrder = { 545 }, level = 1, group = "GrantsLevel20BoneNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHash = 2634885412, }, + ["GrantsLevel20IcicleNovaTriggerUnique__1"] = { affix = "", "Trigger Level 20 Icicle Burst when you Hit a Frozen Enemy", statOrder = { 585 }, level = 1, group = "GrantsLevel20IcicleNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHash = 1357672429, }, + ["AttacksCauseBleedingOnCursedEnemyHitUnique__1"] = { affix = "", "Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies", statOrder = { 4451 }, level = 1, group = "AttacksCauseBleedingOnCursedEnemyHit25Percent", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2591028853, }, + ["ReceiveBleedingWhenHitUnique__1_"] = { affix = "", "50% chance to be inflicted with Bleeding when Hit", statOrder = { 9076 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3423694372, }, + ["ArmourIncreasedByUncappedFireResistanceUnique__1"] = { affix = "", "Armour is increased by Uncapped Fire Resistance", statOrder = { 4294 }, level = 1, group = "ArmourUncappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 713266390, }, + ["EvasionIncreasedByUncappedColdResistanceUnique__1"] = { affix = "", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6072 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2358015838, }, + ["CriticalChanceIncreasedByUncappedLightningResistanceUnique__1"] = { affix = "", "Critical Hit Chance is increased by Overcapped Lightning Resistance", statOrder = { 5445 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 2478752719, }, + ["CoverInAshWhenHitUnique__1"] = { affix = "", "Cover Enemies in Ash when they Hit you", statOrder = { 4207 }, level = 44, group = "CoverInAshWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3748879662, }, + ["CriticalStrikesDealIncreasedLightningDamageUnique__1"] = { affix = "", "50% increased Lightning Damage", statOrder = { 857 }, level = 87, group = "CriticalStrikesDealIncreasedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, }, + ["MaximumEnergyShieldAsPercentageOfLifeUnique__1"] = { affix = "", "Gain (4-6)% of maximum Life as Extra maximum Energy Shield", statOrder = { 8334 }, level = 60, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1228337241, }, + ["MaximumEnergyShieldAsPercentageOfLifeUnique__2"] = { affix = "", "Gain (5-10)% of maximum Life as Extra maximum Energy Shield", statOrder = { 8334 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1228337241, }, + ["ChillEnemiesWhenHitUnique__1"] = { affix = "", "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", statOrder = { 2757 }, level = 1, group = "ChillEnemiesWhenHit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2459809121, }, + ["OnlySocketCorruptedGemsUnique__1"] = { affix = "", "You can only Socket Corrupted Gems in this item", statOrder = { 7168 }, level = 1, group = "OnlySocketCorruptedGems", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 608438307, }, + ["CurseLevel10VulnerabilityOnHitUnique__1"] = { affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2193 }, level = 1, group = "CurseLevel10VulnerabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2213584313, }, + ["FireResistConvertedToBlockChanceScaledJewelUnique__1_"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Attack Damage at 50% of its value", statOrder = { 7398, 7398.1 }, level = 1, group = "FireResistConvertedToBlockChanceScaledJewel", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3931143552, }, + ["FireResistAlsoGrantsEnduranceChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill", statOrder = { 7399, 7399.1 }, level = 1, group = "FireResistAlsoGrantsEnduranceChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1566428451, }, + ["ColdResistAlsoGrantsFrenzyChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill", statOrder = { 7376, 7376.1 }, level = 1, group = "ColdResistAlsoGrantsFrenzyChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 2264338004, }, + ["LightningResistAlsoGrantsPowerChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill", statOrder = { 7412, 7412.1 }, level = 1, group = "LightningResistAlsoGrantsPowerChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 439570297, }, + ["LightningStrikesOnCritUnique__1"] = { affix = "", "Trigger Level 12 Lightning Bolt when you deal a Critical Hit", statOrder = { 551 }, level = 50, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHash = 3241494164, }, + ["LightningStrikesOnCritUnique__2"] = { affix = "", "Trigger Level 30 Lightning Bolt when you deal a Critical Hit", statOrder = { 551 }, level = 87, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHash = 3241494164, }, + ["ArcticArmourBuffEffectUnique__1_"] = { affix = "", "50% increased Arctic Armour Buff Effect", statOrder = { 3580 }, level = 1, group = "ArcticArmourBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3995612171, }, + ["ArcticArmourReservationCostUnique__1"] = { affix = "", "Arctic Armour has no Reservation", statOrder = { 4232 }, level = 1, group = "ArcticArmourNoReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1483066460, }, + ["BleedingEnemiesExplodeUnique__1"] = { affix = "", "Bleeding Enemies you Kill Explode, dealing 5% of", "their Maximum Life as Physical Damage", statOrder = { 3063, 3063.1 }, level = 1, group = "BleedingEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3133323410, }, + ["HeraldOfIceDamageUnique__1_"] = { affix = "", "50% increased Herald of Ice Damage", statOrder = { 3287 }, level = 1, group = "HeraldOfIceDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3910961021, }, + ["IncreasedLightningDamageTakenUnique__1"] = { affix = "", "40% increased Lightning Damage taken", statOrder = { 2982 }, level = 1, group = "IncreasedLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHash = 1276918229, }, + ["PercentLightningDamageTakenFromManaBeforeLifeUnique__1"] = { affix = "", "30% of Lightning Damage is taken from Mana before Life", statOrder = { 3723 }, level = 1, group = "PercentLightningDamageTakenFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "elemental", "lightning" }, tradeHash = 2477735984, }, + ["PercentManaRecoveredWhenYouShockUnique__1"] = { affix = "", "Recover 3% of maximum Mana when you Shock an Enemy", statOrder = { 3725 }, level = 1, group = "PercentManaRecoveredWhenYouShock", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2524029637, }, + ["ChanceToCastOnManaSpentUnique__1"] = { affix = "", "50% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", statOrder = { 536, 536.1 }, level = 1, group = "ChanceToCastOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, tradeHash = 723388324, }, + ["AdditionalChanceToBlockInOffHandUnique_1"] = { affix = "", "+8% Chance to Block Attack Damage when in Off Hand", statOrder = { 3738 }, level = 1, group = "AdditionalChanceToBlockInOffHand", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2040585053, }, + ["CriticalStrikeChanceInMainHandUnique_1"] = { affix = "", "(60-80)% increased Global Critical Hit Chance when in Main Hand", statOrder = { 3737 }, level = 1, group = "CriticalStrikeChanceInMainHand", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3404168630, }, + ["CriticalStrikeMultiplierPerGreenSocketUnique_1"] = { affix = "", "+10% to Global Critical Damage Bonus per Green Socket", statOrder = { 2383 }, level = 1, group = "CriticalStrikeMultiplierPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 35810390, }, + ["LifeLeechFromPhysicalAttackDamagePerRedSocket_Unique_1"] = { affix = "", "0.3% of Physical Attack Damage Leeched as Life per Red Socket", statOrder = { 2379 }, level = 1, group = "LifeLeechFromPhysicalAttackDamagePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 3025389409, }, + ["IncreasedFlaskChargesForOtherFlasksDuringEffectUnique_1"] = { affix = "", "(50-100)% increased Charges gained by Other Flasks during Effect", statOrder = { 769 }, level = 1, group = "IncreasedFlaskChargesForOtherFlasksDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1085359447, }, + ["CannotGainFlaskChargesDuringFlaskEffectUnique_1"] = { affix = "", "Gains no Charges during Effect of any Overflowing Chalice Flask", statOrder = { 801 }, level = 1, group = "CannotGainFlaskChargesDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741956733, }, + ["IncreasedLightningDamagePer10IntelligenceUnique__1"] = { affix = "", "1% increased Lightning Damage per 10 Intelligence", statOrder = { 3686 }, level = 1, group = "IncreasedLightningDamagePer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 990219738, }, + ["IncreasedDamagePerEnduranceChargeUnique_1"] = { affix = "", "4% increased Melee Damage per Endurance Charge", statOrder = { 3730 }, level = 1, group = "IncreasedDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1275066948, }, + ["CannotBeShockedWhileMaximumEnduranceChargesUnique_1"] = { affix = "", "You cannot be Shocked while at maximum Endurance Charges", statOrder = { 3733 }, level = 1, group = "CannotBeShockedWhileMaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 798111687, }, + ["IncreasedStunDurationOnSelfUnique_1"] = { affix = "", "50% increased Stun Duration on you", statOrder = { 3729 }, level = 1, group = "IncreasedStunDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1067429236, }, + ["ReducedDamageIfNotHitRecentlyUnique__1"] = { affix = "", "35% less Damage taken if you have not been Hit Recently", statOrder = { 3740 }, level = 1, group = "ReducedDamageIfNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 67637087, }, + ["IncreasedEvasionIfHitRecentlyUnique___1"] = { affix = "", "100% increased Evasion Rating if you have been Hit Recently", statOrder = { 3741 }, level = 1, group = "IncreasedEvasionIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 1073310669, }, + ["MovementSpeedIfUsedWarcryRecentlyUnique_1"] = { affix = "", "10% increased Movement Speed if you've used a Warcry Recently", statOrder = { 3734 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2546417825, }, + ["MovementSpeedIfUsedWarcryRecentlyUnique__2"] = { affix = "", "15% increased Movement Speed if you've used a Warcry Recently", statOrder = { 3734 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2546417825, }, + ["LifeRegeneratedAfterSavageHitUnique_1"] = { affix = "", "Regenerate 10% of maximum Life per second if you've taken a Savage Hit in the past 1 second", statOrder = { 3732 }, level = 1, group = "LifeRegeneratedAfterSavageHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 277484363, }, + ["ReducedDamageIfTakenASavageHitRecentlyUnique_1"] = { affix = "", "10% increased Damage taken if you've taken a Savage Hit Recently", statOrder = { 3728 }, level = 1, group = "ReducedDamageIfTakenASavageHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2415592273, }, + ["IncreasedDamagePerLevelDifferenceAgainstHigherLevelEnemiesUnique___1"] = { affix = "", "20% increased Damage with Hits for each Level higher the Enemy is than you", statOrder = { 3746 }, level = 1, group = "IncreasedDamagePerLevelDifferenceAgainstHigherLevelEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4095359151, }, + ["IncreasedCostOfMovementSkillsUnique_1"] = { affix = "", "25% increased Movement Skill Mana Cost", statOrder = { 3736 }, level = 1, group = "IncreasedCostOfMovementSkills", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 3992153900, }, + ["ChanceToDodgeSpellsWhilePhasing_Unique_1"] = { affix = "", "30% chance to Avoid Elemental Ailments while Phasing", statOrder = { 4473 }, level = 1, group = "AvoidElementalStatusAilmentsPhasing", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 115351487, }, + ["IncreasedEvasionWithOnslaughtUnique_1"] = { affix = "", "100% increased Evasion Rating during Onslaught", statOrder = { 1364 }, level = 1, group = "IncreasedEvasionWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 156734303, }, + ["IIQFromMaimedEnemiesUnique_1"] = { affix = "", "(15-25)% increased Quantity of Items Dropped by Slain Maimed Enemies", statOrder = { 3726 }, level = 1, group = "IIQFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3122365625, }, + ["IIRFromMaimedEnemiesUnique_1"] = { affix = "", "(30-40)% increased Rarity of Items Dropped by Slain Maimed Enemies", statOrder = { 3727 }, level = 1, group = "IIRFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2085001246, }, + ["AdditionalChainWhileAtMaxFrenzyChargesUnique___1"] = { affix = "", "Skills Chain an additional time while at maximum Frenzy Charges", statOrder = { 1508 }, level = 1, group = "AdditionalChainWhileAtMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 285624304, }, + ["ChanceToGainFrenzyChargeOnKillingFrozenEnemyUnique__1"] = { affix = "", "20% chance to gain a Frenzy Charge on killing a Frozen enemy", statOrder = { 1505 }, level = 1, group = "ChanceToGainFrenzyChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 2230931659, }, + ["PhasingOnBeginESRechargeUnique___1"] = { affix = "", "You have Phasing if Energy Shield Recharge has started Recently", statOrder = { 2173 }, level = 56, group = "GainPhasingFor4SecondsOnBeginESRecharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2632954025, }, + ["ChanceToDodgeAttacksWhilePhasingUnique___1"] = { affix = "", "30% increased Evasion Rating while Phasing", statOrder = { 2174 }, level = 1, group = "ChanceToDodgeAttacksWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 402176724, }, + ["IncreasedArmourAndEvasionIfKilledTauntedEnemyRecentlyUnique__1"] = { affix = "", "40% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently", statOrder = { 3745 }, level = 1, group = "IncreasedArmourAndEvasionIfKilledTauntedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 3669898891, }, + ["SummonMaximumNumberOfSocketedTotemsUnique_1"] = { affix = "", "Socketed Skills Summon your maximum number of Totems in formation", statOrder = { 382 }, level = 1, group = "SummonMaximumNumberOfSocketedTotems", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 1936441365, }, + ["TotemElementalResistPerActiveTotemUnique_1"] = { affix = "", "Totems gain -10% to all Elemental Resistances per Summoned Totem", statOrder = { 3731 }, level = 1, group = "TotemElementalResistPerActiveTotem", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 2288558421, }, + ["SpellsCastByTotemsHaveReducedCastSpeedPerTotemUnique_1"] = { affix = "", "Spells Cast by Totems have 5% increased Cast Speed per Summoned Totem", statOrder = { 3735 }, level = 1, group = "SpellsCastByTotemsHaveReducedCastSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 3204585690, }, + ["AttacksByTotemsHaveReducedAttackSpeedPerTotemUnique_1"] = { affix = "", "Attacks used by Totems have 5% increased Attack Speed per Summoned Totem", statOrder = { 3747 }, level = 1, group = "AttacksByTotemsHaveReducedAttackSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 264715122, }, + ["IncreasedManaRecoveryRateUnique__1"] = { affix = "", "10% increased Mana Recovery rate", statOrder = { 1381 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3513180117, }, + ["AttacksChainInMainHandUnique__1"] = { affix = "", "Attacks Chain an additional time when in Main Hand", statOrder = { 3748 }, level = 1, group = "AttacksChainInMainHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2466604008, }, + ["AttacksExtraProjectileInOffHandUnique__1"] = { affix = "", "Attacks fire an additional Projectile when in Off Hand", statOrder = { 3751 }, level = 1, group = "AttacksExtraProjectileInOffHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2105048696, }, + ["CounterAttacksAddedColdDamageUnique__1"] = { affix = "", "Adds 250 to 300 Cold Damage to Counterattacks", statOrder = { 3759 }, level = 1, group = "CounterAttacksAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1109700751, }, + ["IncreasedGolemDamagePerGolemUnique__1"] = { affix = "", "(16-20)% increased Golem Damage for each Type of Golem you have Summoned", statOrder = { 3753 }, level = 1, group = "IncreasedGolemDamagePerGolem", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 2114157293, }, + ["IncreasedLifeWhileNoCorruptedItemsUnique__1"] = { affix = "", "(8-12)% increased Maximum Life if no Equipped Items are Corrupted", statOrder = { 3755 }, level = 1, group = "IncreasedLifeWhileNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2217962305, }, + ["LifeRegenerationPerMinuteWhileNoCorruptedItemsUnique__1"] = { affix = "", "Regenerate 400 Life per second if no Equipped Items are Corrupted", statOrder = { 3756 }, level = 1, group = "LifeRegenerationPerMinuteWhileNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2497198283, }, + ["EnergyShieldRegenerationPerMinuteWhileAllCorruptedItemsUnique__1"] = { affix = "", "Regenerate 400 Energy Shield per second if all Equipped items are Corrupted", statOrder = { 3757 }, level = 1, group = "EnergyShieldRegenerationPerMinuteWhileAllCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4156715241, }, + ["BaseManaRegenerationWhileAllCorruptedItemsUnique__1"] = { affix = "", "Regenerate 35 Mana per second if all Equipped Items are Corrupted", statOrder = { 7505 }, level = 1, group = "BaseManaRegenerationWhileAllCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2760138143, }, + ["AddedChaosDamageToAttacksAndSpellsUnique__1"] = { affix = "", "Adds (13-17) to (29-37) Chaos Damage", statOrder = { 1224 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, }, + ["AddedChaosDamageToAttacksAndSpellsUnique__2"] = { affix = "", "Adds (13-17) to (23-29) Chaos Damage", statOrder = { 1224 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, }, + ["GlobalAddedChaosDamageUnique__1"] = { affix = "", "Adds (17-19) to (23-29) Chaos Damage", statOrder = { 1224 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, }, + ["GlobalAddedChaosDamageUnique__2"] = { affix = "", "Adds (50-55) to (72-80) Chaos Damage", statOrder = { 1224 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, }, + ["GlobalAddedChaosDamageUnique__3"] = { affix = "", "Adds (50-55) to (72-80) Chaos Damage", statOrder = { 1224 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, }, + ["GlobalAddedChaosDamageUnique__4__"] = { affix = "", "Adds (48-53) to (58-60) Chaos Damage", statOrder = { 1224 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, }, + ["GlobalAddedChaosDamageUnique__5_"] = { affix = "", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1224 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, }, + ["GlobalAddedChaosDamageUnique__6_"] = { affix = "", "Adds (17-23) to (29-31) Chaos Damage", statOrder = { 1224 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, }, + ["GlobalAddedPhysicalDamageUnique__1_"] = { affix = "", "Adds (12-16) to (20-25) Physical Damage", statOrder = { 1144 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 960081730, }, + ["GlobalAddedPhysicalDamageUnique__2"] = { affix = "", "Adds (8-10) to (13-15) Physical Damage", statOrder = { 1144 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 960081730, }, + ["GlobalAddedFireDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Fire Damage", statOrder = { 1206 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 321077055, }, + ["GlobalAddedFireDamageUnique__2"] = { affix = "", "Adds (22-27) to (34-38) Fire Damage", statOrder = { 1206 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 321077055, }, + ["GlobalAddedFireDamageUnique__3_"] = { affix = "", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1206 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 321077055, }, + ["GlobalAddedFireDamageUnique__4"] = { affix = "", "Adds (16-19) to (25-29) Fire Damage", statOrder = { 1206 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 321077055, }, + ["GlobalAddedColdDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Cold Damage", statOrder = { 1212 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2387423236, }, + ["GlobalAddedColdDamageUnique__2_"] = { affix = "", "Adds (20-23) to (31-35) Cold Damage", statOrder = { 1212 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2387423236, }, + ["GlobalAddedColdDamageUnique__3"] = { affix = "", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1212 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2387423236, }, + ["GlobalAddedColdDamageUnique__4"] = { affix = "", "Adds (16-19) to (25-29) Cold Damage", statOrder = { 1212 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2387423236, }, + ["GlobalAddedLightningDamageUnique__1_"] = { affix = "", "Adds (10-13) to (43-47) Lightning Damage", statOrder = { 1220 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1334060246, }, + ["GlobalAddedLightningDamageUnique__2_"] = { affix = "", "Adds (1-3) to (47-52) Lightning Damage", statOrder = { 1220 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1334060246, }, + ["GlobalAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1220 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1334060246, }, + ["GlobalAddedLightningDamageUnique__4"] = { affix = "", "Adds (6-10) to (33-38) Lightning Damage", statOrder = { 1220 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1334060246, }, + ["EnergyShieldRegenerationperMinuteWhileOnLowLifeTransformedUnique__1"] = { affix = "", "Regenerate 2% of maximum Energy Shield per second while on Low Life", statOrder = { 1483 }, level = 45, group = "EnergyShieldRegenerationperMinuteWhileOnLowLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 115109959, }, + ["ReflectPhysicalDamageToSelfOnHitUnique__1"] = { affix = "", "Enemies you Attack Reflect 100 Physical Damage to you", statOrder = { 1854 }, level = 1, group = "ReflectPhysicalDamageToSelfOnHit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2319377249, }, + ["IgnoreHexproofUnique___1"] = { affix = "", "Curses you inflict can affect Hexproof Enemies", statOrder = { 2269 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1367119630, }, + ["PoisonCursedEnemiesOnHitUnique__1"] = { affix = "", "Poison Cursed Enemies on hit", statOrder = { 3761 }, level = 1, group = "PoisonCursedEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 4266201818, }, + ["ChanceToPoisonCursedEnemiesOnHitUnique__1"] = { affix = "", "Always Poison on Hit against Cursed Enemies", statOrder = { 3762 }, level = 1, group = "ChanceToPoisonCursedEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2208857094, }, + ["ChanceToBeShockedUnique__1"] = { affix = "", "+20% chance to be Shocked", statOrder = { 2584 }, level = 1, group = "ChanceToBeShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3206652215, }, + ["ChanceToBeShockedUnique__2"] = { affix = "", "+50% chance to be Shocked", statOrder = { 2584 }, level = 1, group = "ChanceToBeShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3206652215, }, + ["GlobalDefensesPerWhiteSocketUnique__1"] = { affix = "", "8% increased Global Defences per White Socket", statOrder = { 2388 }, level = 1, group = "GlobalDefensesPerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 967108924, }, + ["ItemQuantityWhileWearingAMagicItemUnique__1"] = { affix = "", "(10-15)% increased Quantity of Items found with a Magic Item Equipped", statOrder = { 3764 }, level = 10, group = "ItemQuantityWhileWearingAMagicItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1498954300, }, + ["ItemRarityWhileWearingANormalItemUnique__1"] = { affix = "", "(80-100)% increased Rarity of Items found with a Normal Item Equipped", statOrder = { 3763 }, level = 1, group = "ItemRarityWhileWearingANormalItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4151190513, }, + ["AdditionalAttackTotemsUnique__1"] = { affix = "", "Attack Skills have +1 to maximum number of Summoned Totems", statOrder = { 3796 }, level = 1, group = "AdditionalAttackTotems", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3266394681, }, + ["MinionColdResistUnique__1"] = { affix = "", "Minions have +40% to Cold Resistance", statOrder = { 3742 }, level = 1, group = "MinionColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance", "minion" }, tradeHash = 2200407711, }, + ["MinionFireResistUnique__1"] = { affix = "", "Minions have +40% to Fire Resistance", statOrder = { 8500 }, level = 1, group = "MinionFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance", "minion" }, tradeHash = 1889350679, }, + ["MinionPhysicalDamageAddedAsColdUnique__1_"] = { affix = "", "Minions gain 20% of their Physical Damage as Extra Cold Damage", statOrder = { 3744 }, level = 1, group = "MinionPhysicalDamageAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "minion" }, tradeHash = 351413557, }, + ["FlaskStunImmunityUnique__1"] = { affix = "", "Cannot be Stunned during Effect", statOrder = { 732 }, level = 1, group = "FlaskStunImmunity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3589217170, }, + ["PhasingOnTrapTriggeredUnique__1"] = { affix = "", "30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy", statOrder = { 3792 }, level = 1, group = "PhasingOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 144887967, }, + ["GainEnergyShieldOnTrapTriggeredUnique__1_"] = { affix = "", "Recover 50 Energy Shield when your Trap is triggered by an Enemy", statOrder = { 3794 }, level = 1, group = "GainEnergyShieldOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1073384532, }, + ["GainLifeOnTrapTriggeredUnique__1"] = { affix = "", "Recover 100 Life when your Trap is triggered by an Enemy", statOrder = { 3793 }, level = 1, group = "GainLifeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3952196842, }, + ["GainLifeOnTrapTriggeredUnique__2__"] = { affix = "", "Recover (20-30) Life when your Trap is triggered by an Enemy", statOrder = { 3793 }, level = 1, group = "GainLifeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3952196842, }, + ["GainFrenzyChargeOnTrapTriggeredUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy", statOrder = { 3175 }, level = 1, group = "GainFrenzyChargeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 3738335639, }, + ["BleedingImmunityUnique__1"] = { affix = "", "Bleeding cannot be inflicted on you", statOrder = { 3769 }, level = 1, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1901158930, }, + ["BleedingImmunityUnique__2"] = { affix = "", "Bleeding cannot be inflicted on you", statOrder = { 3769 }, level = 1, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1901158930, }, + ["SelfStatusAilmentDurationUnique__1"] = { affix = "", "50% increased Elemental Ailment Duration on you", statOrder = { 1549 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 1745952865, }, + ["PoisonOnMeleeHitUnique__1"] = { affix = "", "Melee Attacks have (20-40)% chance to Poison on Hit", statOrder = { 3807 }, level = 60, group = "PoisonOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 33065250, }, + ["MovementSpeedIfKilledRecentlyUnique___1"] = { affix = "", "15% increased Movement Speed if you've Killed Recently", statOrder = { 3808 }, level = 40, group = "MovementSpeedIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 279227559, }, + ["MovementSpeedIfKilledRecentlyUnique___2"] = { affix = "", "15% increased Movement Speed if you've Killed Recently", statOrder = { 3808 }, level = 1, group = "MovementSpeedIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 279227559, }, + ["ControlledDestructionSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 275 }, level = 45, group = "ControlledDestructionSupportLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3425526049, }, + ["ControlledDestructionSupportUnique__1New_"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 375 }, level = 45, group = "ControlledDestructionSupport", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3718597497, }, + ["ColdDamageIgnitesUnique__1"] = { affix = "", "Cold Damage from Hits also Contributes to Flammability and Ignite Magnitudes", statOrder = { 2522 }, level = 30, group = "ColdDamageAlsoIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1888494262, }, + ["LifeRegenerationPercentPerEnduranceChargeUnique__1"] = { affix = "", "Regenerate 0.2% of maximum Life per second per Endurance Charge", statOrder = { 1375 }, level = 40, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 989800292, }, + ["AreaOfEffectPerEnduranceChargeUnique__1"] = { affix = "", "2% increased Area of Effect per Endurance Charge", statOrder = { 4246 }, level = 1, group = "AreaOfEffectPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2448279015, }, + ["ChanceForDoubleStunDurationUnique__1"] = { affix = "", "50% chance to double Stun Duration", statOrder = { 3143 }, level = 1, group = "ChanceForDoubleStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2622251413, }, + ["ChanceForDoubleStunDurationImplicitMace_1"] = { affix = "", "25% chance to double Stun Duration", statOrder = { 3143 }, level = 1, group = "ChanceForDoubleStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2622251413, }, + ["PhysicalAddedAsFireUnique__1"] = { affix = "", "Gain (25-35)% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3342 }, level = 30, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHash = 3606204707, }, + ["PhysicalAddedAsFireUnique__2"] = { affix = "", "Gain 70% of Physical Damage as Extra Fire Damage", statOrder = { 1604 }, level = 50, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 1936645603, }, + ["PhysicalAddedAsFireUnique__3"] = { affix = "", "Gain 20% of Physical Damage as Extra Fire Damage", statOrder = { 1604 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 1936645603, }, + ["AttackCastMoveOnWarcryRecentlyUnique____1"] = { affix = "", "If you've Warcried Recently, you and nearby allies have 20% increased Attack, Cast and Movement Speed", statOrder = { 2914 }, level = 1, group = "AttackCastMoveOnWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 1464115829, }, + ["ChaosSkillEffectDurationUnique__1"] = { affix = "", "Chaos Skills have 40% increased Skill Effect Duration", statOrder = { 1573 }, level = 1, group = "ChaosSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 289885185, }, + ["PoisonDurationUnique__1_"] = { affix = "", "(15-20)% increased Poison Duration", statOrder = { 2786 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2011656677, }, + ["PoisonDurationUnique__2"] = { affix = "", "(20-25)% increased Poison Duration", statOrder = { 2786 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2011656677, }, + ["FlaskImmuneToStunFreezeCursesUnique__1"] = { affix = "", "Immunity to Freeze, Chill, Curses and Stuns during Effect", statOrder = { 778 }, level = 1, group = "KiarasDeterminationBuff", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 803730540, }, + ["LocalPhysicalDamageAddedAsEachElementTransformed"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3809 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHash = 3620731914, }, + ["LocalPhysicalDamageAddedAsEachElementTransformed2"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3809 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHash = 3620731914, }, + ["LocalPhysicalDamageAddedAsEachElementUnique__1"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3809 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHash = 3620731914, }, + ["PhysicalDamageTakenAsColdUnique__1"] = { affix = "", "20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2120 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHash = 1871056256, }, + ["ChaosDamageOverTimeUnique__1"] = { affix = "", "25% reduced Chaos Damage taken over time", statOrder = { 1621 }, level = 1, group = "ChaosDamageOverTimeTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 3762784591, }, + ["PowerFrenzyOrEnduranceChargeOnKillUnique__1"] = { affix = "", "(10-15)% chance to gain a Power, Frenzy, or Endurance Charge on kill", statOrder = { 3187 }, level = 1, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 498214257, }, + ["CannotLeechFromCriticalStrikesUnique___1"] = { affix = "", "Cannot Leech Life from Critical Hits", statOrder = { 3823 }, level = 1, group = "CannotLeechFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHash = 3243534964, }, + ["ChanceToBlindOnCriticalStrikesUnique__1"] = { affix = "", "30% chance to Blind Enemies on Critical Hit", statOrder = { 3824 }, level = 1, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3983981705, }, + ["ChanceToBlindOnCriticalStrikesUnique__2_"] = { affix = "", "(40-50)% chance to Blind Enemies on Critical Hit", statOrder = { 3824 }, level = 38, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3983981705, }, + ["BleedOnMeleeCriticalStrikeUnique__1"] = { affix = "", "50% chance to cause Bleeding on Critical Hit", statOrder = { 7173 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2743246999, }, + ["StunDurationBasedOnEnergyShieldUnique__1"] = { affix = "", "Stun Threshold is based on Energy Shield instead of Life", statOrder = { 3822 }, level = 48, group = "StunDurationBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2562665460, }, + ["TakeNoExtraDamageFromCriticalStrikesUnique__1"] = { affix = "", "Take no Extra Damage from Critical Hits", statOrder = { 3832 }, level = 1, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 4294267596, }, + ["ShockedEnemyCastSpeedUnique__1"] = { affix = "", "Enemies you Shock have 30% reduced Cast Speed", statOrder = { 3833 }, level = 1, group = "ShockedEnemyCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4107150355, }, + ["ShockedEnemyMovementSpeedUnique__1"] = { affix = "", "Enemies you Shock have 20% reduced Movement Speed", statOrder = { 3834 }, level = 1, group = "ShockedEnemyMovementSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3134790305, }, + ["IncreasedBurningDamageIfYouHaveIgnitedRecentlyUnique__1"] = { affix = "", "100% increased Burning Damage if you've Ignited an Enemy Recently", statOrder = { 3866 }, level = 1, group = "IncreasedBurningDamageIfYouHaveIgnitedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3919557483, }, + ["RecoverLifePercentOnIgniteUnique__1"] = { affix = "", "Recover 1% of maximum Life when you Ignite an Enemy", statOrder = { 3867 }, level = 1, group = "RecoverLifePercentOnIgnite", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3112776239, }, + ["IncreasedMeleePhysicalDamageAgainstIgnitedEnemiesUnique__1"] = { affix = "", "100% increased Melee Physical Damage against Ignited Enemies", statOrder = { 3868 }, level = 1, group = "IncreasedMeleePhysicalDamageAgainstIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1332534089, }, + ["NormalMonsterItemQuantityUnique__1"] = { affix = "", "(35-50)% increased Quantity of Items Dropped by Slain Normal Enemies", statOrder = { 8734 }, level = 38, group = "NormalMonsterItemQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1342790450, }, + ["MagicMonsterItemRarityUnique__1"] = { affix = "", "(100-150)% increased Rarity of Items Dropped by Slain Magic Enemies", statOrder = { 7462 }, level = 1, group = "MagicMonsterItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3433676080, }, + ["HeistContractChestRewardsDuplicated"] = { affix = "", "Heist Chests have a 100% chance to Duplicate their contents", "Monsters have 100% more Life", statOrder = { 5027, 7810 }, level = 1, group = "HeistContractChestRewardsDuplicated", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3583773212, }, + ["HeistContractAdditionalIntelligence"] = { affix = "", "Completing a Heist generates 3 additional Reveals", "Heist Chests have 25% chance to contain nothing", statOrder = { 7806, 7807 }, level = 1, group = "HeistContractAdditionalIntelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4028807870, }, + ["HeistContractNPCPerksDoubled"] = { affix = "", "50% reduced time before Lockdown", "Rogue Perks are doubled", statOrder = { 5767, 7811 }, level = 1, group = "HeistContractNPCPerksDoubled", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3021082678, }, + ["HeistContractBetterTargetValue"] = { affix = "", "Rogue Equipment cannot be found", "200% more Rogue's Marker value of primary Heist Target", statOrder = { 7808, 7809 }, level = 1, group = "HeistContractBetterTargetValue", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1530239356, }, + ["CriticalStrikeChanceForForkingArrowsUnique__1"] = { affix = "", "(150-200)% increased Critical Hit Chance with arrows that Fork", statOrder = { 3869 }, level = 1, group = "CriticalStrikeChanceForForkingArrows", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 4169623196, }, + ["ArrowsAlwaysCritAfterPiercingUnique___1"] = { affix = "", "Arrows Pierce all Targets after Chaining", statOrder = { 3872 }, level = 1, group = "ArrowsAlwaysCritAfterPiercing", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1997151732, }, + ["ArrowsThatPierceCauseBleedingUnique__1"] = { affix = "", "Arrows that Pierce have 50% chance to inflict Bleeding", statOrder = { 3871 }, level = 1, group = "ArrowsThatPierceCauseBleeding25Percent", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1812251528, }, + ["IncreaseProjectileAttackDamagePerAccuracyUnique__1"] = { affix = "", "1% increased Projectile Attack Damage per 200 Accuracy Rating", statOrder = { 3875 }, level = 1, group = "IncreaseProjectileAttackDamagePerAccuracy", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 4157767905, }, + ["AdditionalSpellProjectilesUnique__1"] = { affix = "", "Spells fire an additional Projectile", statOrder = { 3873 }, level = 85, group = "AdditionalSpellProjectiles", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 1011373762, }, + ["IncreasedMinionDamageIfYouHitEnemyUnique__1"] = { affix = "", "Minions deal 70% increased Damage if you've Hit Recently", statOrder = { 8484 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 2337295272, }, + ["MinionDamageAlsoAffectsYouUnique__1"] = { affix = "", "Increases and Reductions to Minion Damage also affect you at 150% of their value", statOrder = { 4114 }, level = 1, group = "MinionDamageAlsoAffectsYou", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 1433144735, }, + ["GlobalCriticalStrikeChanceAgainstChilledUnique__1"] = { affix = "", "60% increased Critical Hit Chance against Chilled Enemies", statOrder = { 6461 }, level = 1, group = "GlobalCriticalStrikeChanceAgainstChilled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3699490848, }, + ["CastSocketedColdSkillsOnCriticalStrikeUnique__1"] = { affix = "", "Trigger a Socketed Cold Spell on Melee Critical Hit, with a 0.25 second Cooldown", statOrder = { 601 }, level = 1, group = "CastSocketedColdSpellsOnMeleeCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental", "cold", "attack", "caster", "gem" }, tradeHash = 2295303426, }, + ["IncreasedAttackAreaOfEffectUnique__1_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4363 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1840985759, }, + ["IncreasedAttackAreaOfEffectUnique__2_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4363 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1840985759, }, + ["IncreasedAttackAreaOfEffectUnique__3"] = { affix = "", "(-40-40)% reduced Area of Effect for Attacks", statOrder = { 4363 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1840985759, }, + ["PhysicalDamageCanShockUnique__1"] = { affix = "", "Physical Damage from Hits also Contributes to Shock Chance", statOrder = { 2532 }, level = 1, group = "PhysicalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3848047105, }, + ["DealNoElementalDamageUnique__1"] = { affix = "", "Deal no Elemental Damage", statOrder = { 5692 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2998305364, }, + ["DealNoElementalDamageUnique__2"] = { affix = "", "Deal no Elemental Damage", statOrder = { 5692 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2998305364, }, + ["DealNoElementalDamageUnique__3"] = { affix = "", "Deal no Elemental Damage", statOrder = { 5692 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2998305364, }, + ["TakeFireDamageOnIgniteUnique__1"] = { affix = "", "Take 100 Fire Damage when you Ignite an Enemy", statOrder = { 6153 }, level = 1, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2518598473, }, + ["ChanceForSpectersToGainSoulEaterOnKillUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill", statOrder = { 7432 }, level = 1, group = "ChanceForSpectersToGainSoulEaterOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3193100053, }, + ["MovementSkillsDealNoPhysicalDamageUnique__1"] = { affix = "", "Movement Skills deal no Physical Damage", statOrder = { 8581 }, level = 1, group = "MovementSkillsDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 4114010855, }, + ["GainPhasingIfKilledRecentlyUnique__1"] = { affix = "", "You have Phasing if you've Killed Recently", statOrder = { 6397 }, level = 1, group = "GainPhasingIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3489372920, }, + ["MovementSkillsCostNoManaUnique__1"] = { affix = "", "Movement Skills Cost no Mana", statOrder = { 3055 }, level = 1, group = "MovementSkillsCostNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3086866381, }, + ["ProjectileAttackDamageImplicitGloves1"] = { affix = "", "(14-18)% increased Projectile Attack Damage", statOrder = { 1664 }, level = 1, group = "ProjectileAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2162876159, }, + ["ManaPerStrengthUnique__1__"] = { affix = "", "+1 Mana per 4 Strength", statOrder = { 1691 }, level = 1, group = "ManaPerStrength", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 507075051, }, + ["EnergyShieldPerStrengthUnique__1"] = { affix = "", "1% increased Energy Shield per 10 Strength", statOrder = { 6010 }, level = 1, group = "EnergyShieldPerStrength", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 506942497, }, + ["LifePerDexterityUnique__1"] = { affix = "", "+1 Life per 4 Dexterity", statOrder = { 1690 }, level = 1, group = "LifePerDexterity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2042405614, }, + ["MeleePhysicalDamagePerDexterityUnique__1_"] = { affix = "", "2% increased Melee Physical Damage per 10 Dexterity", statOrder = { 8374 }, level = 1, group = "MeleePhysicalDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2355151849, }, + ["AccuracyPerIntelligenceUnique__1"] = { affix = "", "+4 Accuracy Rating per 2 Intelligence", statOrder = { 1689 }, level = 1, group = "AccuracyPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2196657026, }, + ["EvasionRatingPerIntelligenceUnique__1"] = { affix = "", "2% increased Evasion Rating per 10 Intelligence", statOrder = { 6060 }, level = 1, group = "EvasionRatingPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 810772344, }, + ["ChanceToGainFrenzyChargeOnStunUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge when you Stun an Enemy", statOrder = { 5155 }, level = 38, group = "ChanceToGainFrenzyChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1695720239, }, + ["PrrojectilesPierceWhilePhasingUnique__1_"] = { affix = "", "Projectiles Pierce all Targets while you have Phasing", statOrder = { 8997 }, level = 1, group = "PrrojectilesPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2636403786, }, + ["AdditionalPierceWhilePhasingUnique__1"] = { affix = "", "Projectiles Pierce 5 additional Targets while you have Phasing", statOrder = { 8998 }, level = 1, group = "AdditionalPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 97250660, }, + ["ChanceToAvoidProjectilesWhilePhasingUnique__1"] = { affix = "", "20% chance to Avoid Projectiles while Phasing", statOrder = { 4481 }, level = 1, group = "ChanceToAvoidProjectilesWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3635120731, }, + ["FlaskAdditionalProjectilesDuringEffectUnique__1"] = { affix = "", "Skills fire 2 additional Projectiles during Effect", statOrder = { 752 }, level = 85, group = "FlaskAdditionalProjectilesDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 323705912, }, + ["FlaskIncreasedAreaOfEffectDuringEffectUnique__1_"] = { affix = "", "(10-20)% increased Area of Effect during Effect", statOrder = { 730 }, level = 1, group = "FlaskIncreasedAreaOfEffectDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 215882879, }, + ["CelestialFootprintsUnique__1_"] = { affix = "", "Celestial Footprints", statOrder = { 10100 }, level = 1, group = "CelestialFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 50381303, }, + ["IncreasedMinionAttackSpeedUnique__1_"] = { affix = "", "Minions have (10-15)% increased Attack Speed", statOrder = { 2555 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHash = 3375935924, }, + ["GolemPerPrimordialJewel"] = { affix = "", "+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped", statOrder = { 8758 }, level = 1, group = "GolemPerPrimordialJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 920385757, }, + ["PrimordialJewelCountUnique__1"] = { affix = "", "Primordial", statOrder = { 9996 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1089165168, }, + ["PrimordialJewelCountUnique__2"] = { affix = "", "Primordial", statOrder = { 9996 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1089165168, }, + ["PrimordialJewelCountUnique__3"] = { affix = "", "Primordial", statOrder = { 9996 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1089165168, }, + ["PrimordialJewelCountUnique__4"] = { affix = "", "Primordial", statOrder = { 9996 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1089165168, }, + ["GolemLifeUnique__1"] = { affix = "", "Golems have (18-22)% increased Maximum Life", statOrder = { 6482 }, level = 1, group = "GolemLifeUnique", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 1750735210, }, + ["GolemLifeRegenerationUnique__1"] = { affix = "", "Summoned Golems Regenerate 2% of their maximum Life per second", statOrder = { 6481 }, level = 1, group = "GolemLifeRegenerationUnique", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 2235163762, }, + ["IncreasedDamageIfGolemSummonedRecently__1"] = { affix = "", "(25-30)% increased Damage if you Summoned a Golem in the past 8 seconds", statOrder = { 3270 }, level = 1, group = "IncreasedDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3384291300, }, + ["IncreasedGolemDamageIfGolemSummonedRecently__1_"] = { affix = "", "Golems Summoned in the past 8 seconds deal (35-45)% increased Damage", statOrder = { 3271 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 2869193493, }, + ["IncreasedGolemDamageIfGolemSummonedRecentlyUnique__1"] = { affix = "", "Golems Summoned in the past 8 seconds deal (100-125)% increased Damage", statOrder = { 3271 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 2869193493, }, + ["GolemSkillsCooldownRecoveryUnique__1"] = { affix = "", "Golem Skills have (20-30)% increased Cooldown Recovery Rate", statOrder = { 2930 }, level = 1, group = "GolemSkillsCooldownRecoveryUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 729180395, }, + ["GolemsSkillsCooldownRecoveryUnique__1_"] = { affix = "", "Summoned Golems have (30-45)% increased Cooldown Recovery Rate", statOrder = { 2931 }, level = 1, group = "GolemsSkillsCooldownRecoveryUnique", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3246099900, }, + ["GolemBuffEffectUnique__1"] = { affix = "", "30% increased Effect of Buffs granted by your Golems", statOrder = { 6479 }, level = 1, group = "GolemBuffEffectUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2109043683, }, + ["GolemAttackAndCastSpeedUnique__1"] = { affix = "", "Golems have (16-20)% increased Attack and Cast Speed", statOrder = { 6477 }, level = 1, group = "GolemAttackAndCastSpeedUnique", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHash = 56225773, }, + ["GolemArmourRatingUnique__1"] = { affix = "", "Golems have +(800-1000) to Armour", statOrder = { 6485 }, level = 1, group = "GolemArmourRatingUnique", weightKey = { }, weightVal = { }, modTags = { "armour", "defences", "minion" }, tradeHash = 1020786773, }, + ["ArmourPerTotemUnique__1"] = { affix = "", "+300 Armour per Summoned Totem", statOrder = { 3996 }, level = 1, group = "ArmourPerTotem", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1429385513, }, + ["SpellDamageIfYouHaveCritRecentlyUnique__1"] = { affix = "", "200% increased Spell Damage if you've dealt a Critical Hit in the past 8 seconds", statOrder = { 9409 }, level = 1, group = "SpellDamageIfCritPast8Seconds", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 467806158, }, + ["SpellDamageIfYouHaveCritRecentlyUnique__2"] = { affix = "", "(120-150)% increased Spell Damage if you've dealt a Critical Hit Recently", statOrder = { 9400 }, level = 1, group = "SpellDamageIfYouHaveCritRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 1550015622, }, + ["CriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Critical Hits deal no Damage", statOrder = { 5501 }, level = 1, group = "CriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3245481061, }, + ["IncreasedManaRegenerationWhileStationaryUnique__1"] = { affix = "", "60% increased Mana Regeneration Rate while stationary", statOrder = { 3883 }, level = 1, group = "ManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3308030688, }, + ["AddedArmourWhileStationaryUnique__1"] = { affix = "", "+1500 Armour while stationary", statOrder = { 3881 }, level = 1, group = "AddedArmourWhileStationary", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 2551779822, }, + ["SpreadChilledGroundWhenHitByAttackUnique__1"] = { affix = "", "15% chance to create Chilled Ground when Hit with an Attack", statOrder = { 5275 }, level = 1, group = "SpreadChilledGroundWhenHitByAttack", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 358040686, }, + ["NonCriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Non-Critical Hits deal no Damage", statOrder = { 8655 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2511969244, }, + ["NonCriticalStrikesDealNoDamageUnique__2"] = { affix = "", "Non-Critical Hits deal no Damage", statOrder = { 8655 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2511969244, }, + ["CritMultiIfDealtNonCritRecentlyUnique__1"] = { affix = "", "25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", statOrder = { 5472 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 1626712767, }, + ["CritMultiIfDealtNonCritRecentlyUnique__2"] = { affix = "", "60% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", statOrder = { 5472 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 1626712767, }, + ["EnemiesDestroyedOnKillUnique__1"] = { affix = "", "Enemies killed by your Hits are destroyed", statOrder = { 5931 }, level = 1, group = "EnemiesDestroyedOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2970902024, }, + ["RecoverPercentMaxLifeOnKillUnique__1"] = { affix = "", "Recover 5% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, + ["RecoverPercentMaxLifeOnKillUnique__2"] = { affix = "", "Recover 5% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, + ["RecoverPercentMaxLifeOnKillUnique__3"] = { affix = "", "Recover 1% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, + ["CriticalMultiplierPerBlockChanceUnique__1"] = { affix = "", "+1% to Critical Damage Bonus per 1% Chance to Block Attack Damage", statOrder = { 2803 }, level = 1, group = "CriticalMultiplierPerBlockChance", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 956384511, }, + ["AttackDamagePerLowestArmourOrEvasionUnique__1"] = { affix = "", "1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating", statOrder = { 4391 }, level = 98, group = "AttackDamagePerLowestArmourOrEvasion", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1358422215, }, + ["FortifyOnMeleeStunUnique__1"] = { affix = "", "Melee Hits which Stun Fortify", statOrder = { 5140 }, level = 1, group = "FortifyOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3206381437, }, + ["OnslaughtWhileFortifiedUnique__1"] = { affix = "", "You have Onslaught while Fortified", statOrder = { 6395 }, level = 1, group = "OnslaughtWhileFortified", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1493590317, }, + ["ItemStatsDoubledInBreachImplicit"] = { affix = "", "Properties are doubled while in a Breach", statOrder = { 7281 }, level = 1, group = "StatsDoubledInBreach", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 202275580, }, + ["SummonSpidersOnKillUnique__1"] = { affix = "", "100% chance to Trigger Level 1 Raise Spiders on Kill", statOrder = { 559 }, level = 1, group = "GrantsSpiderMinion", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3844016207, }, + ["CannotCastSpellsUnique__1"] = { affix = "", "Cannot Cast Spells", statOrder = { 4926 }, level = 1, group = "CannotCastSpells", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 3965442551, }, + ["CannotDealSpellDamageUnique__1"] = { affix = "", "Spell Skills deal no Damage", statOrder = { 9430 }, level = 1, group = "CannotDealSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 291644318, }, + ["GoatHoofFootprintsUnique__1"] = { affix = "", "Burning Hoofprints", statOrder = { 10103 }, level = 1, group = "GoatHoofFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3576153145, }, + ["FireDamagePerStrengthUnique__1"] = { affix = "", "1% increased Fire Damage per 20 Strength", statOrder = { 6143 }, level = 1, group = "FireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2241902512, }, + ["GolemLargerAggroRadiusUnique__1"] = { affix = "", "Summoned Golems are Aggressive", statOrder = { 10010 }, level = 1, group = "GolemLargerAggroRadius", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3630426972, }, + ["MaximumLifeConvertedToEnergyShieldUnique__1"] = { affix = "", "20% of Maximum Life Converted to Energy Shield", statOrder = { 8332 }, level = 75, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2458962764, }, + ["MaximumLifeConvertedToEnergyShieldUnique__2"] = { affix = "", "50% of Maximum Life Converted to Energy Shield", statOrder = { 8332 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2458962764, }, + ["LocalChanceToPoisonOnHitUnique__1"] = { affix = "", "15% chance to Poison on Hit with this weapon", statOrder = { 7334 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, }, + ["LocalChanceToPoisonOnHitUnique__2"] = { affix = "", "60% chance to Poison on Hit with this weapon", statOrder = { 7334 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, }, + ["LocalChanceToPoisonOnHitUnique__3"] = { affix = "", "20% chance to Poison on Hit with this weapon", statOrder = { 7334 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, }, + ["LocalChanceToPoisonOnHitUnique__4"] = { affix = "", "20% chance to Poison on Hit with this weapon", statOrder = { 7334 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, }, + ["ChanceToPoisonUnique__1_______"] = { affix = "", "25% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "PoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 795138349, }, + ["IncreasedSpellDamageWhileShockedUnique__1"] = { affix = "", "50% increased Spell Damage while Shocked", statOrder = { 9419 }, level = 1, group = "IncreasedSpellDamageWhileShocked", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2088288068, }, + ["MaximumResistanceWithNoEnduranceChargesUnique__1__"] = { affix = "", "+2% to all maximum Resistances while you have no Endurance Charges", statOrder = { 4089 }, level = 1, group = "MaximumResistanceWithNoEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHash = 3635566977, }, + ["OnslaughtWithMaxEnduranceChargesUnique__1"] = { affix = "", "You have Onslaught while at maximum Endurance Charges", statOrder = { 6391 }, level = 1, group = "OnslaughtWithMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3101915418, }, + ["MinionsGainYourStrengthUnique__1"] = { affix = "", "Half of your Strength is added to your Minions", statOrder = { 8546 }, level = 1, group = "MinionsGainYourStrength", weightKey = { }, weightVal = { }, modTags = { "minion", "attribute" }, tradeHash = 2195137717, }, + ["AdditionalZombiesPerXStrengthUnique__1"] = { affix = "", "+1 to maximum number of Raised Zombies per 500 Strength", statOrder = { 8765 }, level = 1, group = "AdditionalZombiesPerXStrength", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 4056985119, }, + ["ReducedBleedDurationUnique__1_"] = { affix = "", "25% reduced Bleeding Duration", statOrder = { 4522 }, level = 1, group = "BleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1459321413, }, + ["IncreasedRarityPerRampageStacksUnique__1"] = { affix = "", "1% increased Rarity of Items found per 15 Rampage Kills", statOrder = { 6930 }, level = 38, group = "IncreasedRarityPerRampageStacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4260403588, }, + ["ImmuneToBurningShockedChilledGroundUnique__1"] = { affix = "", "Immune to Burning Ground, Shocked Ground and Chilled Ground", statOrder = { 6830 }, level = 1, group = "ImmuneToBurningShockedChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3705740723, }, + ["MaximumLifePer10DexterityUnique__1"] = { affix = "", "+2 to Maximum Life per 10 Dexterity", statOrder = { 8329 }, level = 1, group = "FlatLifePer10Dexterity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3806100539, }, + ["LifeRegenerationWhileMovingUnique__1"] = { affix = "", "Regenerate 100 Life per second while moving", statOrder = { 7032 }, level = 1, group = "LifeRegenerationWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2841027131, }, + ["SpellsAreDisabledUnique__1"] = { affix = "", "Your Spells are disabled", statOrder = { 9982 }, level = 1, group = "SpellsAreDisabled", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 1981749265, }, + ["MaximumLifePerItemRarityUnique__1"] = { affix = "", "+1 Life per 2% increased Rarity of Items found", statOrder = { 8331 }, level = 1, group = "MaxLifePerItemRarity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1457265483, }, + ["PercentDamagePerItemQuantityUnique__1"] = { affix = "", "Your Increases and Reductions to Quantity of Items found also apply to Damage", statOrder = { 5606 }, level = 1, group = "PercentDamagePerItemQuantity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2675627948, }, + ["ItemQuantityPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% increased Quantity of Items found per Chest opened Recently", statOrder = { 6929 }, level = 1, group = "ItemQuantityPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3729758391, }, + ["MovementSpeedPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% reduced Movement Speed per Chest opened Recently", statOrder = { 8602 }, level = 1, group = "MovementSpeedPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 718844908, }, + ["WarcryKnockbackUnique__1"] = { affix = "", "Warcries Knock Back and Interrupt Enemies in a smaller Area", statOrder = { 9882 }, level = 1, group = "WarcryKnockback", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 519622288, }, + ["AttackAndCastSpeedOnUsingMovementSkillUnique__1"] = { affix = "", "15% increased Attack and Cast Speed if you've used a Movement Skill Recently", statOrder = { 3056 }, level = 1, group = "AttackAndCastSpeedOnUsingMovementSkill", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2831922878, }, + ["CannotBeSlowedBelowBaseUnique__1"] = { affix = "", "Action Speed cannot be modified to below base value", statOrder = { 2808 }, level = 1, group = "CannotBeSlowedBelowBase", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 628716294, }, + ["MovementCannotBeSlowedBelowBaseUnique__1"] = { affix = "", "Movement Speed cannot be modified to below base value", statOrder = { 2809 }, level = 1, group = "MovementCannotBeSlowedBelowBase", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3875592188, }, + ["EnergyShieldStartsAtZero"] = { affix = "", "Your Energy Shield starts at zero", statOrder = { 9475 }, level = 1, group = "EnergyShieldStartsAtZero", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2342431054, }, + ["FlaskElementalPenetrationOfHighestResistUnique__1"] = { affix = "", "During Effect, Damage Penetrates (5-8)% Resistance of each Element for which your Uncapped Elemental Resistance is highest", statOrder = { 799 }, level = 1, group = "FlaskElementalPenetrationOfHighestResist", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, tradeHash = 2444301311, }, + ["FlaskElementalDamageTakenOfLowestResistUnique__1"] = { affix = "", "During Effect, 6% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest", statOrder = { 798 }, level = 1, group = "FlaskElementalDamageTakenOfLowestResist", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1869678332, }, + ["SocketedGemsSupportedByEnduranceChargeOnStunUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", statOrder = { 376 }, level = 1, group = "DisplaySupportedByEnduranceChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3375208082, }, + ["IncreasedDamageToChilledEnemies1"] = { affix = "", "(15-20)% increased Damage with Hits against Chilled Enemies", statOrder = { 6754 }, level = 1, group = "IncreasedDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2097550886, }, + ["IncreasedFireDamgeIfHitRecentlyUnique__1"] = { affix = "", "100% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, }, + ["ImmuneToFreezeAndChillWhileIgnitedUnique__1"] = { affix = "", "Immune to Freeze and Chill while Ignited", statOrder = { 6842 }, level = 1, group = "ImmuneToFreezeAndChillWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1512695141, }, + ["FirePenetrationIfBlockedRecentlyUnique__1"] = { affix = "", "Damage Penetrates 15% of Fire Resistance if you have Blocked Recently", statOrder = { 6161 }, level = 1, group = "FirePenetrationIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2341811700, }, + ["DisplayGrantsBloodOfferingUnique__1_"] = { affix = "", "Grants Level 15 Blood Offering Skill", statOrder = { 490 }, level = 1, group = "DisplayGrantsBloodOffering", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3985468650, }, + ["TriggeredSummonLesserShrineUnique__1"] = { affix = "", "Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", statOrder = { 485 }, level = 1, group = "TriggeredSummonLesserShrine", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1010340836, }, + ["CastLevel1SummonLesserShrineOnKillUnique"] = { affix = "", "(1-100)% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", statOrder = { 485 }, level = 1, group = "CastLevel1SummonLesserShrineOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1010340836, }, + ["AlwaysIgniteWhileBurningUnique__1"] = { affix = "", "You always Ignite while Burning", statOrder = { 4175 }, level = 1, group = "AlwaysIgniteWhileBurning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 2636728487, }, + ["AdditionalBlockWhileNotCursedUnique__1"] = { affix = "", "+10% Chance to Block Attack Damage while not Cursed", statOrder = { 4065 }, level = 1, group = "AdditionalBlockWhileNotCursed", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3619054484, }, + ["LifePerLevelUnique__1"] = { affix = "", "+1 Maximum Life per Level", statOrder = { 7005 }, level = 1, group = "LifePerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1982144275, }, + ["ManaPerLevelUnique__1"] = { affix = "", "+1 Maximum Mana per Level", statOrder = { 7502 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2563691316, }, + ["EnergyShieldPerLevelUnique__1"] = { affix = "", "+1 Maximum Energy Shield per Level", statOrder = { 6009 }, level = 1, group = "EnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3864993324, }, + ["ChaosDegenAuraUnique__1"] = { affix = "", "Trigger Level 20 Death Aura when Equipped", statOrder = { 483 }, level = 1, group = "ChaosDegenAuraUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 825352061, }, + ["HeraldsAlwaysCost45Unique__1"] = { affix = "", "Mana Reservation of Herald Skills is always 45%", statOrder = { 6699 }, level = 1, group = "HeraldsAlwaysCost45", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 262773569, }, + ["StunAvoidancePerHeraldUnique__1"] = { affix = "", "35% chance to avoid being Stunned for each Herald Buff affecting you", statOrder = { 4483 }, level = 1, group = "StunAvoidancePerHerald", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1493090598, }, + ["IncreasedDamageIfShockedRecentlyUnique__1"] = { affix = "", "(20-50)% increased Damage if you have Shocked an Enemy Recently", statOrder = { 5597 }, level = 1, group = "IncreasedDamageIfShockedRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 908650225, }, + ["ShockedEnemiesExplodeUnique__1_"] = { affix = "", "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock", statOrder = { 9262, 9262.1 }, level = 1, group = "ShockedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2706994884, }, + ["UnaffectedByShockUnique__1"] = { affix = "", "Unaffected by Shock", statOrder = { 9759 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1473289174, }, + ["UnaffectedByShockUnique__2"] = { affix = "", "Unaffected by Shock", statOrder = { 9759 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1473289174, }, + ["MinionAttackSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Attack Speed per 50 Dexterity", statOrder = { 8459 }, level = 1, group = "MinionAttackSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHash = 4047895119, }, + ["MinionMovementSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Movement Speed per 50 Dexterity", statOrder = { 8513 }, level = 1, group = "MinionMovementSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHash = 4017879067, }, + ["MinionHitsOnlyKillIgnitedEnemiesUnique__1"] = { affix = "", "Minions' Hits can only Kill Ignited Enemies", statOrder = { 8551 }, level = 1, group = "MinionHitsOnlyKillIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1736403946, }, + ["LocalIncreaseSocketedHeraldLevelUnique__1_"] = { affix = "", "+2 to Level of Socketed Herald Gems", statOrder = { 133 }, level = 1, group = "LocalIncreaseSocketedHeraldLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 1344805487, }, + ["LocalIncreaseSocketedHeraldLevelUnique__2"] = { affix = "", "+4 to Level of Socketed Herald Gems", statOrder = { 133 }, level = 1, group = "LocalIncreaseSocketedHeraldLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 1344805487, }, + ["IncreasedAreaOfSkillsWithNoFrenzyChargesUnique__1_"] = { affix = "", "15% increased Area of Effect while you have no Frenzy Charges", statOrder = { 1716 }, level = 1, group = "IncreasedAreaOfSkillsWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4180687797, }, + ["GlobalCriticalMultiplierWithNoFrenzyChargesUnique__1"] = { affix = "", "+50% Global Critical Damage Bonus while you have no Frenzy Charges", statOrder = { 1715 }, level = 1, group = "GlobalCriticalMultiplierWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3062763405, }, + ["AccuracyRatingWithMaxFrenzyChargesUnique__1"] = { affix = "", "+(400-500) to Accuracy Rating while at Maximum Frenzy Charges", statOrder = { 4032 }, level = 1, group = "AccuracyRatingWithMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3213407110, }, + ["ReducedAttackSpeedOfMovementSkillsUnique__1"] = { affix = "", "Movement Attack Skills have 40% reduced Attack Speed", statOrder = { 8578 }, level = 1, group = "ReducedAttackSpeedOfMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1176492594, }, + ["IncreasedColdDamageIfUsedFireSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Cold Damage if you have used a Fire Skill Recently", statOrder = { 5297 }, level = 1, group = "IncreasedColdDamageIfUsedFireSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3612256591, }, + ["IncreasedFireDamageIfUsedColdSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Fire Damage if you have used a Cold Skill Recently", statOrder = { 6142 }, level = 1, group = "IncreasedFireDamageIfUsedColdSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 4167600809, }, + ["IncreasedDamagePerPowerChargeUnique__1"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 5613 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2034658008, }, + ["ChanceToGainMaximumPowerChargesUnique__1_"] = { affix = "", "25% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6380, 6380.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 1232004574, }, + ["FireDamageCanPoisonUnique__1"] = { affix = "", "Fire Damage from Hits also Contributes to Poison Magnitude", statOrder = { 2517 }, level = 1, group = "FireDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 1985969957, }, + ["ColdDamageCanPoisonUnique__1_"] = { affix = "", "Cold Damage from Hits also Contributes to Poison Magnitude", statOrder = { 2516 }, level = 1, group = "ColdDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 1917124426, }, + ["LightningDamageCanPoisonUnique__1"] = { affix = "", "Lightning Damage from Hits also Contributes to Poison Magntiude", statOrder = { 2518 }, level = 1, group = "LightningDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 1604984482, }, + ["FireSkillsChanceToPoisonUnique__1"] = { affix = "", "Fire Skills have 20% chance to Poison on Hit", statOrder = { 6166 }, level = 1, group = "FireSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2424717327, }, + ["ColdSkillsChanceToPoisonUnique__1"] = { affix = "", "Cold Skills have 20% chance to Poison on Hit", statOrder = { 5327 }, level = 1, group = "ColdSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2373079502, }, + ["LightningSkillsChanceToPoisonUnique__1_"] = { affix = "", "Lightning Skills have 20% chance to Poison on Hit", statOrder = { 7099 }, level = 1, group = "LightningSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 949718413, }, + ["GainManaAsExtraEnergyShieldUnique__1"] = { affix = "", "Gain (10-15)% of maximum Mana as Extra maximum Energy Shield", statOrder = { 1840 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3027830452, }, + ["GrantsTouchOfGodUnique__1"] = { affix = "", "Grants Level 20 Doryani's Touch Skill", statOrder = { 481 }, level = 1, group = "GrantsTouchOfGod", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2498303876, }, + ["GrantsSummonBeastRhoaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Rhoa Skill", statOrder = { 454 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2878779644, }, + ["GrantsSummonBeastUrsaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Ursa Skill", statOrder = { 454 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2878779644, }, + ["GrantsSummonBeastSnakeUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Snake Skill", statOrder = { 454 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2878779644, }, + ["ChaosResistDoubledUnique__1"] = { affix = "", "Chaos Resistance is doubled", statOrder = { 5209 }, level = 1, group = "ChaosResistDoubled", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 1573646535, }, + ["PlayerFarShotUnique__1"] = { affix = "", "Far Shot", statOrder = { 10077 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2483362276, }, + ["MinionSkillManaCostUnique__1_"] = { affix = "", "(10-15)% reduced Mana Cost of Minion Skills", statOrder = { 8530 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHash = 2969128501, }, + ["MinionSkillManaCostUnique__2"] = { affix = "", "(20-30)% reduced Mana Cost of Minion Skills", statOrder = { 8530 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHash = 2969128501, }, + ["TriggeredAbyssalCryUnique__1"] = { affix = "", "Trigger Level 1 Intimidating Cry on Hit", statOrder = { 599 }, level = 1, group = "TriggeredAbyssalCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 372705099, }, + ["TriggeredLightningWarpUnique__1__"] = { affix = "", "Trigger Level 15 Lightning Warp on Hit with this Weapon", statOrder = { 530 }, level = 1, group = "TriggeredLightningWarp", weightKey = { }, weightVal = { }, modTags = { "skill", "caster" }, tradeHash = 2939874331, }, + ["SummonSkeletonsNumberOfSkeletonsToSummonUnique__1"] = { affix = "", "Summon 4 additional Skeletons with Summon Skeletons", statOrder = { 3559 }, level = 1, group = "SummonSkeletonsNumberOfSkeletonsToSummon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1589090910, }, + ["SummonSkeletonsCooldownTimeUnique__1"] = { affix = "", "+1 second to Summon Skeleton Cooldown", statOrder = { 9565 }, level = 1, group = "SummonSkeletonsCooldownTime", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3013430129, }, + ["EnergyShieldRechargeStartsWhenStunnedUnique__1"] = { affix = "", "Energy Shield Recharge starts when you are Stunned", statOrder = { 6022 }, level = 1, group = "EnergyShieldRechargeStartsWhenStunned", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 788946728, }, + ["TrapCooldownRecoveryUnique__1"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 3044 }, level = 1, group = "TrapCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3417757416, }, + ["ReducedExtraDamageFromCritsWithNoPowerChargesUnique__1"] = { affix = "", "You take 50% reduced Extra Damage from Critical Hits while you have no Power Charges", statOrder = { 6117 }, level = 1, group = "ReducedExtraDamageFromCritsWithNoPowerCharges", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3544527742, }, + ["PhysAddedAsChaosWithMaxPowerChargesUnique__1"] = { affix = "", "Gain (8-12)% of Physical Damage as Extra Chaos Damage while at maximum Power Charges", statOrder = { 3054 }, level = 1, group = "PhysAddedAsChaosWithMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 3655758456, }, + ["ScorchingRaySkillUnique__1"] = { affix = "", "Grants Level 25 Scorching Ray Skill", statOrder = { 474 }, level = 1, group = "ScorchingRaySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1540840, }, + ["BlightSkillUnique__1"] = { affix = "", "Grants Level 22 Blight Skill", statOrder = { 478 }, level = 1, group = "BlightSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1198418726, }, + ["HarbingerSkillOnEquipUnique__1"] = { affix = "", "Grants Summon Harbinger of the Arcane Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, + ["HarbingerSkillOnEquipUnique__2"] = { affix = "", "Grants Summon Harbinger of Time Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, + ["HarbingerSkillOnEquipUnique__3"] = { affix = "", "Grants Summon Harbinger of Focus Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, + ["HarbingerSkillOnEquipUnique__4_"] = { affix = "", "Grants Summon Harbinger of Directions Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, + ["HarbingerSkillOnEquipUnique__5"] = { affix = "", "Grants Summon Harbinger of Storms Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, + ["HarbingerSkillOnEquipUnique__6"] = { affix = "", "Grants Summon Harbinger of Brutality Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, + ["HarbingerSkillOnEquipUnique2_1"] = { affix = "", "Grants Summon Greater Harbinger of the Arcane Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, + ["HarbingerSkillOnEquipUnique2_2"] = { affix = "", "Grants Summon Greater Harbinger of Time Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, + ["HarbingerSkillOnEquipUnique2__3"] = { affix = "", "Grants Summon Greater Harbinger of Focus Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, + ["HarbingerSkillOnEquipUnique2_4"] = { affix = "", "Grants Summon Greater Harbinger of Directions Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, + ["HarbingerSkillOnEquipUnique2_5"] = { affix = "", "Grants Summon Greater Harbinger of Storms Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, + ["HarbingerSkillOnEquipUnique2_6"] = { affix = "", "Grants Summon Greater Harbinger of Brutality Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, + ["ChannelledSkillDamageUnique__1"] = { affix = "", "Channelling Skills deal (50-70)% increased Damage", statOrder = { 5198 }, level = 1, group = "ChannelledSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2733285506, }, + ["VolkuurLessPoisonDurationUnique__1"] = { affix = "", "50% less Poison Duration", statOrder = { 2787 }, level = 1, group = "VolkuurLessPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 1237693206, }, + ["ProjectileAttackCriticalStrikeChanceUnique__1"] = { affix = "", "Projectile Attack Skills have (40-60)% increased Critical Hit Chance", statOrder = { 3884 }, level = 1, group = "ProjectileAttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 4095169720, }, + ["SupportedByLesserPoisonUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 373 }, level = 1, group = "SupportedByLesserPoison", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 228165595, }, + ["SupportedByVileToxinsUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Vile Toxins", statOrder = { 372 }, level = 1, group = "SupportedByVileToxins", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1002855537, }, + ["SupportedByInnervateUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Innervate", statOrder = { 371 }, level = 1, group = "SupportedByInnervate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1106668565, }, + ["SupportedByInnervateUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Innervate", statOrder = { 371 }, level = 1, group = "SupportedByInnervate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1106668565, }, + ["SupportedByIceBiteUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Ice Bite", statOrder = { 365 }, level = 1, group = "SupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1384629003, }, + ["GrantsVoidGazeUnique__1"] = { affix = "", "Trigger Level 10 Void Gaze when you use a Skill", statOrder = { 529 }, level = 1, group = "GrantsVoidGaze", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1869144397, }, + ["AddedChaosDamageVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "Attacks with this Weapon deal 80 to 120 added Chaos Damage against", "Enemies affected by at least 5 Poisons", statOrder = { 8408, 8408.1 }, level = 1, group = "AddedChaosDamageVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 3829706447, }, + ["PoisonDurationPerPowerChargeUnique__1"] = { affix = "", "3% increased Poison Duration per Power Charge", statOrder = { 8921 }, level = 1, group = "PoisonDurationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3491499175, }, + ["GainFrenzyChargeOnKillVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons", statOrder = { 6367 }, level = 1, group = "GainFrenzyChargeOnKillVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 496822696, }, + ["GainPowerChargeOnKillVsEnemiesWithLessThan5PoisonsUnique__1"] = { affix = "", "(12-15)% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons", statOrder = { 6406 }, level = 1, group = "GainPowerChargeOnKillVsEnemiesWithLessThan5Poisons", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 352612932, }, + ["PoisonDurationWithOver150IntelligenceUnique__1"] = { affix = "", "(15-25)% increased Poison Duration if you have at least 150 Intelligence", statOrder = { 8922 }, level = 1, group = "PoisonDurationWithOver150Intelligence", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2771181375, }, + ["YouCannotBeHinderedUnique__1"] = { affix = "", "You cannot be Hindered", statOrder = { 9946 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHash = 721014846, }, + ["YouCannotBeHinderedUnique__2"] = { affix = "", "You cannot be Hindered", statOrder = { 9946 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHash = 721014846, }, + ["LocalMaimOnHitChanceUnique__1"] = { affix = "", "(15-20)% chance to Maim on Hit", statOrder = { 7320 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2763429652, }, + ["BlightSecondarySkillEffectDurationUnique__1"] = { affix = "", "Blight has (20-30)% increased Hinder Duration", statOrder = { 4733 }, level = 1, group = "BlightSecondarySkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 4170725899, }, + ["GlobalCooldownRecoveryUnique__1"] = { affix = "", "(15-20)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1004011302, }, + ["GlobalCooldownRecoveryUnique__2"] = { affix = "", "(15-30)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1004011302, }, + ["DebuffTimePassedUnique__1"] = { affix = "", "Debuffs on you expire (15-20)% faster", statOrder = { 5703 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1238227257, }, + ["DebuffTimePassedUnique__2"] = { affix = "", "Debuffs on you expire (80-100)% faster", statOrder = { 5703 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1238227257, }, + ["DebuffTimePassedUnique__3"] = { affix = "", "Debuffs on you expire 100% faster", statOrder = { 5703 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1238227257, }, + ["LifeAndEnergyShieldRecoveryRateUnique_1"] = { affix = "", "(10-15)% increased Energy Shield Recovery rate", "(10-15)% increased Life Recovery rate", statOrder = { 1370, 1376 }, level = 1, group = "LifeAndEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 3982333460, }, + ["LocalGrantsStormCascadeOnAttackUnique__1"] = { affix = "", "Trigger Level 20 Storm Cascade when you Attack", statOrder = { 531 }, level = 1, group = "LocalDisplayGrantsStormCascadeOnAttack", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 818329660, }, + ["ProjectileAttacksChanceToBleedBeastialMinionUnique__1_"] = { affix = "", "Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while", "you have a Bestial Minion", statOrder = { 3885, 3885.1 }, level = 1, group = "ProjectileAttacksChanceToBleedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 4058504226, }, + ["ProjectileAttacksChanceToPoisonBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks have 20% chance to Poison on Hit while", "you have a Bestial Minion", statOrder = { 3887, 3887.1 }, level = 1, group = "ProjectileAttacksChanceToPoisonBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 1114411822, }, + ["ProjectileAttacksChanceToMaimBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks have 20% chance to Maim on Hit while", "you have a Bestial Minion", statOrder = { 3886, 3886.1 }, level = 1, group = "ProjectileAttacksChanceToMaimBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1753916791, }, + ["AddedPhysicalDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (11-16) to (21-25) Physical Damage to Attacks while you have a Bestial Minion", statOrder = { 3888 }, level = 1, group = "AddedPhysicalDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 242822230, }, + ["AddedChaosDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (13-19) to (23-29) Chaos Damage to Attacks while you have a Bestial Minion", statOrder = { 3889 }, level = 1, group = "AddedChaosDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2152491486, }, + ["AttackAndMovementSpeedBeastialMinionUnique__1"] = { affix = "", "(10-15)% increased Attack and Movement Speed while you have a Bestial Minion", statOrder = { 3890 }, level = 1, group = "AttackAndMovementSpeedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 3597737983, }, + ["GrantsDarktongueKissUnique__1"] = { affix = "", "Trigger Level 20 Darktongue's Kiss when you Cast a Curse Spell", statOrder = { 528 }, level = 1, group = "GrantsDarktongueKiss", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3670477918, }, + ["ShockEffectUnique__1"] = { affix = "", "(15-25)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2527686725, }, + ["ShockEffectUnique__2"] = { affix = "", "(1-50)% increased Effect of Lightning Ailments", statOrder = { 7069 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3081816887, }, + ["ShockEffectUnique__3"] = { affix = "", "30% increased Effect of Lightning Ailments", statOrder = { 7069 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3081816887, }, + ["LightningAilmentEffectUnique__1"] = { affix = "", "100% increased Effect of Lightning Ailments", statOrder = { 7069 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3081816887, }, + ["LocalCanSocketIgnoringColourUnique__1"] = { affix = "", "Gems can be Socketed in this Item ignoring Socket Colour", statOrder = { 68 }, level = 1, group = "LocalCanSocketIgnoringColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 899329924, }, + ["LocalNoAttributeRequirementsUnique__1"] = { affix = "", "Has no Attribute Requirements", statOrder = { 815 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2739148464, }, + ["LocalNoAttributeRequirementsUnique__2"] = { affix = "", "Has no Attribute Requirements", statOrder = { 815 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2739148464, }, + ["UniqueLocalNoAttributeRequirements1"] = { affix = "", "Has no Attribute Requirements", statOrder = { 815 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2739148464, }, + ["UniqueLocalNoAttributeRequirements2"] = { affix = "", "Has no Attribute Requirements", statOrder = { 815 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2739148464, }, + ["SocketedGemsInRedSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Red Sockets have +2 to Level", statOrder = { 117 }, level = 1, group = "SocketedGemsInRedSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 2886998024, }, + ["SocketedGemsInGreenSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Green Sockets have +30% to Quality", statOrder = { 118 }, level = 1, group = "SocketedGemsInGreenSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 3799930101, }, + ["SocketedGemsInBlueSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Blue Sockets gain 100% increased Experience", statOrder = { 119 }, level = 1, group = "SocketedGemsInBlueSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 2236460050, }, + ["GainThaumaturgyBuffRotationUnique__1_"] = { affix = "", "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence", statOrder = { 9641 }, level = 1, group = "GainThaumaturgyBuffRotation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2918150296, }, + ["FireBeamLengthUnique__1"] = { affix = "", "10% increased Scorching Ray beam length", statOrder = { 6136 }, level = 1, group = "FireBeamLength", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 702909553, }, + ["GrantsPurityOfFireUnique__1"] = { affix = "", "Grants Level 25 Purity of Fire Skill", statOrder = { 447 }, level = 1, group = "PurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3970432307, }, + ["GrantsPurityOfIceUnique__1"] = { affix = "", "Grants Level 25 Purity of Ice Skill", statOrder = { 453 }, level = 1, group = "PurityOfColdSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 4193390599, }, + ["GrantsPurityOfLightningUnique__1"] = { affix = "", "Grants Level 25 Purity of Lightning Skill", statOrder = { 455 }, level = 1, group = "PurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3822878124, }, + ["GrantsVaalPurityOfFireUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Fire Skill", statOrder = { 522 }, level = 1, group = "VaalPurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2700934265, }, + ["GrantsVaalPurityOfIceUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Ice Skill", statOrder = { 523 }, level = 1, group = "VaalPurityOfIceSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1300125165, }, + ["GrantsVaalPurityOfLightningUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Lightning Skill", statOrder = { 524 }, level = 1, group = "VaalPurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2959369472, }, + ["SpectreLifeUnique__1___"] = { affix = "", "+1000 to Spectre maximum Life", statOrder = { 9379 }, level = 1, group = "SpectreLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 3111456397, }, + ["SpectreIncreasedLifeUnique__1"] = { affix = "", "Spectres have (50-100)% increased maximum Life", statOrder = { 1455 }, level = 1, group = "SpectreIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 3035514623, }, + ["PowerChargeOnManaSpentUnique__1"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7199 }, level = 1, group = "PowerChargeOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3269060224, }, + ["IncreasedCastSpeedPerPowerChargeUnique__1"] = { affix = "", "2% increased Cast Speed per Power Charge", statOrder = { 1285 }, level = 1, group = "IncreasedCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 1604393896, }, + ["ManaRegeneratedPerSecondPerPowerChargeUnique__1"] = { affix = "", "Regenerate 2 Mana per Second per Power Charge", statOrder = { 7518 }, level = 1, group = "ManaRegeneratedPerSecondPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4084763463, }, + ["GainARandomChargePerSecondWhileStationaryUnique__1"] = { affix = "", "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary", statOrder = { 6413 }, level = 1, group = "GainARandomChargePerSecondWhileStationary", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 1438403666, }, + ["LoseAllChargesOnMoveUnique__1"] = { affix = "", "Lose all Frenzy, Endurance, and Power Charges when you Move", statOrder = { 7445 }, level = 1, group = "LoseAllChargesOnMove", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 31415336, }, + ["PassiveEffectivenessJewelUnique__1_"] = { affix = "", "50% increased Effect of non-Keystone Passive Skills in Radius", "Notable Passive Skills in Radius grant nothing", statOrder = { 7421, 7422 }, level = 1, group = "PassiveEffectivenessJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2151971591, }, + ["DegradingMovementSpeedDuringFlaskEffectUnique__1"] = { affix = "", "50% increased Attack, Cast and Movement Speed during Effect", "Reduce Attack, Cast and Movement Speed 10% every second during Effect", statOrder = { 795, 796 }, level = 1, group = "DegradingMovementSpeedDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "attack", "caster", "speed" }, tradeHash = 2001651052, }, + ["TriggeredFireAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Fire Aegis when Equipped", statOrder = { 549 }, level = 1, group = "TriggeredFireAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1128763150, }, + ["TriggeredColdAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Cold Aegis when Equipped", statOrder = { 547 }, level = 1, group = "TriggeredColdAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3918947537, }, + ["TriggeredLightningAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Lightning Aegis when Equipped", statOrder = { 550 }, level = 1, group = "TriggeredLightningAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 850729424, }, + ["TriggeredElementalAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Elemental Aegis when Equipped", statOrder = { 548 }, level = 1, group = "TriggeredElementalAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2602585351, }, + ["TriggeredPhysicalAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Physical Aegis when Equipped", statOrder = { 552 }, level = 1, group = "TriggeredPhysicalAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1892084828, }, + ["SupportedByBlasphemyUnique"] = { affix = "", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 370 }, level = 1, group = "SupportedByBlasphemyUnique", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHash = 539747809, }, + ["GrantCursePillarSkillUnique"] = { affix = "", "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", "20% less Effect of Curses from Socketed Hex Skills", statOrder = { 491, 491.1, 491.2, 491.3 }, level = 1, group = "GrantCursePillarSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1757548756, }, + ["GrantCursePillarSkillUnique__"] = { affix = "", "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", statOrder = { 492, 492.1, 492.2 }, level = 1, group = "GrantCursePillarSkillUnique__", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1517357911, }, + ["ReflectPoisonsToSelfUnique__1"] = { affix = "", "Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you", statOrder = { 8930 }, level = 1, group = "ReflectPoisonsToSelf", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2374357674, }, + ["ReflectBleedingToSelfUnique__1"] = { affix = "", "Bleeding you inflict is Reflected to you", statOrder = { 4673 }, level = 1, group = "ReflectBleedingToSelf", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2658399404, }, + ["ChaosResistancePerPoisonOnSelfUnique__1"] = { affix = "", "+1% to Chaos Resistance per Poison on you", statOrder = { 5210 }, level = 1, group = "ChaosResistancePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 175362265, }, + ["DamagePerPoisonOnSelfUnique__1_"] = { affix = "", "15% increased Damage for each Poison on you up to a maximum of 75%", statOrder = { 5612 }, level = 1, group = "DamagePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1034580601, }, + ["MovementSpeedPerPoisonOnSelfUnique__1_"] = { affix = "", "10% increased Movement Speed for each Poison on you up to a maximum of 50%", statOrder = { 8605 }, level = 1, group = "MovementSpeedPerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1360723495, }, + ["TravelSkillsReflectPoisonUnique__1"] = { affix = "", "Poison you inflict with Travel Skills is Reflected to you if you", "have fewer than 5 Poisons on you", statOrder = { 9704, 9704.1 }, level = 57, group = "TravelSkillsReflectPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 130616495, }, + ["IncreasedArmourWhileBleedingUnique__1"] = { affix = "", "(30-40)% increased Armour while Bleeding", statOrder = { 4305 }, level = 1, group = "IncreasedArmourWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 2466912132, }, + ["CannotBeIgnitedWithStrHigherThanDexUnique__1"] = { affix = "", "Cannot be Ignited if Strength is higher than Dexterity", statOrder = { 4905 }, level = 1, group = "CannotBeIgnitedWithStrHigherThanDex", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 676883595, }, + ["CannotBeFrozenWithDexHigherThanIntUnique__1"] = { affix = "", "Cannot be Frozen if Dexterity is higher than Intelligence", statOrder = { 4900 }, level = 1, group = "CannotBeFrozenWithDexHigherThanInt", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3881126302, }, + ["CannotBeShockedWithIntHigherThanStrUnique__1"] = { affix = "", "Cannot be Shocked if Intelligence is higher than Strength", statOrder = { 4918 }, level = 1, group = "CannotBeShockedWithIntHigherThanStr", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3024242403, }, + ["IncreasedDamagePerLowestAttributeUnique__1"] = { affix = "", "1% increased Damage per 5 of your lowest Attribute", statOrder = { 5607 }, level = 85, group = "IncreasedDamagePerLowestAttribute", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 35476451, }, + ["IncreasedAilmentDurationUnique__1"] = { affix = "", "40% increased Duration of Ailments on Enemies", statOrder = { 1543 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 2419712247, }, + ["IncreasedAilmentDurationUnique__2"] = { affix = "", "30% reduced Duration of Ailments on Enemies", statOrder = { 1543 }, level = 88, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 2419712247, }, + ["IncreasedAilmentDurationUnique__3_"] = { affix = "", "(10-20)% increased Duration of Ailments on Enemies", statOrder = { 1543 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 2419712247, }, + ["CreateSmokeCloudWhenTrapTriggeredUnique__1"] = { affix = "", "Trigger Level 20 Fog of War when your Trap is triggered", statOrder = { 589 }, level = 1, group = "CreateSmokeCloudWhenTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 208447205, }, + ["FlammabilityReservationCostUnique__1"] = { affix = "", "Flammability has no Reservation if Cast as an Aura", statOrder = { 6211 }, level = 1, group = "FlammabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1195140808, }, + ["FrostbiteReservationCostUnique__1"] = { affix = "", "Frostbite has no Reservation if Cast as an Aura", statOrder = { 6264 }, level = 1, group = "FrostbiteNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3062707366, }, + ["ConductivityReservationCostUnique__1"] = { affix = "", "Conductivity has no Reservation if Cast as an Aura", statOrder = { 5350 }, level = 1, group = "ConductivityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1233358566, }, + ["VulnerabilityReservationCostUnique__1_"] = { affix = "", "Vulnerability has no Reservation if Cast as an Aura", statOrder = { 9872 }, level = 1, group = "VulnerabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 531868030, }, + ["DespairReservationCostUnique__1"] = { affix = "", "Despair has no Reservation if Cast as an Aura", statOrder = { 5735 }, level = 1, group = "DespairNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 450601566, }, + ["TemporalChainsReservationCostUnique__1"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 9638 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2100165275, }, + ["TemporalChainsReservationCostUnique__2"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 9638 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2100165275, }, + ["PunishmentReservationCostUnique__1"] = { affix = "", "Punishment has no Reservation if Cast as an Aura", statOrder = { 9001 }, level = 1, group = "PunishmentNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2097195894, }, + ["EnfeebleReservationCostUnique__1"] = { affix = "", "Enfeeble has no Reservation if Cast as an Aura", statOrder = { 6038 }, level = 1, group = "EnfeebleNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 56919069, }, + ["ElementalWeaknessReservationCostUnique__1"] = { affix = "", "Elemental Weakness has no Reservation if Cast as an Aura", statOrder = { 5903 }, level = 1, group = "ElementalWeaknessNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3416664215, }, + ["IncreasedColdDamageWhileOffhandIsEmpty_"] = { affix = "", "(100-200)% increased Cold Damage while your Off Hand is empty", statOrder = { 5305 }, level = 1, group = "IncreasedColdDamageWhileOffhandIsEmpty", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3520048646, }, + ["DisplayIronReflexesFor8SecondsUnique__1"] = { affix = "", "Every 16 seconds you gain Iron Reflexes for 8 seconds", statOrder = { 10089 }, level = 1, group = "DisplayIronReflexesFor8Seconds", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2200114771, }, + ["ArborixMoreDamageAtCloseRangeUnique__1"] = { affix = "", "30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes", statOrder = { 10094 }, level = 1, group = "ArborixMoreDamageAtCloseRange", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 304032021, }, + ["FarShotWhileYouDoNotHaveIronReflexesUnique__1_"] = { affix = "", "You have Far Shot while you do not have Iron Reflexes", statOrder = { 10098 }, level = 1, group = "FarShotWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3284029342, }, + ["AttackCastMovementSpeedWhileYouDoNotHaveIronReflexesUnique__1"] = { affix = "", "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes", statOrder = { 10097 }, level = 1, group = "AttackCastMovementSpeedWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 3476327198, }, + ["ElementalDamageCanShockUnique__1__"] = { affix = "", "All Elemental Damage from Hits Contributes to Shock Chance", statOrder = { 2524 }, level = 1, group = "ElementalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2933625540, }, + ["EnemiesTakeIncreasedDamagePerAilmentTypeUnique__1"] = { affix = "", "Enemies take 5% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 5846, 5846.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1509533589, }, + ["DeathWalk"] = { affix = "", "Triggers Level 20 Death Walk when Equipped", statOrder = { 565 }, level = 1, group = "DeathWalk", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 651875072, }, + ["IntimidateOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 7158 }, level = 1, group = "IntimidateOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 642457541, }, + ["FortifyOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify", statOrder = { 7240 }, level = 1, group = "FortifyOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 186482813, }, + ["RageOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit, no more than once every second", statOrder = { 7238 }, level = 1, group = "RageOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3892691596, }, + ["MaimOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks", statOrder = { 7159 }, level = 1, group = "MaimOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2750004091, }, + ["BlindOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks", statOrder = { 7167 }, level = 1, group = "BlindOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2044840211, }, + ["OnslaughtOnKillWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill", statOrder = { 7156 }, level = 1, group = "OnslaughtOnKillWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2863332749, }, + ["DealNoNonElementalDamageUnique__1"] = { affix = "", "Deal no Non-Elemental Damage", statOrder = { 5695 }, level = 1, group = "DealNoNonElementalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 4031851097, }, + ["DisplaySupportedByElementalPenetrationUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 25 Elemental Penetration", statOrder = { 196 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1994143317, }, + ["DisplaySupportedByElementalPenetrationUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 1 Elemental Penetration", statOrder = { 196 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1994143317, }, + ["GainSpiritChargeOnKillChanceUnique__1"] = { affix = "", "Gain a Spirit Charge on Kill", statOrder = { 3941 }, level = 1, group = "GainSpiritChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 570644802, }, + ["GainLifeWhenSpiritChargeExpiresOrConsumedUnique__2"] = { affix = "", "Recover (2-3)% of maximum Life when you lose a Spirit Charge", statOrder = { 3943 }, level = 1, group = "GainLifeWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 305634887, }, + ["GainESWhenSpiritChargeExpiresOrConsumedUnique__1"] = { affix = "", "Recover (2-3)% of maximum Energy Shield when you lose a Spirit Charge", statOrder = { 3944 }, level = 1, group = "GainESWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1996775727, }, + ["PhysAddedAsEachElementPerSpiritChargeUnique__1"] = { affix = "", "Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge", statOrder = { 8725 }, level = 1, group = "PhysAddedAsEachElementPerSpiritCharge", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, tradeHash = 3137640399, }, + ["LocalDisplayGrantLevelXSpiritBurstUnique__1"] = { affix = "", "Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge", statOrder = { 590 }, level = 1, group = "LocalDisplayGrantLevelXSpiritBurst", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1992516007, }, + ["GainSpiritChargeEverySecondUnique__1"] = { affix = "", "Gain a Spirit Charge every second", statOrder = { 3940 }, level = 1, group = "GainSpiritChargeEverySecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 328131617, }, + ["LoseSpiritChargesOnSavageHitUnique__1_"] = { affix = "", "You lose all Spirit Charges when taking a Savage Hit", statOrder = { 3942 }, level = 1, group = "LoseSpiritChargesOnSavageHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2663792764, }, + ["MaximumSpiritChargesPerAbyssJewelEquippedUnique__1"] = { affix = "", "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", statOrder = { 3938 }, level = 1, group = "MaximumSpiritChargesPerAbyssJewelEquipped", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4053097676, }, + ["MaximumSpiritChargesPerAbyssJewelEquippedUnique__2"] = { affix = "", "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", statOrder = { 3938 }, level = 1, group = "MaximumSpiritChargesPerAbyssJewelEquipped", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4053097676, }, + ["GainDebilitatingPresenceUnique__1"] = { affix = "", "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy", statOrder = { 9990 }, level = 1, group = "GainDebilitatingPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3442107889, }, + ["LocalDisplayGrantLevelXShadeFormUnique__1"] = { affix = "", "20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill", statOrder = { 570 }, level = 1, group = "LocalDisplayGrantLevelXShadeForm", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3308936917, }, + ["TriggerShadeFormWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Shade Form when Hit", statOrder = { 571 }, level = 1, group = "TriggerShadeFormWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2603798371, }, + ["AddedPhysicalDamagePerEnduranceChargeUnique__1"] = { affix = "", "Adds 5 to 8 Physical Damage per Endurance Charge", statOrder = { 8426 }, level = 1, group = "AddedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 173438493, }, + ["ChaosResistancePerEnduranceChargeUnique__1_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5208 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 4210011075, }, + ["ReducedElementalDamageTakenHitsPerEnduranceChargeUnique__1"] = { affix = "", "1% reduced Elemental Damage taken from Hits per Endurance Charge", statOrder = { 5873 }, level = 1, group = "ReducedElementalDamageTakenHitsPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 1686913105, }, + ["ArmourPerEnduranceChargeUnique__1"] = { affix = "", "+500 to Armour per Endurance Charge", statOrder = { 8877 }, level = 1, group = "ArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 513221334, }, + ["AddedColdDamagePerFrenzyChargeUnique__1"] = { affix = "", "12 to 14 Added Cold Damage per Frenzy Charge", statOrder = { 3819 }, level = 1, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3648858570, }, + ["AvoidElementalDamagePerFrenzyChargeUnique__1"] = { affix = "", "2% chance to Avoid Elemental Damage from Hits per Frenzy Charge", statOrder = { 2970 }, level = 1, group = "AvoidElementalDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 1649883131, }, + ["MovementVelocityPerFrenzyChargeUnique__1"] = { affix = "", "4% increased Movement Speed per Frenzy Charge", statOrder = { 1484 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, }, + ["MovementVelocityPerFrenzyChargeUnique__2"] = { affix = "", "6% increased Movement Speed per Frenzy Charge", statOrder = { 1484 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, }, + ["AddedLightningDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 3 to 9 Lightning Damage to Spells per Power Charge", statOrder = { 8423 }, level = 1, group = "AddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 4085417083, }, + ["AdditionalCriticalStrikeChancePerPowerChargeUnique__1"] = { affix = "", "+0.3% Critical Hit Chance per Power Charge", statOrder = { 4071 }, level = 1, group = "AdditionalCriticalStrikeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1818900806, }, + ["CriticalMultiplierPerPowerChargeUnique__1"] = { affix = "", "(6-10)% increased Critical Damage Bonus per Power Charge", statOrder = { 2885 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 4164870816, }, + ["RaiseSpectreManaCostUnique__1_"] = { affix = "", "(40-50)% reduced Mana Cost of Raise Spectre", statOrder = { 9056 }, level = 1, group = "RaiseSpectreManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHash = 262301496, }, + ["VoidShotOnSkillUseUnique__1_"] = { affix = "", "Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows with a Non-Triggered Skill", statOrder = { 593 }, level = 1, group = "VoidShotOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3262369040, }, + ["MaximumVoidArrowsUnique__1"] = { affix = "", "5 Maximum Void Charges", "Gain a Void Charge every 0.5 seconds", statOrder = { 3913, 6491 }, level = 1, group = "MaximumVoidArrows", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3320313293, }, + ["CannotBeStunnedByAttacksElderItemUnique__1"] = { affix = "", "Cannot be Stunned by Attacks if your other Ring is an Elder Item", statOrder = { 3894 }, level = 1, group = "CannotBeStunnedByAttacksElderItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2926399803, }, + ["AttackDamageShaperItemUnique__1"] = { affix = "", "(60-80)% increased Attack Damage if your other Ring is a Shaper Item", statOrder = { 3891 }, level = 1, group = "AttackDamageShaperItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1555962658, }, + ["SpellDamageElderItemUnique__1_"] = { affix = "", "(60-80)% increased Spell Damage if your other Ring is an Elder Item", statOrder = { 3892 }, level = 1, group = "SpellDamageElderItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2921373173, }, + ["CannotBeStunnedBySpellsShaperItemUnique__1"] = { affix = "", "Cannot be Stunned by Spells if your other Ring is a Shaper Item", statOrder = { 3893 }, level = 1, group = "CannotBeStunnedBySpellsShaperItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2312817839, }, + ["RecoverLifeInstantlyOnManaFlaskUnique__1"] = { affix = "", "Recover (8-10)% of maximum Life when you use a Mana Flask", statOrder = { 3900 }, level = 1, group = "RecoverLifeInstantlyOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 1926816773, }, + ["NonInstantManaRecoveryAlsoAffectsLifeUnique__1"] = { affix = "", "Non-instant Recovery from Mana Flasks also applies to Life", statOrder = { 3901 }, level = 1, group = "NonInstantManaRecoveryAlsoAffectsLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 2262007777, }, + ["SpellDamagePer200ManaSpentRecentlyUnique__1__"] = { affix = "", "(20-25)% increased Spell damage for each 200 total Mana you have Spent Recently", statOrder = { 3903 }, level = 1, group = "SpellDamagePerManaSpent", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 347220474, }, + ["ManaCostPer200ManaSpentRecentlyUnique__1"] = { affix = "", "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently", statOrder = { 3902 }, level = 1, group = "ManaCostPerManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2650053239, }, + ["SpellAddedPhysicalDamageUnique__1_"] = { affix = "", "Battlemage", statOrder = { 10032 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 448903047, }, + ["SpellAddedPhysicalDamageUnique__2_"] = { affix = "", "Adds (6-8) to (10-12) Physical Damage to Spells", statOrder = { 1240 }, level = 1, group = "SpellAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHash = 2435536961, }, + ["TentacleSmashOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Tentacle Whip on Kill", statOrder = { 597 }, level = 100, group = "TentacleSmashOnKill", weightKey = { }, weightVal = { }, modTags = { "skill", "green_herring" }, tradeHash = 1350938937, }, + ["GlimpseOfEternityWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Glimpse of Eternity when Hit", statOrder = { 596 }, level = 1, group = "GlimpseOfEternityWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3141831683, }, + ["SummonVoidSphereOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill", statOrder = { 598 }, level = 100, group = "SummonVoidSphereOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2143990571, }, + ["PetrificationStatueUnique__1"] = { affix = "", "Grants Level 20 Petrification Statue Skill", statOrder = { 488 }, level = 1, group = "GrantsPetrificationStatue", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1904419785, }, + ["GrantsCatAspect1"] = { affix = "", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 500 }, level = 1, group = "GrantsCatAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1265282021, }, + ["GrantsBirdAspect1_"] = { affix = "", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 496 }, level = 1, group = "GrantsBirdAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3914740665, }, + ["GrantsSpiderAspect1"] = { affix = "", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 519 }, level = 1, group = "GrantsSpiderAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 956546305, }, + ["GrantsIntimidatingCry1"] = { affix = "", "Grants Level 20 Intimidating Cry Skill", statOrder = { 512 }, level = 1, group = "GrantsIntimidatingCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 989878105, }, + ["GrantsCrabAspect1_"] = { affix = "", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 501 }, level = 1, group = "GrantsCrabAspect", weightKey = { }, weightVal = { }, modTags = { "blue_herring", "skill" }, tradeHash = 4102318278, }, + ["ItemQuantityOnLowLifeUnique__1"] = { affix = "", "(10-16)% increased Quantity of Items found when on Low Life", statOrder = { 1388 }, level = 65, group = "ItemQuantityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 760855772, }, + ["DamagePer15DexterityUnique__1"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 5602 }, level = 72, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2062174346, }, + ["DamagePer15DexterityUnique__2"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 5602 }, level = 1, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2062174346, }, + ["LifeRegeneratedPerMinuteWhileIgnitedUnique__1"] = { affix = "", "Regenerate (75-125) Life per second while Ignited", statOrder = { 7031 }, level = 74, group = "LifeRegeneratedPerMinuteWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 952897668, }, + ["IncreasedElementalDamageIfKilledCursedEnemyRecentlyUnique__1"] = { affix = "", "20% increased Elemental Damage if you've Killed a Cursed Enemy Recently", statOrder = { 5854 }, level = 77, group = "IncreasedElementalDamageIfKilledCursedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 850820277, }, + ["DoubleDamagePer500StrengthUnique__1"] = { affix = "", "6% chance to deal Double Damage per 500 Strength", statOrder = { 5129 }, level = 63, group = "DoubleDamagePer500Strength", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4104492115, }, + ["BestiaryLeague"] = { affix = "", "Areas contain Beasts to hunt", statOrder = { 8130 }, level = 1, group = "BestiaryLeague", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1158543967, }, + ["RagingSpiritDurationResetOnIgnitedEnemyUnique__1"] = { affix = "", "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy", statOrder = { 9052 }, level = 1, group = "RagingSpiritDurationResetOnIgnitedEnemy", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2761732967, }, + ["FrenzyChargePer50RampageStacksUnique__1"] = { affix = "", "Gain a Frenzy Charge on every 50th Rampage Kill", statOrder = { 3934 }, level = 1, group = "FrenzyChargePer50RampageStacks", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 637690626, }, + ["AreaOfEffectPer25RampageStacksUnique__1_"] = { affix = "", "2% increased Area of Effect per 25 Rampage Kills", statOrder = { 3933 }, level = 1, group = "AreaOfEffectPer25RampageStacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4119032338, }, + ["UnaffectedByCursesUnique__1"] = { affix = "", "Unaffected by Curses", statOrder = { 2148 }, level = 85, group = "UnaffectedByCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3809896400, }, + ["ChanceToChillAttackersOnBlockUnique__1"] = { affix = "", "(30-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5265 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHash = 864879045, }, + ["ChanceToChillAttackersOnBlockUnique__2__"] = { affix = "", "Chill Attackers for 4 seconds on Block", statOrder = { 5265 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHash = 864879045, }, + ["ChanceToShockAttackersOnBlockUnique__1_"] = { affix = "", "(30-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9245 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHash = 575111651, }, + ["ChanceToShockAttackersOnBlockUnique__2"] = { affix = "", "Shock Attackers for 4 seconds on Block", statOrder = { 9245 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHash = 575111651, }, + ["SupportedByTrapAndMineDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", statOrder = { 322 }, level = 1, group = "SupportedByTrapAndMineDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3814066599, }, + ["SupportedByClusterTrapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Cluster Trap", statOrder = { 320 }, level = 1, group = "SupportedByClusterTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2854183975, }, + ["AviansMightColdDamageUnique__1"] = { affix = "", "Adds (20-25) to (37-40) Cold Damage while you have Avian's Might", statOrder = { 8413 }, level = 1, group = "AviansMightColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3485231932, }, + ["AviansMightLightningDamageUnique__1_"] = { affix = "", "Adds (1-3) to (55-62) Lightning Damage while you have Avian's Might", statOrder = { 8424 }, level = 1, group = "AviansMightLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 855634301, }, + ["AviansMightDurationUnique__1"] = { affix = "", "+(-2-2) seconds to Avian's Might Duration", statOrder = { 4465 }, level = 1, group = "AviansMightDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1251945210, }, + ["GrantAviansAspectToAlliesUnique__1"] = { affix = "", "Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies", statOrder = { 4330 }, level = 1, group = "GrantAviansAspectToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2544408546, }, + ["AvianAspectBuffEffectUnique__1"] = { affix = "", "100% increased Aspect of the Avian Buff Effect", statOrder = { 4329 }, level = 1, group = "AvianAspectBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1746347097, }, + ["AviansFlightLifeRegenerationUnique__1"] = { affix = "", "Regenerate 100 Life per Second while you have Avian's Flight", statOrder = { 7033 }, level = 1, group = "AviansFlightLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2589482056, }, + ["AviansFlightManaRegenerationUnique__1_"] = { affix = "", "Regenerate 12 Mana per Second while you have Avian's Flight", statOrder = { 7526 }, level = 1, group = "AviansFlightManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1495376076, }, + ["AviansFlightDurationUnique__1"] = { affix = "", "+(-2-2) seconds to Avian's Flight Duration", statOrder = { 4464 }, level = 1, group = "AviansFlightDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1251731548, }, + ["GrantsAvianTornadoUnique__1__"] = { affix = "", "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight", statOrder = { 572 }, level = 1, group = "GrantsAvianTornado", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2554328719, }, + ["ElementalDamageUniqueJewel_1"] = { affix = "", "(10-15)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, + ["ElementalHitDisableFireUniqueJewel_1"] = { affix = "", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire", statOrder = { 7391, 7394 }, level = 1, group = "ElementalHitDisableFireJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 2542902299, }, + ["ElementalHitDisableColdUniqueJewel_1"] = { affix = "", "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage", "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold", statOrder = { 7390, 7393 }, level = 1, group = "ElementalHitDisableColdJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2676447058, }, + ["ElementalHitDisableLightningUniqueJewel_1"] = { affix = "", "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage", "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning", statOrder = { 7392, 7395 }, level = 1, group = "ElementalHitDisableLightningJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1007157231, }, + ["ChargeBonusEnduranceChargeDuration"] = { affix = "", "(20-40)% increased Endurance Charge Duration", statOrder = { 1789 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1170174456, }, + ["ChargeBonusFrenzyChargeDuration"] = { affix = "", "(20-40)% increased Frenzy Charge Duration", statOrder = { 1791 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 3338298622, }, + ["ChargeBonusPowerChargeDuration"] = { affix = "", "(20-40)% increased Power Charge Duration", statOrder = { 1806 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3872306017, }, + ["ChargeBonusEnduranceChargeOnKill"] = { affix = "", "10% chance to gain an Endurance Charge on kill", statOrder = { 2293 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1054322244, }, + ["ChargeBonusFrenzyChargeOnKill"] = { affix = "", "10% chance to gain a Frenzy Charge on kill", statOrder = { 2295 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, }, + ["ChargeBonusPowerChargeOnKill"] = { affix = "", "10% chance to gain a Power Charge on kill", statOrder = { 2297 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, }, + ["ChargeBonusMovementVelocityPerEnduranceCharge"] = { affix = "", "1% increased Movement Speed per Endurance Charge", statOrder = { 8603 }, level = 1, group = "MovementVelocityPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2116250000, }, + ["ChargeBonusMovementVelocityPerFrenzyCharge"] = { affix = "", "1% increased Movement Speed per Frenzy Charge", statOrder = { 1484 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, }, + ["ChargeBonusMovementVelocityPerPowerCharge"] = { affix = "", "1% increased Movement Speed per Power Charge", statOrder = { 8606 }, level = 1, group = "MovementVelocityPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3774108776, }, + ["ChargeBonusLifeRegenerationPerEnduranceCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Endurance Charge", statOrder = { 1375 }, level = 1, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 989800292, }, + ["ChargeBonusLifeRegenerationPerFrenzyCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Frenzy Charge", statOrder = { 2292 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2828673491, }, + ["ChargeBonusLifeRegenerationPerPowerCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Power Charge", statOrder = { 7053 }, level = 1, group = "LifeRegenerationPercentPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3961213398, }, + ["ChargeBonusDamagePerEnduranceCharge"] = { affix = "", "5% increased Damage per Endurance Charge", statOrder = { 2812 }, level = 1, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3515686789, }, + ["ChargeBonusDamagePerFrenzyCharge"] = { affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 2889 }, level = 1, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 902747843, }, + ["ChargeBonusDamagePerPowerCharge"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 5613 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2034658008, }, + ["ChargeBonusAddedFireDamagePerEnduranceCharge"] = { affix = "", "(7-9) to (13-14) Fire Damage per Endurance Charge", statOrder = { 8416 }, level = 1, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 1073447019, }, + ["ChargeBonusAddedColdDamagePerFrenzyCharge"] = { affix = "", "(6-8) to (12-13) Added Cold Damage per Frenzy Charge", statOrder = { 3819 }, level = 1, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3648858570, }, + ["ChargeBonusAddedLightningDamagePerPowerCharge"] = { affix = "", "(1-2) to (18-20) Lightning Damage per Power Charge", statOrder = { 8420 }, level = 1, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1917107159, }, + ["ChargeBonusBlockChancePerEnduranceCharge"] = { affix = "", "+1% Chance to Block Attack Damage per Endurance Charge", statOrder = { 4054 }, level = 1, group = "BlockChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2355741828, }, + ["ChargeBonusBlockChancePerFrenzyCharge_"] = { affix = "", "+1% Chance to Block Attack Damage per Frenzy Charge", statOrder = { 4055 }, level = 1, group = "BlockChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2148784747, }, + ["ChargeBonusBlockChancePerPowerCharge_"] = { affix = "", "+1% Chance to Block Attack Damage per Power Charge", statOrder = { 4056 }, level = 1, group = "BlockChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2856326982, }, + ["ChargeBonusFireDamageAddedAsChaos__"] = { affix = "", "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge", statOrder = { 8713 }, level = 1, group = "FireDamageAddedAsChaosPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHash = 700405539, }, + ["ChargeBonusColdDamageAddedAsChaos"] = { affix = "", "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge", statOrder = { 8712 }, level = 1, group = "ColdDamageAddedAsChaosPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHash = 2764080642, }, + ["ChargeBonusLightningDamageAddedAsChaos"] = { affix = "", "Gain 1% of Lightning Damage as Chaos Damage per Power Charge", statOrder = { 8715 }, level = 1, group = "LightningDamageAddedAsChaosPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHash = 2650222338, }, + ["ChargeBonusArmourPerEnduranceCharge"] = { affix = "", "6% increased Armour per Endurance Charge", statOrder = { 8879 }, level = 1, group = "IncreasedArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1447080724, }, + ["ChargeBonusEvasionPerFrenzyCharge"] = { affix = "", "8% increased Evasion Rating per Frenzy Charge", statOrder = { 1365 }, level = 1, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 660404777, }, + ["ChargeBonusEnergyShieldPerPowerCharge"] = { affix = "", "3% increased Energy Shield per Power Charge", statOrder = { 6011 }, level = 1, group = "IncreasedEnergyShieldPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2189382346, }, + ["ChargeBonusChanceToGainMaximumEnduranceCharges"] = { affix = "", "15% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", statOrder = { 3789 }, level = 1, group = "ChanceToGainMaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 2713233613, }, + ["ChargeBonusChanceToGainMaximumFrenzyCharges"] = { affix = "", "15% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", statOrder = { 6379 }, level = 1, group = "ChanceToGainMaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 2119664154, }, + ["ChargeBonusChanceToGainMaximumPowerCharges"] = { affix = "", "15% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6380, 6380.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 1232004574, }, + ["ChargeBonusEnduranceChargeIfHitRecently"] = { affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6350 }, level = 1, group = "EnduranceChargeIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 2894476716, }, + ["ChargeBonusFrenzyChargeOnHit__"] = { affix = "", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1515 }, level = 1, group = "FrenzyChargeOnHitChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 2323242761, }, + ["ChargeBonusPowerChargeOnCrit"] = { affix = "", "20% chance to gain a Power Charge on Critical Hit", statOrder = { 1512 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHash = 3814876985, }, + ["ChargeBonusAttackAndCastSpeedPerEnduranceCharge"] = { affix = "", "1% increased Attack and Cast Speed per Endurance Charge", statOrder = { 4343 }, level = 1, group = "AttackAndCastSpeedPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 3618888098, }, + ["ChargeBonusAccuracyRatingPerFrenzyCharge"] = { affix = "", "10% increased Accuracy Rating per Frenzy Charge", statOrder = { 1710 }, level = 1, group = "AccuracyRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 3700381193, }, + ["ChargeBonusAttackAndCastSpeedPerPowerCharge"] = { affix = "", "1% increased Attack and Cast Speed per Power Charge", statOrder = { 4344 }, level = 1, group = "AttackAndCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 987588151, }, + ["ChargeBonusCriticalStrikeChancePerEnduranceCharge"] = { affix = "", "6% increased Critical Hit Chance per Endurance Charge", statOrder = { 5459 }, level = 1, group = "CriticalStrikeChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 2547511866, }, + ["ChargeBonusCriticalStrikeChancePerFrenzyCharge"] = { affix = "", "6% increased Critical Hit Chance per Frenzy Charge", statOrder = { 5460 }, level = 1, group = "CriticalStrikeChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 707887043, }, + ["ChargeBonusCriticalStrikeMultiplierPerPowerCharge"] = { affix = "", "3% increased Critical Damage Bonus per Power Charge", statOrder = { 2885 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 4164870816, }, + ["ChargeBonusChaosResistancePerEnduranceCharge_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5208 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 4210011075, }, + ["ChargeBonusPhysicalDamageReductionPerFrenzyCharge__"] = { affix = "", "1% additional Physical Damage Reduction per Frenzy Charge", statOrder = { 8870 }, level = 1, group = "PhysicalDamageReductionPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 1226049915, }, + ["ChargeBonusPhysicalDamageReductionPerPowerCharge_"] = { affix = "", "1% additional Physical Damage Reduction per Power Charge", statOrder = { 8872 }, level = 1, group = "PhysicalDamageReductionPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3986347319, }, + ["ChargeBonusMaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1486 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1515657623, }, + ["ChargeBonusMaximumFrenzyCharges"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, }, + ["ChargeBonusMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, + ["ChargeBonusIntimidateOnHitEnduranceCharges"] = { affix = "", "Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges", statOrder = { 6919 }, level = 1, group = "IntimidateOnHitMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2877370216, }, + ["ChargeBonusOnslaughtOnHitFrenzyCharges_"] = { affix = "", "Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges", statOrder = { 6388 }, level = 1, group = "OnslaughtOnHitMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2408544213, }, + ["ChargeBonusArcaneSurgeOnHitPowerCharges"] = { affix = "", "Gain Arcane Surge on Hit with Spells while at maximum Power Charges", statOrder = { 6322 }, level = 1, group = "ArcaneSurgeOnHitMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 813119588, }, + ["ChargeBonusCannotBeStunnedEnduranceCharges__"] = { affix = "", "You cannot be Stunned while at maximum Endurance Charges", statOrder = { 3609 }, level = 1, group = "CannotBeStunnedMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3780437763, }, + ["ChargeBonusFlaskChargeOnCritFrenzyCharges"] = { affix = "", "Gain a Flask Charge when you deal a Critical Hit while at maximum Frenzy Charges", statOrder = { 6356 }, level = 1, group = "FlaskChargeOnCritMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3371432622, }, + ["ChargeBonusAdditionalCursePowerCharges"] = { affix = "", "You can apply an additional Curse while at maximum Power Charges", statOrder = { 8745 }, level = 1, group = "AdditionalCurseMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 761598374, }, + ["ChargeBonusIronReflexesFrenzyCharges"] = { affix = "", "You have Iron Reflexes while at maximum Frenzy Charges", statOrder = { 10083 }, level = 1, group = "IronReflexesMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 1990354706, }, + ["ChargeBonusMindOverMatterPowerCharges"] = { affix = "", "You have Mind over Matter while at maximum Power Charges", statOrder = { 10084 }, level = 1, group = "MindOverMatterMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 1876857497, }, + ["CurseCastSpeedUnique__1"] = { affix = "", "Curse Skills have (10-20)% increased Cast Speed", statOrder = { 1869 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "curse" }, tradeHash = 2378065031, }, + ["CurseCastSpeedUnique__2"] = { affix = "", "Curse Skills have (8-12)% increased Cast Speed", statOrder = { 1869 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "curse" }, tradeHash = 2378065031, }, + ["TriggerSocketedCurseSkillsOnCurseUnique__1_"] = { affix = "", "Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown", statOrder = { 595 }, level = 1, group = "TriggerCurseOnCurse", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem", "curse" }, tradeHash = 3657377047, }, + ["ElementalDamagePercentAddedAsChaosPerShaperItemUnique__1"] = { affix = "", "Gain (3-5)% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped", statOrder = { 3898 }, level = 1, group = "ElementalDamagePercentAddedAsChaosPerShaperItem", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHash = 1860646468, }, + ["HitsIgnoreChaosResistanceAllShaperItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items", statOrder = { 6771 }, level = 1, group = "HitsIgnoreChaosResistanceAllShaperItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 4234677275, }, + ["HitsIgnoreChaosResistanceAllElderItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items", statOrder = { 6770 }, level = 1, group = "HitsIgnoreChaosResistanceAllElderItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 89314980, }, + ["ColdDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%", statOrder = { 5296 }, level = 1, group = "ColdDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2517031897, }, + ["LightningDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75%", statOrder = { 7077 }, level = 1, group = "LightningDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2642525868, }, + ["FlaskConsecratedGroundDurationUnique__1"] = { affix = "", "(15-30)% reduced Duration", statOrder = { 907 }, level = 1, group = "FlaskConsecratedGroundDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 156096868, }, + ["FlaskConsecratedGroundAreaOfEffectUnique__1_"] = { affix = "", "Consecrated Ground created by this Flask has Tripled Radius", statOrder = { 639 }, level = 1, group = "FlaskConsecratedGroundAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 806698863, }, + ["FlaskConsecratedGroundDamageTakenUnique__1"] = { affix = "", "Consecrated Ground created during Effect applies (7-10)% increased Damage taken to Enemies", statOrder = { 737 }, level = 1, group = "FlaskConsecratedGroundDamageTaken", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, tradeHash = 1866211373, }, + ["FlaskConsecratedGroundEffectUnique__1_"] = { affix = "", "+(1-2)% to Critical Hit Chance against Enemies on Consecrated Ground during Effect", statOrder = { 733 }, level = 1, group = "FlaskConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHash = 1535051459, }, + ["FlaskConsecratedGroundEffectCriticalStrikeUnique__1"] = { affix = "", "(100-150)% increased Critical Hit Chance against Enemies on Consecrated Ground during Effect", statOrder = { 771 }, level = 1, group = "FlaskConsecratedGroundEffectCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHash = 3278399103, }, + ["ShockOnKillUnique__1"] = { affix = "", "Enemies you kill are Shocked", statOrder = { 1582 }, level = 1, group = "ShockOnKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 209387074, }, + ["DivineChargeOnHitUnique__1_"] = { affix = "", "+10 to maximum Divine Charges", "Gain a Divine Charge on Hit", statOrder = { 3945, 3946 }, level = 1, group = "DivineChargeOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666908929, }, + ["GainDivinityOnMaxDivineChargeUnique__1"] = { affix = "", "You gain Divinity for 10 seconds on reaching maximum Divine Charges", "Lose all Divine Charges when you gain Divinity", statOrder = { 3948, 3948.1 }, level = 1, group = "GainDivinityOnMaxDivineCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1174243390, }, + ["NearbyEnemiesCannotCritUnique__1"] = { affix = "", "Never deal Critical Hits", "Nearby Enemies cannot deal Critical Hits", statOrder = { 1842, 7210 }, level = 1, group = "NearbyEnemiesCannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1239325414, }, + ["NearbyAlliesCannotBeSlowedUnique__1"] = { affix = "", "Action Speed cannot be modified to below base value", "Nearby Allies' Action Speed cannot be modified to below base value", statOrder = { 2808, 7203 }, level = 1, group = "NearbyAlliesCannotBeSlowed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2148696191, }, + ["ManaReservationPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 7536 }, level = 1, group = "ManaReservationPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2676451350, }, + ["ManaReservationEfficiencyPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 7537 }, level = 1, group = "ManaReservationEfficiencyPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1212083058, }, + ["DefencesPer100StrengthAuraUnique__1"] = { affix = "", "Nearby Allies have (4-6)% increased Defences per 100 Strength you have", statOrder = { 2627 }, level = 1, group = "DefencesPer100StrengthAura", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 3767939384, }, + ["BlockPer100StrengthAuraUnique__1___"] = { affix = "", "Nearby Allies have 1% Chance to Block Attack Damage per 100 Strength you have", statOrder = { 2626 }, level = 1, group = "BlockPer100StrengthAura", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3941641418, }, + ["CriticalMultiplierPer100DexterityAuraUnique__1"] = { affix = "", "Nearby Allies have +(6-8)% to Critical Damage Bonus per 100 Dexterity you have", statOrder = { 2628 }, level = 1, group = "CriticalMultiplierPer100DexterityAura", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 1438488526, }, + ["CastSpeedPer100IntelligenceAuraUnique__1"] = { affix = "", "Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have", statOrder = { 2629 }, level = 1, group = "CastSpeedPer100IntelligenceAura", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2373999301, }, + ["GrantsAccuracyAuraSkillUnique__1"] = { affix = "", "Grants Level 30 Precision Skill", statOrder = { 495 }, level = 81, group = "AccuracyAuraSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2721815210, }, + ["PrecisionAuraBonusUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 8942 }, level = 1, group = "PrecisionAuraBonus", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHash = 1291925008, }, + ["PrecisionReservationEfficiencyUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 8943 }, level = 1, group = "PrecisionReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHash = 3859865977, }, + ["SupportedByBlessingSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 25 Divine Blessing", statOrder = { 173 }, level = 1, group = "SupportedByBlessing", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3274973940, }, + ["TriggerBowSkillsOnBowAttackUnique__1"] = { affix = "", "Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown", statOrder = { 537 }, level = 1, group = "TriggerBowSkillsOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "gem" }, tradeHash = 3171958921, }, + ["TriggerBowSkillsOnCastUnique__1"] = { affix = "", "Trigger a Socketed Bow Skill when you Cast a Spell while", "wielding a Bow, with a 1 second Cooldown", statOrder = { 602, 602.1 }, level = 1, group = "TriggerBowSkillsOnCast", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, tradeHash = 1378815167, }, + ["LifeLeechNotRemovedOnFullLifeUnique__1"] = { affix = "", "Life Leech effects are not removed when Unreserved Life is Filled", statOrder = { 2823 }, level = 1, group = "LifeLeechNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 4224337800, }, + ["AttacksBlindOnHitChanceUnique__1"] = { affix = "", "5% chance to Blind Enemies on Hit with Attacks", statOrder = { 4453 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 318953428, }, + ["AttacksBlindOnHitChanceUnique__2"] = { affix = "", "(10-20)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4453 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 318953428, }, + ["HeraldBonusExtraMod1"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 9992 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3461563650, }, + ["HeraldBonusExtraMod2_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 9992 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3461563650, }, + ["HeraldBonusExtraMod3_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 9992 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3461563650, }, + ["HeraldBonusExtraMod4"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 9992 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3461563650, }, + ["HeraldBonusExtraMod5"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 9992 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3461563650, }, + ["HeraldBonusThunderReservation"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6719 }, level = 1, group = "HeraldBonusThunderReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3959101898, }, + ["HeraldBonusThunderReservationEfficiency"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6720 }, level = 1, group = "HeraldBonusThunderReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3817220109, }, + ["HeraldBonusThunderLightningDamage"] = { affix = "", "(40-60)% increased Lightning Damage while affected by Herald of Thunder", statOrder = { 7078 }, level = 1, group = "HeraldBonusThunderLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 536957, }, + ["HeraldBonusThunderEffect"] = { affix = "", "Herald of Thunder has (40-60)% increased Buff Effect", statOrder = { 6718 }, level = 1, group = "HeraldBonusThunderEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3814686091, }, + ["HeraldBonusThunderMaxLightningResist"] = { affix = "", "+1% to maximum Lightning Resistance while affected by Herald of Thunder", statOrder = { 8339 }, level = 1, group = "HeraldBonusThunderMaxLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 3259396413, }, + ["HeraldBonusThunderLightningResist_"] = { affix = "", "+(50-60)% to Lightning Resistance while affected by Herald of Thunder", statOrder = { 7080 }, level = 1, group = "HeraldBonusThunderLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 2687017988, }, + ["HeraldBonusAshReservation"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6706 }, level = 1, group = "HeraldBonusAshReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3819451758, }, + ["HeraldBonusAshReservationEfficiency__"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6707 }, level = 1, group = "HeraldBonusAshReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2500442851, }, + ["HeraldBonusAshFireDamage"] = { affix = "", "(40-60)% increased Fire Damage while affected by Herald of Ash", statOrder = { 6148 }, level = 1, group = "HeraldBonusAshFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2775776604, }, + ["HeraldBonusAshEffect"] = { affix = "", "Herald of Ash has (40-60)% increased Buff Effect", statOrder = { 6705 }, level = 1, group = "HeraldBonusAshEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2154349925, }, + ["HeraldBonusAshMaxFireResist"] = { affix = "", "+1% to maximum Fire Resistance while affected by Herald of Ash", statOrder = { 8317 }, level = 1, group = "HeraldBonusAshMaxFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3716758077, }, + ["HeraldBonusFireResist"] = { affix = "", "+(50-60)% to Fire Resistance while affected by Herald of Ash", statOrder = { 6149 }, level = 1, group = "HeraldBonusFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 2675641469, }, + ["HeraldBonusIceReservation_"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6709 }, level = 1, group = "HeraldBonusIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3059700363, }, + ["HeraldBonusIceReservationEfficiency__"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6710 }, level = 1, group = "HeraldBonusIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3395872960, }, + ["HeraldBonusIceColdDamage"] = { affix = "", "(40-60)% increased Cold Damage while affected by Herald of Ice", statOrder = { 5304 }, level = 1, group = "HeraldBonusIceColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 1970606344, }, + ["HeraldBonusIceEffect_"] = { affix = "", "Herald of Ice has (40-60)% increased Buff Effect", statOrder = { 6708 }, level = 1, group = "HeraldBonusIceEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1862926389, }, + ["HeraldBonusMaxColdResist__"] = { affix = "", "+1% to maximum Cold Resistance while affected by Herald of Ice", statOrder = { 8302 }, level = 1, group = "HeraldBonusMaxColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 950661692, }, + ["HeraldBonusColdResist"] = { affix = "", "+(50-60)% to Cold Resistance while affected by Herald of Ice", statOrder = { 5306 }, level = 1, group = "HeraldBonusColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 2494069187, }, + ["HeraldBonusPurityReservation_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6714 }, level = 1, group = "HeraldBonusPurityReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1542765265, }, + ["HeraldBonusPurityReservationEfficiency_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6715 }, level = 1, group = "HeraldBonusPurityReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2189040439, }, + ["HeraldBonusPurityPhysicalDamage"] = { affix = "", "(40-60)% increased Physical Damage while affected by Herald of Purity", statOrder = { 8865 }, level = 1, group = "HeraldBonusPurityPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3294232483, }, + ["HeraldBonusPurityEffect"] = { affix = "", "Herald of Purity has (40-60)% increased Buff Effect", statOrder = { 6712 }, level = 1, group = "HeraldBonusPurityEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2126027382, }, + ["HeraldBonusPurityMinionDamage"] = { affix = "", "Sentinels of Purity deal (70-100)% increased Damage", statOrder = { 9224 }, level = 1, group = "HeraldBonusPurityMinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 650630047, }, + ["HeraldBonusPurityPhysicalDamageReduction"] = { affix = "", "4% additional Physical Damage Reduction while affected by Herald of Purity", statOrder = { 8873 }, level = 1, group = "HeraldBonusPurityPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3163114700, }, + ["HeraldBonusAgonyReservation"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6702 }, level = 1, group = "HeraldBonusAgonyReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1284151528, }, + ["HeraldBonusAgonyReservationEfficiency"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6703 }, level = 1, group = "HeraldBonusAgonyReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1133703802, }, + ["HeraldBonusAgonyChaosDamage_"] = { affix = "", "(40-60)% increased Chaos Damage while affected by Herald of Agony", statOrder = { 5207 }, level = 1, group = "HeraldBonusAgonyChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 739274558, }, + ["HeraldBonusAgonyEffect"] = { affix = "", "Herald of Agony has (40-60)% increased Buff Effect", statOrder = { 6701 }, level = 1, group = "HeraldBonusAgonyEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2572910724, }, + ["HeraldBonusAgonyMinionDamage_"] = { affix = "", "Agony Crawler deals (70-100)% increased Damage", statOrder = { 4130 }, level = 1, group = "HeraldBonusAgonyMinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 786460697, }, + ["HeraldBonusAgonyChaosResist_"] = { affix = "", "+(31-43)% to Chaos Resistance while affected by Herald of Agony", statOrder = { 5212 }, level = 1, group = "HeraldBonusAgonyChaosResist", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 3456816469, }, + ["UniqueJewelAlternateTreeInRadiusVaal"] = { affix = "", "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHash = 3179277870, }, + ["UniqueJewelAlternateTreeInRadiusKarui"] = { affix = "", "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHash = 3179277870, }, + ["UniqueJewelAlternateTreeInRadiusMaraketh"] = { affix = "", "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHash = 3179277870, }, + ["UniqueJewelAlternateTreeInRadiusTemplar"] = { affix = "", "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHash = 3179277870, }, + ["UniqueJewelAlternateTreeInRadiusEternal"] = { affix = "", "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHash = 3179277870, }, + ["UniqueJewelAlternateTreeInRadiusKalguur"] = { affix = "", "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHash = 3179277870, }, + ["UniqueJewelAlternateTreeInRadiusAbyssal"] = { affix = "", "Glorifying the defilement of (79-30977) souls in tribute to Amanamu", "Passives in radius are Conquered by the Abyssals", "Desecration makes this item unstable", "Historic", statOrder = { 11, 11.1, 11.2, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHash = 3179277870, }, + ["TotemDamagePerDevotion"] = { affix = "", "4% increased Totem Damage per 10 Devotion", statOrder = { 9675 }, level = 1, group = "TotemDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2566390555, }, + ["BrandDamagePerDevotion"] = { affix = "", "4% increased Brand Damage per 10 Devotion", statOrder = { 9279 }, level = 1, group = "BrandDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2697019412, }, + ["ChannelledSkillDamagePerDevotion"] = { affix = "", "Channelling Skills deal 4% increased Damage per 10 Devotion", statOrder = { 5199 }, level = 1, group = "ChannelledSkillDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 970844066, }, + ["AreaDamagePerDevotion"] = { affix = "", "4% increased Area Damage per 10 Devotion", statOrder = { 4234 }, level = 1, group = "AreaDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1724614884, }, + ["ElementalDamagePerDevotion_"] = { affix = "", "4% increased Elemental Damage per 10 Devotion", statOrder = { 5860 }, level = 1, group = "ElementalDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3103189267, }, + ["ElementalResistancesPerDevotion"] = { affix = "", "+2% to all Elemental Resistances per 10 Devotion", statOrder = { 5896 }, level = 1, group = "ElementalResistancesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1910205563, }, + ["AilmentEffectPerDevotion"] = { affix = "", "3% increased Magnitude of Non-Damaging Ailments you inflict per 10 Devotion", statOrder = { 8662 }, level = 1, group = "AilmentEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 1810368194, }, + ["ElementalAilmentSelfDurationPerDevotion_"] = { affix = "", "4% reduced Elemental Ailment Duration on you per 10 Devotion", statOrder = { 9215 }, level = 1, group = "ElementalAilmentSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 730530528, }, + ["CurseSelfDurationPerDevotion"] = { affix = "", "4% reduced Duration of Curses on you per 10 Devotion", statOrder = { 9214 }, level = 1, group = "CurseSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 4235333770, }, + ["MinionAttackAndCastSpeedPerDevotion"] = { affix = "", "1% increased Minion Attack and Cast Speed per 10 Devotion", statOrder = { 8455 }, level = 1, group = "MinionAttackAndCastSpeedPerDevotion", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHash = 3808469650, }, + ["MinionAccuracyRatingPerDevotion_"] = { affix = "", "Minions have +60 to Accuracy Rating per 10 Devotion", statOrder = { 8445 }, level = 1, group = "MinionAccuracyRatingPerDevotion", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHash = 2830135449, }, + ["AddedManaRegenerationPerDevotion"] = { affix = "", "Regenerate 0.6 Mana per Second per 10 Devotion", statOrder = { 7517 }, level = 1, group = "AddedManaRegenerationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2042813020, }, + ["ReducedManaCostPerDevotion"] = { affix = "", "1% reduced Mana Cost of Skills per 10 Devotion", statOrder = { 7487 }, level = 1, group = "ReducedManaCostPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3293275880, }, + ["AuraEffectPerDevotion"] = { affix = "", "1% increased effect of Non-Curse Auras per 10 Devotion", statOrder = { 8656 }, level = 1, group = "AuraEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 2585926696, }, + ["ShieldDefencesPerDevotion"] = { affix = "", "3% increased Defences from Equipped Shield per 10 Devotion", statOrder = { 9243 }, level = 1, group = "ShieldDefencesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 2803981661, }, + ["NovaSpellsAreaOfEffectUnique__1"] = { affix = "", "Nova Spells have 20% less Area of Effect", statOrder = { 7347 }, level = 50, group = "NovaSpellsAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 200113086, }, + ["RingAttackSpeedUnique__1"] = { affix = "", "20% less Attack Speed", statOrder = { 7345 }, level = 1, group = "RingAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2418322751, }, + ["FlaskDurationConsumedPerUse"] = { affix = "", "50% increased Duration. -1% to this value when used", statOrder = { 907 }, level = 1, group = "FlaskDurationConsumedPerUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1256719186, }, + ["HarvestAlternateWeaponQualityLocalCriticalStrikeChance__"] = { affix = "", "Quality does not increase Damage", "1% increased Critical Hit Chance per 4% Quality", statOrder = { 1584, 7182 }, level = 1, group = "HarvestAlternateWeaponQualityLocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "critical" }, tradeHash = 2109698899, }, + ["HarvestAlternateWeaponQualityAccuracyRatingIncrease_"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Accuracy per 2% Quality", statOrder = { 1584, 7133 }, level = 1, group = "HarvestAlternateWeaponQualityAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 476646817, }, + ["HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed"] = { affix = "", "Quality does not increase Damage", "1% increased Attack Speed per 8% Quality", statOrder = { 1584, 7154 }, level = 1, group = "HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHash = 454308351, }, + ["HarvestAlternateWeaponQualityLocalMeleeWeaponRange_"] = { affix = "", "Quality does not increase Damage", "+1 Weapon Range per 10% Quality", statOrder = { 1584, 7440 }, level = 1, group = "HarvestAlternateWeaponQualityLocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3746833883, }, + ["HarvestAlternateWeaponQualityElementalDamagePercent"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Elemental Damage per 2% Quality", statOrder = { 1584, 7232 }, level = 1, group = "HarvestAlternateWeaponQualityElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHash = 3668986230, }, + ["HarvestAlternateWeaponQualityAreaOfEffect_"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Area of Effect per 4% Quality", statOrder = { 1584, 7150 }, level = 1, group = "HarvestAlternateWeaponQualityAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1692679499, }, + ["AttackProjectilesForkUnique__1"] = { affix = "", "Projectiles from Attacks Fork", statOrder = { 4415 }, level = 1, group = "AttackProjectilesFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 396113830, }, + ["AttackProjectilesForkExtraTimesUnique__1"] = { affix = "", "Projectiles from Attacks Fork an additional time", statOrder = { 4416 }, level = 1, group = "AttackProjectilesForkExtraTimes", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1643324992, }, + ["MinionLargerAggroRadiusUnique__1"] = { affix = "", "Minions are Aggressive", statOrder = { 10011 }, level = 1, group = "MinionLargerAggroRadius", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 128585622, }, + ["HungryLoopSupportedByTrinity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Trinity", statOrder = { 82, 268 }, level = 1, group = "HungryLoopSupportedByTrinity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3567278969, }, + ["LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "30% increased Rarity of Items found", "You and Nearby Allies have 30% increased Item Rarity", statOrder = { 916, 1392 }, level = 1, group = "LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2084531689, }, + ["InfernalCryThresholdJewel"] = { affix = "", "With at least 40 Strength in Radius, Combust is Disabled", statOrder = { 7284 }, level = 1, group = "InfernalCryThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1819655989, }, + ["ChaosDamageDoesNotBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Chaos Damage taken bypasses Energy Shield", statOrder = { 4534 }, level = 99, group = "ChaosDamageDoesNotBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1552907959, }, + ["NonChaosDamageBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Damage taken bypasses Energy Shield", statOrder = { 4510 }, level = 1, group = "DamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2448633171, }, + ["KillEnemyInstantlyExarchDominantUnique__1"] = { affix = "", "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant", statOrder = { 7312 }, level = 77, group = "KillEnemyInstantlyExarchDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3768948090, }, + ["MalignantMadnessCritEaterDominantUnique__1"] = { affix = "", "Critical Hits inflict Malignant Madness if The Eater of Worlds is dominant", statOrder = { 7270 }, level = 77, group = "MalignantMadnessCritEaterDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1109900829, }, + ["SocketedWarcryCooldownCountUnique__1"] = { affix = "", "Socketed Warcry Skills have +1 Cooldown Use", statOrder = { 427 }, level = 1, group = "SocketedWarcryCooldownCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3784504781, }, + ["TakePhysicalDamagePerWarcryExertingUnique__1"] = { affix = "", "When you Attack, take (15-20)% of Life as Physical Damage for", "each Warcry Empowering the Attack", statOrder = { 9217, 9217.1 }, level = 1, group = "TakePhysicalDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1615324731, }, + ["MoreDamagePerWarcryExertingUnique__1"] = { affix = "", "Skills deal (10-15)% more Damage for each Warcry Empowering them", statOrder = { 9786 }, level = 1, group = "MoreDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2023285759, }, + ["AllDamageCanChillUnique__1"] = { affix = "", "All Damage from Hits Contributes to Chill Magnitude", statOrder = { 2512 }, level = 21, group = "AllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3833160777, }, + ["AllDamageTakenCanChillUnique__1"] = { affix = "", "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", statOrder = { 2515 }, level = 1, group = "AllDamageTakenCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1705072014, }, + ["AllDamageTakenCanChillUnique__2"] = { affix = "", "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", statOrder = { 2515 }, level = 1, group = "AllDamageTakenCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1705072014, }, + ["AllDamageTakenCanIgniteUnique__1"] = { affix = "", "All Damage Taken from Hits can Ignite you", statOrder = { 4157 }, level = 20, group = "AllDamageTakenCanIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1405089557, }, + ["ChillHitsCauseShatteringUnique__1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5278 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3119292058, }, + ["EnemiesChilledIncreasedDamageTakenUnique__1"] = { affix = "", "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", statOrder = { 5927 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1816894864, }, + ["CasterOffHandNearbyEnemiesAreCoveredInAshImplicit___"] = { affix = "", "Nearby Enemies are Covered in Ash", statOrder = { 7208 }, level = 1, group = "LocalDisplayNearbyEnemiesAreCoveredInAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 746994389, }, + ["CorruptedMagicJewelModEffectUnique__1"] = { affix = "", "(0-150)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Magic Jewels", statOrder = { 7424, 7424.1 }, level = 1, group = "CorruptedMagicJewelModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 461663422, }, + ["UniqueJewelSpecificSkillLevelBonus1"] = { affix = "", "+(1-3) to Level of all 0 Skills", statOrder = { 9795 }, level = 1, group = "UniqueJewelSpecificSkillLevelBonus", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3430847459, }, + ["UniqueReloadSpeed1"] = { affix = "", "(40-60)% reduced Reload Speed", statOrder = { 920 }, level = 65, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 710476746, }, + ["UniqueReloadSpeed2"] = { affix = "", "(15-25)% increased Reload Speed", statOrder = { 920 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 710476746, }, + ["UniqueLoadCrossbowBoltOnKillPercent1"] = { affix = "", "(10-20)% chance to load a bolt into all Crossbow skills on Kill", statOrder = { 5182 }, level = 65, group = "LoadCrossbowBoltOnKillPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3823990000, }, + ["UniqueSacrificeLifeForBolts1"] = { affix = "", "Sacrifice 300 Life to not consume the last bolt when firing", statOrder = { 5369 }, level = 65, group = "SacrificeLifeInsteadOfBolts", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 76982026, }, + ["UniqueLifeLeechLocal4"] = { affix = "", "Leeches (5-10)% of Physical Damage as Life", statOrder = { 972 }, level = 65, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, }, + ["UniqueLocalIncreasedPhysicalDamagePercent15"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 821 }, level = 65, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, + ["UniqueIncreasedAttackSpeed12"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 919 }, level = 65, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, + ["UniquePerandusArrows1"] = { affix = "", "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow", statOrder = { 5837 }, level = 83, group = "PerandusArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3891922348, }, + ["ChanceToPoisonWithAttacksUnique___2"] = { affix = "", "(20-30)% chance to Poison on Hit with Attacks", statOrder = { 2791 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3954735777, }, + ["AbyssalWastingOnHit"] = { affix = "", "Inflict Abyssal Wasting on Hit", statOrder = { 4010 }, level = 1, group = "AbyssalWastingOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2646093132, }, + ["TokenOfPassageReducedPresenceUnique_1"] = { affix = "", "(20-30)% reduced Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 101878827, }, + ["TokenOfPassageReducedLightUnique_1"] = { affix = "", "(20-30)% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, + ["PassageUniqueAmanamuSpiritEfficiency"] = { affix = "", "(6-10)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4613 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 53386210, }, + ["PassageUniqueAmanamuIncreasedSpiritPercent"] = { affix = "", "(6-10)% increased Spirit", statOrder = { 1356 }, level = 1, group = "MaximumSpiritPercentage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1416406066, }, + ["PassageUniqueAmanamuIncreasedArmourPercent"] = { affix = "", "(30-40)% increased Armour", statOrder = { 864 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 2866361420, }, + ["PassageUniqueAmanamuYouAndAllyCooldownPresence"] = { affix = "", "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate", statOrder = { 9930 }, level = 1, group = "YouAndAlliesInPresenceCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 36954843, }, + ["PassageUniqueAmanamuYouAndAllyChaosResistance"] = { affix = "", "You and Allies in your Presence have +(17-23)% to Chaos Resistance", statOrder = { 9929 }, level = 1, group = "YouAndAlliesInPresenceChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1404134612, }, + ["PassageUniqueAmanamuReducedMovementPenalty"] = { affix = "", "(5-8)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 8594 }, level = 1, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2590797182, }, + ["PassageUniqueAmanamuMaxEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1486 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1515657623, }, + ["PassageUniqueAmanamuThornsFromConsumingEndurance"] = { affix = "", "(30-50)% increased Thorns damage if you've consumed an Endurance Charge Recently", statOrder = { 9643 }, level = 1, group = "ThornsFromConsumingEndurance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 806994543, }, + ["PassageUniqueAmanamuReducedIncomingCriticalBonus"] = { affix = "", "Hits against you have (20-30)% reduced Critical Damage Bonus", statOrder = { 950 }, level = 1, group = "ReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3855016469, }, + ["PassageUniqueAmanamuIncreasedDebuffSlowMagnitude"] = { affix = "", "Debuffs you inflict have (12-20)% increased Slow Magnitude", statOrder = { 4552 }, level = 1, group = "SlowEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3650992555, }, + ["PassageUniqueAmanamuReducedIncomingDebuffSlowPotency"] = { affix = "", "(10-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 924253255, }, + ["PassageUniqueAmanamuSkillEffectDuration"] = { affix = "", "(10-16)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, }, + ["PassageUniqueAmanamuFasterCursedActivation"] = { affix = "", "(10-20)% faster Curse Activation", statOrder = { 5530 }, level = 1, group = "CurseDelay", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 1104825894, }, + ["PassageUniqueAmanamuIgniteMagnitude"] = { affix = "", "(20-30)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3791899485, }, + ["PassageUniqueAmanamuIncreasedStrengthPercent"] = { affix = "", "(4-6)% increased Strength", statOrder = { 1080 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 734614379, }, + ["PassageUniqueAmanamuIncreasedCurseAreaOfEffect"] = { affix = "", "(15-25)% increased Area of Effect of Curses", statOrder = { 1875 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 153777645, }, + ["PassageUniqueAmanamuDamageAsExtraFire"] = { affix = "", "Gain (8-12)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, }, + ["PassageUniqueAmanamuArmourAppliesToElementalDamage"] = { affix = "", "+(20-30)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "armour", "defences", "elemental" }, tradeHash = 3362812763, }, + ["PassageUniqueAmanamuAbyssalWastingReducesFireRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Fire Resistance", statOrder = { 4005 }, level = 1, group = "AbyssalWastingReducesFireRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2991563371, }, + ["PassageUniqueAmanamuAbyssalWastingIncreasedEffect"] = { affix = "", "(60-100)% increased Magnitude of Abyssal Wasting you inflict", statOrder = { 4004 }, level = 1, group = "AbyssalWastingIncreasedEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4043376133, }, + ["PassageUniqueAmanamuAbyssalWastingInfiniteDuration"] = { affix = "", "Abyssal Wasting you inflict has Infinite Duration", statOrder = { 4006 }, level = 1, group = "AbyssalWastingInfiniteDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1679776108, }, + ["PassageUniqueAmanamuFlatSpiritIfAtLeast200Strength"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Strength", statOrder = { 9454 }, level = 1, group = "FlatSpiritIfAtLeast200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3044685077, }, + ["PassageUniqueKurgalPercentCastSpeedPerSpirit"] = { affix = "", "2% increased Cast Speed per 20 Spirit", statOrder = { 4964 }, level = 1, group = "PercentCastSpeedPerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 34174842, }, + ["PassageUniqueKurgalMaximumManaPercent"] = { affix = "", "(5-10)% increased maximum Mana", statOrder = { 872 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2748665614, }, + ["PassageUniqueKurgalIncreasedEnergyShieldPercent"] = { affix = "", "(30-40)% increased maximum Energy Shield", statOrder = { 868 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, }, + ["PassageUniqueKurgalDamageTakenFromManaBeforeLife"] = { affix = "", "(10-14)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 458438597, }, + ["PassageUniqueKurgalManaRegenWhileSurrounded"] = { affix = "", "(40-60)% increased Mana Regeneration Rate while Surrounded", statOrder = { 7514 }, level = 1, group = "ManaRegenWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1895238057, }, + ["PassageUniqueKurgalYouAndAllyCastSpeed"] = { affix = "", "You and Allies in your Presence have (11-16)% increased Cast Speed", statOrder = { 9928 }, level = 1, group = "YouAndAlliesInPresenceCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 281990982, }, + ["PassageUniqueKurgalEnemiesDyingInPresenceRecoverMana"] = { affix = "", "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9106 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2456226238, }, + ["PassageUniqueKurgalGainArcaneSurgeOnMinionDeath"] = { affix = "", "Gain Arcane Surge when a Minion Dies", statOrder = { 6318 }, level = 1, group = "GainArcaneSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3625518318, }, + ["PassageUniqueKurgalMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, + ["PassageUniqueKurgalSkillCostEfficiencyFromConsumingPower"] = { affix = "", "(10-20)% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently", statOrder = { 9299 }, level = 1, group = "SkillCostEfficiencyFromConsumingPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2369495153, }, + ["PassageUniqueKurgalCriticalStrikeChancePercent"] = { affix = "", "(25-40)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, + ["PassageUniqueKurgalMetaSkillsGenerateIncreasedEnergy"] = { affix = "", "Meta Skills gain (10-16)% increased Energy", statOrder = { 5987 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4236566306, }, + ["PassageUniqueKurgalTriggeredSkillsDealIncreasedDamage"] = { affix = "", "Triggered Spells deal (25-40)% increased Spell Damage", statOrder = { 9712 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 3067892458, }, + ["PassageUniqueKurgalChillMagnitude"] = { affix = "", "(20-30)% increased Magnitude of Chill you inflict", statOrder = { 5269 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 828179689, }, + ["PassageUniqueKurgalIncreasedIntelligencePercent"] = { affix = "", "(4-6)% increased Intelligence", statOrder = { 1082 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 656461285, }, + ["PassageUniqueKurgalIncreasedSpellAreaOfEffect"] = { affix = "", "Spell Skills have (9-18)% increased Area of Effect", statOrder = { 9390 }, level = 1, group = "SpellAreaOfEffectPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1967040409, }, + ["PassageUniqueKurgalDamageAsExtraCold"] = { affix = "", "Gain (8-12)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, }, + ["PassageUniqueKurgalFasterStartOfEnergyShieldRecharge"] = { affix = "", "(15-25)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, }, + ["PassageUniqueKurgalAbyssalWastingReducesColdRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Cold Resistance", statOrder = { 4003 }, level = 1, group = "AbyssalWastingReducesColdRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3979226081, }, + ["PassageUniqueKurgalAbyssalWastingInstantManaLeechPercent"] = { affix = "", "(20-30)% of Mana Leeched from targets affected by Abyssal Wasting is Instant", statOrder = { 4008 }, level = 1, group = "AbyssalWastingInstantManaLeechPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 546201303, }, + ["PassageUniqueKurgalAbyssalWastingAccuracyRatingPlusPercent"] = { affix = "", "(30-40)% increased Accuracy Rating against Enemies affected by Abyssal Wasting", statOrder = { 4015 }, level = 1, group = "AbyssalWastingAccuracyRatingPlusPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4255854327, }, + ["PassageUniqueKurgalFlatSpiritIfAtLeast200Intelligence"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Intelligence", statOrder = { 9453 }, level = 1, group = "FlatSpiritIfAtLeast200Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1282318918, }, + ["PassageUniqueUlamanPercentAttackSpeedPerSpirit"] = { affix = "", "1% increased Attack Speed per 20 Spirit", statOrder = { 4419 }, level = 1, group = "PercentAttackSpeedPerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 324579579, }, + ["PassageUniqueUlamanMaximumLifePercent"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, }, + ["PassageUniqueUlamanIncreasedEvasionPercent"] = { affix = "", "(30-40)% increased Evasion Rating", statOrder = { 866 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, }, + ["PassageUniqueUlamanProjectileChanceToChainTerrain"] = { affix = "", "Projectiles have (10-16)% chance to Chain an additional time from terrain", statOrder = { 8970 }, level = 1, group = "ChainFromTerrain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4081947835, }, + ["PassageUniqueUlamanAdditionalProjectileChanceWhileForking"] = { affix = "", "Projectiles have (40-50)% chance for an additional Projectile when Forking", statOrder = { 5139 }, level = 1, group = "ForkingProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3003542304, }, + ["PassageUniqueUlamanLifeRegenWhileSurrounded"] = { affix = "", "(30-40)% increased Life Regeneration rate while Surrounded", statOrder = { 7038 }, level = 1, group = "LifeRegenWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3084372306, }, + ["PassageUniqueUlamanYouAndAllyIncreasedAttackSpeed"] = { affix = "", "You and Allies in your Presence have (7-12)% increased Attack Speed", statOrder = { 9927 }, level = 1, group = "YouAndAlliesInPresenceAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3408222535, }, + ["PassageUniqueUlamanYouAndAllyAccuracyRatingPercent"] = { affix = "", "You and Allies in your Presence have (20-28)% increased Accuracy Rating", statOrder = { 9925 }, level = 1, group = "YouAndAlliesInPresenceAccuracyRating", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3429986699, }, + ["PassageUniqueUlamanEnemiesDyingInPresenceRecoverLife"] = { affix = "", "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 9104 }, level = 1, group = "EnemiesDyingInPresenceRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3503117295, }, + ["PassageUniqueUlamanGainOnslaughtSurgeOnMinionDeath"] = { affix = "", "Gain Onslaught for 4 seconds when a Minion Dies", statOrder = { 6385 }, level = 1, group = "GainOnslaughtSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3605616594, }, + ["PassageUniqueUlamanMaximumFrenzyCharges"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, }, + ["PassageUniqueUlamanLifeLeechAmountFromConsumingFrenzy"] = { affix = "", "(20-30)% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently", statOrder = { 6987 }, level = 1, group = "LifeLeechAmountFromConsumingFrenzy", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3843204146, }, + ["PassageUniqueUlamanCriticalDamageBonus"] = { affix = "", "(15-25)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3556824919, }, + ["PassageUniqueUlamanShockMagnitude"] = { affix = "", "(15-25)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2527686725, }, + ["PassageUniqueUlamanIncreasedDexterityPercent"] = { affix = "", "(4-6)% increased Dexterity", statOrder = { 1081 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4139681126, }, + ["PassageUniqueUlamanIncreasedAttackAreaOfEffect"] = { affix = "", "(9-18)% increased Area of Effect for Attacks", statOrder = { 4363 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1840985759, }, + ["PassageUniqueUlamanDamageAsExtraLightning"] = { affix = "", "Gain (8-12)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, }, + ["PassageUniqueUlamanEvasionAppliesToDeflectRating"] = { affix = "", "Gain Deflection Rating equal to (10-20)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 3033371881, }, + ["PassageUniqueUlamanAbyssalWastingReducesLightningRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Lightning Resistance", statOrder = { 4009 }, level = 1, group = "AbyssalWastingReducesLightningRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1726353460, }, + ["PassageUniqueUlamanAbyssalWastingInstantLifeLeechPercent"] = { affix = "", "(20-30)% of Life Leeched from targets affected by Abyssal Wasting is Instant", statOrder = { 4007 }, level = 1, group = "AbyssalWastingInstantLifeLeechPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3658708511, }, + ["PassageUniqueUlamanAbyssalWastingAilmentChancePlusPercent"] = { affix = "", "(30-40)% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting", statOrder = { 4133 }, level = 1, group = "AbyssalWastingAilmentChancePlusPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2760643568, }, + ["PassageUniqueUlamanFlatSpiritIfAtLeast200Dexterity"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Dexterity", statOrder = { 9452 }, level = 1, group = "FlatSpiritIfAtLeast200PerDexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2694614739, }, + ["MaceImplicitHasXSockets"] = { affix = "", "Has 3 Sockets", statOrder = { 54 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4077843608, }, + ["LocalItemBenefitSocketableAsIfHelmetUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Helmet", statOrder = { 7275 }, level = 1, group = "LocalItemBenefitSocketableAsIfHelmet", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1458343515, }, + ["LocalItemBenefitSocketableAsIfBodyArmourUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Body Armour", statOrder = { 7272 }, level = 1, group = "LocalItemBenefitSocketableAsIfBodyArmour", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1087787187, }, + ["LocalItemBenefitSocketableAsIfBodyArmourUnique__2"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Body Armour", statOrder = { 7272 }, level = 1, group = "LocalItemBenefitSocketableAsIfBodyArmour", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1087787187, }, + ["LocalItemBenefitSocketableAsIfGlovesUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Gloves", statOrder = { 7274 }, level = 1, group = "LocalItemBenefitSocketableAsIfGloves", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1856590738, }, + ["LocalItemBenefitSocketableAsIfBootsUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Boots", statOrder = { 7273 }, level = 1, group = "LocalItemBenefitSocketableAsIfBoots", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2733960806, }, + ["LocalItemBenefitSocketableAsIfShieldUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Shield", statOrder = { 7276 }, level = 1, group = "LocalItemBenefitSocketableAsIfShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2044810874, }, + ["LocalSocketItemsEffectUnique__1"] = { affix = "", "(50-100)% increased effect of Socketed Items", statOrder = { 7351 }, level = 1, group = "LocalSocketItemsEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2081918629, }, + ["UniqueLocalSoulCoreAlsoGainBenefitsFromHelmet1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", statOrder = { 71 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromHelmet", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3773763721, }, + ["UniqueLocalSoulCoreAlsoGainBenefitsFromGloves1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", statOrder = { 70 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromGloves", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3915618954, }, + ["UniqueLocalSoulCoreAlsoGainBenefitsFromBoots1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Boots", statOrder = { 69 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromBoots", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 150590298, }, + ["UniqueLocalSoulCoreAlsoGainBenefitsFromShield1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also a Shield", statOrder = { 72 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 231726304, }, + ["UniqueAtziriSplendourArmour1"] = { affix = "", "(200-300)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, + ["UniqueAtziriSplendourEvasion1"] = { affix = "", "(200-300)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, + ["UniqueAtziriSplendourEnergyShield1"] = { affix = "", "(200-300)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, + ["UniqueAtziriSplendourArmourAndEvasion1"] = { affix = "", "(120-180)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, + ["UniqueAtziriSplendourArmourAndEnergyShield1"] = { affix = "", "(120-180)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, + ["UniqueAtziriSplendourEnergyShieldAndEvasion1"] = { affix = "", "(120-180)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, + ["UniqueAtziriSplendourArmourEvasionAndEnergyShield1"] = { affix = "", "(80-120)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHash = 3523867985, }, + ["UniqueCorruptedSkillGemManaCostConvertedToLife1"] = { affix = "", "Skills from Corrupted Gems have 50% of Mana Costs Converted to Life Costs", statOrder = { 9322 }, level = 1, group = "CorruptedSkillGemLifeCostConvertedToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2035336006, }, + ["UniqueOnlySocketSoulCores1"] = { affix = "", "Only Soul Cores can be Socketed in this item", statOrder = { 56 }, level = 1, group = "OnlySocketSoulCores", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 250458861, }, + ["EssenceDisplayDefences1"] = { affix = "", "(27-42)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, }, + ["EssenceDisplayDefences1Amulet"] = { affix = "", "(15-20)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, }, + ["EssenceDisplayDefences2"] = { affix = "", "(56-67)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, }, + ["EssenceDisplayDefences2Amulet"] = { affix = "", "(21-26)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, }, + ["EssenceDisplayDefences3"] = { affix = "", "(68-79)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, }, + ["EssenceDisplayDefences3Amulet"] = { affix = "", "(27-32)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, }, + ["EssenceDisplayDefences4"] = { affix = "", "(80-91)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, }, + ["EssenceDisplayDefences4Amulet"] = { affix = "", "(33-38)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, }, + ["EssenceDisplayAttributes1"] = { affix = "", "+(9-12) to Strength, Dexterity or Intelligence", statOrder = { 6051 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1816568014, }, + ["EssenceDisplayAttributes2"] = { affix = "", "+(17-20) to Strength, Dexterity or Intelligence", statOrder = { 6051 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1816568014, }, + ["EssenceDisplayAttributes3"] = { affix = "", "+(25-27) to Strength, Dexterity or Intelligence", statOrder = { 6051 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1816568014, }, + ["EssenceDisplayAttributes4"] = { affix = "", "+(28-30) to Strength, Dexterity or Intelligence", statOrder = { 6051 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1816568014, }, + ["EssenceDisplayAttributes5"] = { affix = "", "(7-10)% increased Strength, Dexterity or Intelligence", statOrder = { 6052 }, level = 1, group = "EssenceDisplayAttributesIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 415464603, }, + ["UniqueFlaskMoreLife__1"] = { affix = "", "90% less Life Recovered", statOrder = { 619 }, level = 1, group = "FlaskMoreLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 1726753705, }, + ["UniqueFlaskEffectNotRemovedOnFullLife__1"] = { affix = "", "Effect is not removed when Unreserved Life is Filled", statOrder = { 628 }, level = 1, group = "FlaskEffectNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 2932359713, }, + ["UniqueDuringRageFlaskEffects__1"] = { affix = "", "(15-30)% of Damage taken during effect Recouped as Life", "Gain (3-5) Rage when Hit by an Enemy during effect", "No Inherent loss of Rage during effect", statOrder = { 736, 739, 749 }, level = 1, group = "DoubleMaximumRageFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2832906403, }, + ["UniqueFlaskDuration__1"] = { affix = "", "(25-50)% increased Duration", statOrder = { 907 }, level = 1, group = "FlaskUtilityIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 156096868, }, + ["GhostflameOnHitUnique__1"] = { affix = "", "Attack Hits inflict Spectral Fire for 8 seconds", statOrder = { 6453 }, level = 1, group = "GhostflameOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 33298888, }, + ["AttackAdditionalProjectilesUnique__1"] = { affix = "", "Attacks fire an additional Projectile", statOrder = { 3749 }, level = 1, group = "AttackAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1195705739, }, + ["FireDamageArmourPenetrationUnique__1"] = { affix = "", "Break Armour equal to 15% of Fire Damage dealt", statOrder = { 4289 }, level = 1, group = "FireDamageArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2451508632, }, + ["FireDamagePercentPerArmourBreakUnique__1"] = { affix = "", "(10-20)% increased Fire Damage per 10% of target's Armour that is Broken", statOrder = { 6137 }, level = 1, group = "FireDamagePercentPerArmourBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1325331627, }, + ["UniqueTwoHandedWeaponLightningStunMultiplier1"] = { affix = "", "(50-100)% more Stun Buildup with Lightning Damage", statOrder = { 9811 }, level = 1, group = "UniqueTwoHandedWeaponLightningStunMultiplier", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2029147356, }, + ["LocalAlwaysHeavyStunOnFullLifeUnique__1"] = { affix = "", "Heavy Stuns Enemies that are on Full Life", statOrder = { 1066 }, level = 76, group = "LocalAlwaysHeavyStunOnFullLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 668076381, }, + ["LocalDisableRareModOnHitUnique__1"] = { affix = "", "DNT-UNUSED 20% chance when hitting a Rare Monster to disable one of its Modifiers", statOrder = { 7194 }, level = 1, group = "LocalDisableRareModOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2662365575, }, + ["TheFlawedEdictUnique__1"] = { affix = "", "DNT-UNUSED Gain 20% Edict Declaration when you disable a rare monster mod", statOrder = { 7231 }, level = 1, group = "TheFlawedEdict", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2303993580, }, + ["UniqueDesecratedModEffect1"] = { affix = "", "(60-80)% increased Desecrated Modifier magnitudes", statOrder = { 47 }, level = 1, group = "UniqueDesecratedModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 586037801, }, + ["UniqueMutatedVaalPresenceRadius"] = { affix = "", "100% reduced Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 101878827, }, + ["UniqueMutatedVaalIncreasedLifeLeechRate"] = { affix = "", "Leech Life (-25-25)% slower", statOrder = { 1821 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 1570501432, }, + ["UniqueMutatedVaalLifeDegenerationPercentGracePeriod"] = { affix = "", "Lose (2.5-5)% of maximum Life per second", statOrder = { 1616 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1661347488, }, + ["UniqueMutatedVaalManaCostEfficiency"] = { affix = "", "25% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHash = 4101445926, }, + ["UniqueMutatedVaalSkillCostEfficiency"] = { affix = "", "(20-30)% increased Cost Efficiency", statOrder = { 4604 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 263495202, }, + ["UniqueMutatedVaalSpellLifeCostPercent"] = { affix = "", "(25-50)% of Spell Mana Cost Converted to Life Cost", statOrder = { 9436 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life", "caster" }, tradeHash = 3544050945, }, + ["UniqueMutatedVaalGlobalDeflectionRating"] = { affix = "", "(15-25)% increased Deflection Rating", statOrder = { 5721 }, level = 1, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "mutatedunique_vaal", "defences" }, tradeHash = 3040571529, }, + ["UniqueMutatedVaalSurroundedAreaOfEffect"] = { affix = "", "(20-30)% increased Surrounded Area of Effect", statOrder = { 9601 }, level = 1, group = "SurroundedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 909236563, }, + ["UniqueMutatedVaalTotemDuration"] = { affix = "", "(-30-30)% reduced Totem Duration", statOrder = { 1463 }, level = 1, group = "TotemDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2357996603, }, + ["UniqueMutatedVaalAttackAndCastSpeedOnPlacingTotem"] = { affix = "", "25% increased Attack and Cast Speed if you've summoned a Totem Recently", statOrder = { 2820 }, level = 1, group = "AttackAndCastSpeedOnPlacingTotem", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3910614548, }, + ["UniqueMutatedVaalLifeLeechAmount"] = { affix = "", "(20-25)% increased amount of Life Leeched", statOrder = { 1820 }, level = 1, group = "LifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2112395885, }, + ["UniqueMutatedVaalLocalPhysicalDamageReductionRating"] = { affix = "", "+(100-150) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "mutatedunique_vaal", "defences" }, tradeHash = 3484657501, }, + ["UniqueMutatedVaalIgniteChanceIncrease"] = { affix = "", "25% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2968503605, }, + ["UniqueMutatedVaalPercentDamageGoesToMana"] = { affix = "", "(6-10)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life", "mana" }, tradeHash = 472520716, }, + ["UniqueMutatedVaalMaximumLifeIncreasePercent"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 983749596, }, + ["UniqueMutatedVaalBeltIncreasedFlaskChargesGained"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique_vaal" }, tradeHash = 1836676211, }, + ["UniqueMutatedVaalLocalEnegyShield"] = { affix = "", "+(50-150) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHash = 4052037485, }, + ["UniqueMutatedVaalLocalEvasionRating"] = { affix = "", "+(50-150) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "mutatedunique_vaal", "defences" }, tradeHash = 53045048, }, + ["UniqueMutatedVaalFireDamagePercentage"] = { affix = "", "(1-60)% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire" }, tradeHash = 3962278098, }, + ["UniqueMutatedVaalColdDamagePercentage"] = { affix = "", "(1-60)% increased Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "cold" }, tradeHash = 3291658075, }, + ["UniqueMutatedVaalLightningDamagePercentage"] = { affix = "", "(1-60)% increased Lightning Damage", statOrder = { 857 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "lightning" }, tradeHash = 2231156303, }, + ["UniqueMutatedVaalChaosDamagePercentage"] = { affix = "", "(1-60)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique_vaal", "damage", "chaos" }, tradeHash = 736967255, }, + ["UniqueMutatedVaalChaosResistance"] = { affix = "", "+(1-60)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueMutatedVaalVolatilityOnCritChance"] = { affix = "", "(30-50)% chance to grant Volatility on Critical Hit", statOrder = { 6910 }, level = 1, group = "VolatilityOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2931872063, }, + ["UniqueMutatedVaalCastSpeedIfCriticalStrikeDealtRecently"] = { affix = "", "(-15-15)% reduced Cast Speed if you've dealt a Critical Hit Recently", statOrder = { 4970 }, level = 1, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster", "speed" }, tradeHash = 1174076861, }, + ["UniqueMutatedVaalPoisonEffect"] = { affix = "", "(10-16)% increased Magnitude of Poison you inflict", statOrder = { 8925 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage", "ailment" }, tradeHash = 2487305362, }, + ["UniqueMutatedVaalDamageTakenGainedAsLife"] = { affix = "", "(5-10)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 1444556985, }, + ["UniqueMutatedVaalIncreasedStunThreshold"] = { affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 680068163, }, + ["UniqueMutatedVaalLocalEnergyShield1"] = { affix = "", "+(60-100) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHash = 4052037485, }, + ["UniqueMutatedVaalBeltFlaskLifeRecovery"] = { affix = "", "(10-30)% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mutatedunique_vaal", "life" }, tradeHash = 821241191, }, + ["UniqueMutatedVaalBeltIncreasedCharmChargesGained"] = { affix = "", "(10-30)% increased Charm Charges gained", statOrder = { 5227 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3585532255, }, + ["UniqueMutatedVaalDamageRemovedFromManaBeforeLife"] = { affix = "", "10% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life", "mana" }, tradeHash = 458438597, }, + ["UniqueMutatedVaalMaximumManaOnKillPercent"] = { affix = "", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1439 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHash = 1030153674, }, + ["UniqueMutatedVaalIncreasedLife"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 3299347043, }, + ["UniqueMutatedVaalIncreasedLife1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 3299347043, }, + ["UniqueMutatedVaalAllAttributes"] = { affix = "", "+(17-23) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attribute" }, tradeHash = 1379411836, }, + ["UniqueMutatedVaalCriticalStrikeChanceIfNoCriticalStrikeDealtRecently"] = { affix = "", "(120-200)% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently", statOrder = { 5452 }, level = 1, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "critical" }, tradeHash = 2856328513, }, + ["UniqueMutatedVaalManaCostEfficiency1"] = { affix = "", "(20-30)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHash = 4101445926, }, + ["UniqueMutatedVaalRecoverLifeOnKillingPoisonedEnemyPerPoison"] = { affix = "", "Recover (0.5-1)% of maximum Life per Poison affecting Enemies you Kill", statOrder = { 9122 }, level = 1, group = "RecoverLifeOnKillingPoisonedEnemyPerPoison", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2535713562, }, + ["UniqueMutatedVaalLifeRegenerationRatePercentage"] = { affix = "", "Regenerate (1.5-3)% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 836936635, }, + ["UniqueMutatedVaalIgniteChanceIncrease1"] = { affix = "", "(15-25)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2968503605, }, + ["UniqueMutatedVaalIgniteEffect"] = { affix = "", "(26-40)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3791899485, }, + ["UniqueMutatedVaalChanceToGainAdditionalRandomCharge"] = { affix = "", "50% chance to gain an additional random Charge when you gain a Charge", statOrder = { 5146 }, level = 1, group = "ChanceToGainAdditionalRandomCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 504210122, }, + ["UniqueMutatedVaalChargeDuration"] = { affix = "", "(-60-60)% reduced Endurance, Frenzy and Power Charge Duration", statOrder = { 2651 }, level = 1, group = "ChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "mutatedunique_vaal" }, tradeHash = 2839036860, }, + ["UniqueMutatedVaalPoisonStackCount"] = { affix = "", "Targets can be affected by +1 of your Poisons at the same time", statOrder = { 8749 }, level = 1, group = "PoisonStackCount", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1755296234, }, + ["UniqueMutatedVaalDeflectDamageTakenRecoupedAsLife"] = { affix = "", "(10-20)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 5718 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3471443885, }, + ["UniqueMutatedVaalGoldFoundIncrease"] = { affix = "", "(-15-15)% reduced Quantity of Gold Dropped by Slain Enemies", statOrder = { 6476 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop", "mutatedunique_vaal" }, tradeHash = 3175163625, }, + ["UniqueMutatedVaalLightningResistance"] = { affix = "", "+(-60-60)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["UniqueMutatedVaalLifeRegenerationWhileSurrounded"] = { affix = "", "Regenerate (0.5-1.5)% of maximum Life per second while Surrounded", statOrder = { 7043 }, level = 1, group = "LifeRegenerationWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 2002533190, }, + ["UniqueMutatedVaalLocalPhysicalDamageReductionRating1"] = { affix = "", "+(60-75) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "mutatedunique_vaal", "defences" }, tradeHash = 3484657501, }, + ["UniqueMutatedVaalPercentageStrength"] = { affix = "", "(5-10)% increased Strength", statOrder = { 1080 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attribute" }, tradeHash = 734614379, }, + ["UniqueMutatedVaalAreaOfEffectIfKilledRecently"] = { affix = "", "(10-25)% increased Area of Effect if you've Killed Recently", statOrder = { 3772 }, level = 1, group = "AreaOfEffectIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3481736410, }, + ["UniqueMutatedVaalSpellChanceToFireTwoAdditionalProjectiles"] = { affix = "", "(5-10)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9431 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster" }, tradeHash = 2910761524, }, + ["UniqueMutatedVaalEnergyGeneration"] = { affix = "", "Meta Skills gain (-30-30)% reduced Energy", statOrder = { 5987 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 4236566306, }, + ["UniqueMutatedVaalAilmentChance"] = { affix = "", "(20-30)% increased chance to inflict Ailments", statOrder = { 4136 }, level = 1, group = "AilmentChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "ailment" }, tradeHash = 1772247089, }, + ["UniqueMutatedVaalManaCostEfficiency2"] = { affix = "", "(13-17)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHash = 4101445926, }, + ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromHelmet"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", statOrder = { 71 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromHelmet", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3773763721, }, + ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromGloves"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", statOrder = { 70 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromGloves", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3915618954, }, + ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromBoots"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Boots", statOrder = { 69 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromBoots", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 150590298, }, + ["UniqueMutatedVaalEnergyShieldDelay1"] = { affix = "", "(33-66)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHash = 1782086450, }, + ["UniqueMutatedVaalSkillCostEfficiency1"] = { affix = "", "(-30-30)% reduced Cost Efficiency", statOrder = { 4604 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 263495202, }, + ["UniqueMutatedVaalPresenceRadius1"] = { affix = "", "(15-30)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 101878827, }, + ["UniqueMutatedVaalLifeCostEfficiency"] = { affix = "", "(12-20)% increased Life Cost Efficiency", statOrder = { 4572 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 310945763, }, + ["UniqueMutatedVaalEvasionRatingPercentWhileSprinting"] = { affix = "", "(100-150)% increased Evasion Rating while Sprinting", statOrder = { 6065 }, level = 1, group = "EvasionRatingPercentWhileSprinting", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1586136369, }, + ["UniqueMutatedVaalProjectileSpeed"] = { affix = "", "(16-24)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "speed" }, tradeHash = 3759663284, }, + ["UniqueMutatedVaalGainSoulEaterStackOnHit"] = { affix = "", "Eat a Soul when you Hit a Unique Enemy, no more than once every 0.5 seconds", statOrder = { 6419 }, level = 1, group = "GainSoulEaterStackOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2103621252, }, + ["UniqueMutatedVaalPowerFrenzyOrEnduranceChargeOnKill"] = { affix = "", "(15-30)% chance to gain a Power, Frenzy, or Endurance Charge on kill", statOrder = { 3187 }, level = 1, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "mutatedunique_vaal" }, tradeHash = 498214257, }, + ["UniqueMutatedVaalLocalEnergyShield"] = { affix = "", "+(90-120) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHash = 4052037485, }, + ["UniqueMutatedVaalMaximumRagePerGlorySkillUsed"] = { affix = "", "+(8-12) maximum Rage for each time you've used a Skill that Requires Glory in the past 6 seconds, up to 5 times", statOrder = { 8293 }, level = 1, group = "MaximumRagePerGlorySkillUsed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 233359425, }, + ["UniqueMutatedVaalMaxRageFromRageOnHitChance"] = { affix = "", "(12-16)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", statOrder = { 6375 }, level = 1, group = "MaxRageFromRageOnHitChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2710292678, }, + ["UniqueMutatedVaalIncreasedAttackSpeed"] = { affix = "", "25% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "speed" }, tradeHash = 681332047, }, + ["UniqueMutatedVaalArmourAppliesToElementalDamage"] = { affix = "", "+(33-66)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "armour", "mutatedunique_vaal", "defences", "elemental" }, tradeHash = 3362812763, }, + ["UniqueMutatedVaalCharmChargeGeneration"] = { affix = "", "Charms gain 0.5 charges per Second", statOrder = { 6448 }, level = 1, group = "CharmChargeGeneration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 185580205, }, + ["UniqueMutatedVaalRemoveBleedOnLifeFlaskUse"] = { affix = "", "Remove Bleeding when you use a Life Flask", statOrder = { 9158 }, level = 1, group = "RemoveBleedOnLifeFlaskUse", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1394184789, }, + ["UniqueMutatedVaalChanceToNotConsumeInfusion"] = { affix = "", "Skills have (5-10)% chance to not remove Elemental Infusions but still count as consuming them", statOrder = { 5185 }, level = 1, group = "ChanceToNotConsumeInfusion", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3024873336, }, + ["UniqueMutatedVaalSpellSkillProjectileSpeed"] = { affix = "", "(-30-30)% reduced Projectile Speed for Spell Skills", statOrder = { 9426 }, level = 1, group = "SpellSkillProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3359797958, }, + ["UniqueMutatedVaalSpellsFire8AdditionalProjectileChance"] = { affix = "", "(5-10)% chance for Spell Skills to fire 8 additional Projectiles in a circle", statOrder = { 9425 }, level = 1, group = "SpellsFire8AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 4224832423, }, + ["UniqueMutatedVaalGlobalSkillGemLevel"] = { affix = "", "+(2-4) to Level of all Skills", statOrder = { 4166 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "gem" }, tradeHash = 4283407333, }, + ["UniqueMutatedVaalGlobalSkillGemQuality"] = { affix = "", "+(5-10)% to Quality of all Skills", statOrder = { 4167 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "gem" }, tradeHash = 3655769732, }, + ["UniqueMutatedVaalBaseSpirit"] = { affix = "", "+50 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3981240776, }, + ["UniqueMutatedVaalPercentageAllAttributes"] = { affix = "", "(5-10)% increased Attributes", statOrder = { 1079 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attribute" }, tradeHash = 3143208761, }, + ["UniqueMutatedVaalLocalPhysicalDamage1"] = { affix = "", "Adds (40-60) to (70-90) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueMutatedVaalAftershockChance"] = { affix = "", "(5-10)% chance for Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 9981 }, level = 1, group = "AftershockChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2045949233, }, + ["UniqueMutatedVaalManaCostEfficiency3"] = { affix = "", "(-30-30)% reduced Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHash = 4101445926, }, + ["UniqueMutatedVaalLifeCostEfficiency1"] = { affix = "", "(25-50)% increased Life Cost Efficiency", statOrder = { 4572 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 310945763, }, + ["UniqueMutatedVaalMaximumLifeIncreasePercent1"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 983749596, }, + ["UniqueMutatedVaalLifeRegenerationRatePercentage1"] = { affix = "", "Regenerate (1-3)% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 836936635, }, + ["UniqueMutatedVaalLifeLeechFromThorns"] = { affix = "", "(5-10)% of Thorns Damage Leeched as Life", statOrder = { 4576 }, level = 1, group = "LifeLeechFromThorns", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1753977518, }, + ["UniqueMutatedVaalGlobalFlaskLifeRecovery"] = { affix = "", "(25-50)% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mutatedunique_vaal", "life" }, tradeHash = 821241191, }, + ["UniqueMutatedVaalLocalPhysicalDamageReductionRating2"] = { affix = "", "+(220-320) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "mutatedunique_vaal", "defences" }, tradeHash = 3484657501, }, + ["UniqueMutatedVaalLifeFlaskChargePercentGeneration"] = { affix = "", "(15-30)% increased Life Flask Charges gained", statOrder = { 6970 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 4009879772, }, + ["UniqueMutatedVaalLocalArmourAndEnergyShield"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "mutatedunique_vaal", "defences" }, tradeHash = 3321629045, }, + ["UniqueMutatedVaalGoldFoundIncrease1"] = { affix = "", "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6476 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop", "mutatedunique_vaal" }, tradeHash = 3175163625, }, + ["UniqueMutatedVaalLightRadiusModifiersApplyToAreaOfEffect"] = { affix = "", "Increases and Reductions to Light Radius also apply to Area of Effect at (25-50)% of their value", statOrder = { 2168 }, level = 1, group = "LightRadiusModifiersApplyToAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1138742368, }, + ["UniqueMutatedVaalProjectileForkChanceIfMeleeRecently"] = { affix = "", "Projectiles have (50-75)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", statOrder = { 8991 }, level = 1, group = "ProjectileForkChanceIfMeleeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2189073790, }, + ["UniqueMutatedVaalIncreasedWeaponElementalDamagePercent"] = { affix = "", "(100-150)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "attack" }, tradeHash = 387439868, }, + ["UniqueMutatedVaalLocalBaseCriticalStrikeChance"] = { affix = "", "+(2-4)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "critical" }, tradeHash = 518292764, }, + ["UniqueMutatedVaalTreatResistsAsInvertedChance"] = { affix = "", "Hits have (15-30)% chance to treat Enemy Monster Elemental Resistance values as inverted", statOrder = { 9705 }, level = 1, group = "TreatResistsAsInvertedChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3593401321, }, + ["UniqueMutatedVaalAtziriSplendourArmour1"] = { affix = "", "+(100-200) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "mutatedunique_vaal", "defences" }, tradeHash = 3484657501, }, + ["UniqueMutatedVaalAtziriSplendourEvasion1"] = { affix = "", "+(100-200) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "mutatedunique_vaal", "defences" }, tradeHash = 53045048, }, + ["UniqueMutatedVaalAtziriSplendourEnergyShield1"] = { affix = "", "+(100-200) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHash = 4052037485, }, + ["UniqueMutatedVaalLocalSoulCoreEffect"] = { affix = "", "(10-20)% increased effect of Socketed Soul Cores", statOrder = { 7352 }, level = 1, group = "LocalSoulCoreEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 4065505214, }, + ["UniqueMutatedVaalSkillCostEfficiency2"] = { affix = "", "(10-20)% increased Cost Efficiency", statOrder = { 4604 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 263495202, }, + ["UniqueMutatedVaalIgniteEffect1"] = { affix = "", "(20-40)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3791899485, }, + ["UniqueMutatedVaalChillEffect"] = { affix = "", "(20-40)% increased Magnitude of Chill you inflict", statOrder = { 5269 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "cold", "ailment" }, tradeHash = 828179689, }, + ["UniqueMutatedVaalFreezeDuration"] = { affix = "", "(10-20)% increased Freeze Duration on Enemies", statOrder = { 1541 }, level = 1, group = "FreezeDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1073942215, }, + ["UniqueMutatedVaalShockEffect"] = { affix = "", "(20-40)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "lightning", "ailment" }, tradeHash = 2527686725, }, + ["UniqueMutatedVaalCurseEffectiveness"] = { affix = "", "(10-20)% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster", "curse" }, tradeHash = 2353576063, }, + ["UniqueMutatedVaalReflectElementalAilmentsToSelf"] = { affix = "", "Elemental Ailments other than Freeze you inflict are Reflected to you", statOrder = { 5847 }, level = 1, group = "ReflectElementalAilmentsToSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1370804479, }, + ["UniqueMutatedVaalZealotsOath"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9143 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "mutatedunique_vaal", "life", "defences" }, tradeHash = 632761194, }, + ["UniqueMutatedVaalEnergyShieldRecoveryRate"] = { affix = "", "(10-15)% increased Energy Shield Recovery rate", statOrder = { 1370 }, level = 1, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHash = 988575597, }, + ["UniqueMutatedVaalMaximumManaIncreasePercent"] = { affix = "", "(10-20)% increased maximum Mana", statOrder = { 872 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHash = 2748665614, }, + ["UniqueMutatedVaalManaLeechPermyriad"] = { affix = "", "Leech (4-6)% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana", "physical", "attack" }, tradeHash = 707457662, }, + ["UniqueMutatedVaalEnergyOnFullMana"] = { affix = "", "Meta Skills gain 25% increased Energy while on Full Mana", statOrder = { 5990 }, level = 1, group = "EnergyOnFullMana", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 173471035, }, + ["UniqueMutatedVaalGainPowerChargesNotLostRecently"] = { affix = "", "Gain a Power Charge every Second if you haven't lost Power Charges Recently", statOrder = { 6409 }, level = 1, group = "GainPowerChargesNotLostRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1099200124, }, + ["UniqueMutatedVaalReducedShockEffectOnSelf"] = { affix = "", "(25-50)% reduced effect of Shock on you", statOrder = { 9261 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "lightning", "ailment" }, tradeHash = 3801067695, }, + ["UniqueMutatedVaalManaGainedOnPowerChargeConsumption"] = { affix = "", "Recover (2-5)% of maximum Mana when you consume a Power Charge", statOrder = { 9123 }, level = 1, group = "ManaGainedOnPowerChargeConsumption", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 346374719, }, + ["UniqueMutatedVaalArcaneSurgeEffect"] = { affix = "", "(20-40)% increased effect of Arcane Surge on you", statOrder = { 2891 }, level = 1, group = "ArcaneSurgeEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2103650854, }, + ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8332 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "mutatedunique_vaal", "life", "defences" }, tradeHash = 2458962764, }, + ["UniqueMutatedVaalLocalEvasionRating1"] = { affix = "", "+(150-200) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "mutatedunique_vaal", "defences" }, tradeHash = 53045048, }, + ["UniqueMutatedVaalIncreasedAttackSpeed1"] = { affix = "", "(6-12)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "speed" }, tradeHash = 681332047, }, + ["UniqueMutatedVaalTotemDamagePerCurseOnSelf"] = { affix = "", "(10-20)% increased Totem Damage per Curse on you", statOrder = { 9673 }, level = 1, group = "TotemDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2639983772, }, + ["UniqueMutatedVaalBaseSpirit1"] = { affix = "", "+(40-50) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3981240776, }, + ["UniqueMutatedVaalPresenceRadius2"] = { affix = "", "(25-50)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 101878827, }, + ["UniqueMutatedVaalGlobalIncreaseMinionSpellSkillGemLevel"] = { affix = "", "+(1-2) to Level of all Minion Skills", statOrder = { 931 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "minion", "gem" }, tradeHash = 2162097452, }, + ["UniqueMutatedVaalBurningEnemiesExplodeChance"] = { affix = "", "Burning Enemies you kill have a (5-10)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage", statOrder = { 6095, 6095.1 }, level = 1, group = "BurningEnemiesExplodeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1617268696, }, + ["UniqueMutatedVaalGlobalFireGemLevel"] = { affix = "", "+1 to Level of all Fire Skills", statOrder = { 6165 }, level = 1, group = "GlobalFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "fire", "gem" }, tradeHash = 599749213, }, + ["UniqueMutatedVaalLifeRegenerationRatePercentageWhileIgnited"] = { affix = "", "Regenerate 3% of maximum Life per second while Ignited", statOrder = { 7021 }, level = 1, group = "LifeRegenerationRatePercentageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 302024054, }, + ["UniqueMutatedVaalEvasionOnLowLife"] = { affix = "", "+(100-150) to Evasion Rating while on Low Life", statOrder = { 1361 }, level = 1, group = "EvasionOnLowLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "mutatedunique_vaal", "defences" }, tradeHash = 3470876581, }, + ["UniqueMutatedVaalLifeRegenerationOnLowLife"] = { affix = "", "Regenerate (2-3)% of maximum Life per second while on Low Life", statOrder = { 1618 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 3942946753, }, + ["UniqueMutatedVaalGlobalChanceToBlindOnHit"] = { affix = "", "(5-10)% Global chance to Blind Enemies on Hit", statOrder = { 2592 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2221570601, }, + ["UniqueMutatedVaalPoisonEffectOnNonPoisoned"] = { affix = "", "(30-60)% increased Effect of Poison you inflict on targets that are not Poisoned", statOrder = { 8923 }, level = 1, group = "PoisonEffectOnNonPoisoned", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1864159246, }, + ["UniqueMutatedVaalGlobalChaosGemLevel"] = { affix = "", "+1 to Level of all Chaos Skills", statOrder = { 5223 }, level = 1, group = "GlobalChaosGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "chaos", "gem" }, tradeHash = 67169579, }, + ["UniqueMutatedVaalMaximumLifeIncreasePercent2"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 983749596, }, + ["UniqueMutatedVaalDamageRemovedFromManaBeforeLifeWhileNotLowMana"] = { affix = "", "25% of Damage is taken from Mana before Life while not on Low Mana", statOrder = { 4543 }, level = 1, group = "DamageRemovedFromManaBeforeLifeWhileNotLowMana", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 679019978, }, + ["UniqueMutatedVaalDamageTakenGoesToLifeManaESPercent"] = { affix = "", "(5-10)% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 5646 }, level = 1, group = "DamageTakenGoesToLifeManaESPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2319832234, }, + ["UniqueMutatedVaalVolatilityDamageTakenAsColdPercent"] = { affix = "", "(50-100)% of Volatility Physical Damage Taken as Cold Damage", statOrder = { 9861 }, level = 1, group = "VolatilityDamageTakenAsColdPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3190121041, }, + ["UniqueMutatedVaalIceCrystalMaximumLife"] = { affix = "", "(40-60)% increased Ice Crystal Life", statOrder = { 6792 }, level = 1, group = "IceCrystalMaximumLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3274422940, }, + ["UniqueMutatedVaalEnergyShieldRechargeRatePer4Strength"] = { affix = "", "1% increased Energy Shield Recharge Rate per 4 Strength", statOrder = { 6017 }, level = 1, group = "EnergyShieldRechargeRatePer4Strength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2408276841, }, + ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield1"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8332 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "mutatedunique_vaal", "life", "defences" }, tradeHash = 2458962764, }, + ["UniqueMutatedVaalLocalEnergyShield2"] = { affix = "", "+(70-100) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHash = 4052037485, }, + ["UniqueMutatedVaalPercentOfLeechIsInstant"] = { affix = "", "(20-40)% of Leech is Instant", statOrder = { 6962 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3561837752, }, + ["UniqueMutatedVaalPoisonDurationIfConsumedFrenzyChargeRecently"] = { affix = "", "(30-40)% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently", statOrder = { 8919 }, level = 1, group = "PoisonDurationIfConsumedFrenzyChargeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3841138199, }, + ["UniqueMutatedVaalReducedPoisonDuration"] = { affix = "", "(40-60)% reduced Poison Duration on you", statOrder = { 1000 }, level = 1, group = "ReducedPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique_vaal", "chaos", "ailment" }, tradeHash = 3301100256, }, + ["UniqueMutatedVaalChanceToGainAdditionalPowerCharge"] = { affix = "", "10% chance when you gain a Power Charge to gain an additional Power Charge", statOrder = { 5145 }, level = 1, group = "ChanceToGainAdditionalPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3537994888, }, + ["UniqueMutatedVaalCriticalStrikeMultiplierIfConsumedPowerChargeRecently"] = { affix = "", "(-60-60)% reduced Critical Damage Bonus if you've consumed a Power Charge Recently", statOrder = { 5421 }, level = 1, group = "CriticalStrikeMultiplierIfConsumedPowerChargeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 23669307, }, + ["UniqueMutatedVaalIncreasedPowerChargeDuration"] = { affix = "", "(-60-60)% reduced Power Charge Duration", statOrder = { 1806 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique_vaal" }, tradeHash = 3872306017, }, + ["UniqueMutatedVaalPoisonEffectWhilePoisoned"] = { affix = "", "(30-40)% increased Magnitude of Poison you inflict while Poisoned", statOrder = { 4600 }, level = 1, group = "PoisonEffectWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 120969026, }, + ["UniqueMutatedVaalChaosResistance1"] = { affix = "", "+(16-26)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "chaos", "resistance" }, tradeHash = 2923486259, }, + ["UniqueMutatedVaalGlobalFireGemLevel1"] = { affix = "", "+(2-4) to Level of all Fire Skills", statOrder = { 6165 }, level = 1, group = "GlobalFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "fire", "gem" }, tradeHash = 599749213, }, + ["UniqueMutatedVaalElementalExposureEffectOnHitWithMagnitude"] = { affix = "", "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (20-30)%", statOrder = { 4164 }, level = 1, group = "ElementalExposureEffectOnHitWithMagnitude", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 533542952, }, + ["UniqueMutatedVaalChargeChanceToNotConsume"] = { affix = "", "Skills have (10-15)% chance to not remove Charges but still count as consuming them", statOrder = { 5225 }, level = 1, group = "ChargeChanceToNotConsume", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2942439603, }, + ["UniqueMutatedVaalIncreasedChaosDamage"] = { affix = "", "(60-80)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique_vaal", "damage", "chaos" }, tradeHash = 736967255, }, + ["UniqueMutatedVaalDeflectDamageTaken"] = { affix = "", "+(-5-5)% to amount of Damage Prevented by Deflection", statOrder = { 4541 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3552135623, }, + ["UniqueMutatedVaalAttackDamageWhileSurrounded"] = { affix = "", "(-40-40)% reduced Attack Damage while Surrounded", statOrder = { 4388 }, level = 1, group = "AttackDamageWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2879725899, }, + ["UniqueMutatedVaalElementalPenetrationBelowZero"] = { affix = "", "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", statOrder = { 5889 }, level = 1, group = "ElementalPenetrationBelowZero", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental" }, tradeHash = 2890792988, }, + ["UniqueMutatedVaalLocalPhysicalDamageReductionRating3"] = { affix = "", "+(260-400) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "mutatedunique_vaal", "defences" }, tradeHash = 3484657501, }, + ["UniqueMutatedVaalLightningResistancePenetration"] = { affix = "", "Damage Penetrates (10-20)% Lightning Resistance", statOrder = { 2615 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "lightning" }, tradeHash = 818778753, }, + ["UniqueMutatedVaalSurroundedAreaOfEffect1"] = { affix = "", "(20-60)% increased Surrounded Area of Effect", statOrder = { 9601 }, level = 1, group = "SurroundedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 909236563, }, + ["UniqueMutatedVaalCorruptedRareJewelModEffect"] = { affix = "", "(0-75)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Rare Jewels", statOrder = { 7423, 7423.1 }, level = 1, group = "CorruptedRareJewelModEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3128077011, }, + ["UniqueMutatedVaalIncreasedArmourForJewel"] = { affix = "", "(-30-30)% reduced Armour", statOrder = { 864 }, level = 1, group = "IncreasedArmourForJewel", weightKey = { }, weightVal = { }, modTags = { "armour", "mutatedunique_vaal", "defences" }, tradeHash = 2866361420, }, + ["UniqueMutatedVaalIncreasedEvasionForJewel"] = { affix = "", "(-30-30)% reduced Evasion Rating", statOrder = { 866 }, level = 1, group = "IncreasedEvasionForJewel", weightKey = { }, weightVal = { }, modTags = { "evasion", "mutatedunique_vaal", "defences" }, tradeHash = 2106365538, }, + ["UniqueMutatedVaalIncreasedEnergyShieldForJewel"] = { affix = "", "+(-30-30) to maximum Energy Shield", statOrder = { 867 }, level = 1, group = "IncreasedEnergyShieldForJewel", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHash = 3489782002, }, + ["UniqueMutatedVaalFireDamagePercentage1"] = { affix = "", "(-30-30)% reduced Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire" }, tradeHash = 3962278098, }, + ["UniqueMutatedVaalColdDamagePercentage1"] = { affix = "", "(-30-30)% reduced Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "cold" }, tradeHash = 3291658075, }, + ["UniqueMutatedVaalLightningDamagePercentage1"] = { affix = "", "(-30-30)% reduced Lightning Damage", statOrder = { 857 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "lightning" }, tradeHash = 2231156303, }, + ["UniqueMutatedVaalIncreasedChaosDamage1"] = { affix = "", "(-30-30)% reduced Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique_vaal", "damage", "chaos" }, tradeHash = 736967255, }, + ["UniqueMutatedVaalMinionDamage"] = { affix = "", "Minions deal (-30-30)% reduced Damage", statOrder = { 1646 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage", "minion" }, tradeHash = 1589917703, }, + ["UniqueMutatedVaalSpellAilmentEffectPerLife"] = { affix = "", "Non-Channelling Spells have 3% increased Magnitude of Ailments per 100 maximum Life", statOrder = { 9387 }, level = 1, group = "SpellAilmentEffectPerLifeNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 4245905059, }, + ["UniqueMutatedVaalSpellCriticalChancePerMana"] = { affix = "", "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Mana", statOrder = { 9392 }, level = 1, group = "SpellCriticalChancePerManaNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1367999357, }, + ["UniqueMutatedVaalSpellDamagePerMana"] = { affix = "", "Non-Channelling Spells deal 6% increased Damage per 100 maximum Mana", statOrder = { 9403 }, level = 1, group = "SpellDamagePerManaNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3843734793, }, + ["UniqueMutatedVaalAdditionalArrowPierce"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1476 }, level = 1, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack" }, tradeHash = 3423006863, }, + ["UniqueMutatedVaalLifeCostEfficiency2"] = { affix = "", "(20-40)% increased Life Cost Efficiency", statOrder = { 4572 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 310945763, }, + ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield2"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8332 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "mutatedunique_vaal", "life", "defences" }, tradeHash = 2458962764, }, + ["UniqueMutatedVaalSpellDamageLifeLeech"] = { affix = "", "5% of Spell Damage Leeched as Life", statOrder = { 4575 }, level = 1, group = "SpellDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 782941180, }, + ["UniqueMutatedVaalGlancingBlows"] = { affix = "", "Glancing Blows", statOrder = { 10053 }, level = 1, group = "GlancingBlows", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique_vaal" }, tradeHash = 4266776872, }, + ["UniqueMutatedVaalGlobalDeflectionRatingWhileMoving"] = { affix = "", "(15-25)% increased Deflection Rating while moving", statOrder = { 5722 }, level = 1, group = "GlobalDeflectionRatingWhileMoving", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1382805233, }, + ["UniqueMutatedVaalLocalEvasionRating2"] = { affix = "", "+(70-100) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "mutatedunique_vaal", "defences" }, tradeHash = 53045048, }, + ["UniqueMutatedVaalRandomKeystoneFromTable"] = { affix = "", "(1-33)", statOrder = { 10021 }, level = 1, group = "UniqueVivisectionRandomKeystoneMutated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 37406516, }, + ["UniqueMutatedVaalVivisectionPriceLife"] = { affix = "", "(10-20)% less maximum Life", statOrder = { 9847 }, level = 1, group = "UniqueVivisectionPriceLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 1633735772, }, + ["UniqueMutatedVaalVivisectionPriceMana"] = { affix = "", "(10-20)% less maximum Mana", statOrder = { 9848 }, level = 1, group = "UniqueVivisectionPriceMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHash = 3045154261, }, + ["UniqueMutatedVaalVivisectionPriceDefences"] = { affix = "", "(10-20)% less Defences", statOrder = { 9846 }, level = 1, group = "UniqueVivisectionPriceDefences", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "defences" }, tradeHash = 1868522266, }, + ["UniqueMutatedVaalVivisectionPriceSpirit"] = { affix = "", "(10-20)% less Spirit", statOrder = { 9850 }, level = 1, group = "UniqueVivisectionPriceSpirit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 537850431, }, + ["UniqueMutatedVaalVivisectionPriceMovementSpeed"] = { affix = "", "(10-20)% less Movement Speed", statOrder = { 9849 }, level = 1, group = "UniqueVivisectionPriceMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "speed" }, tradeHash = 2146799605, }, + ["UniqueMutatedVaalVivisectionPriceDamage"] = { affix = "", "(10-20)% less Damage", statOrder = { 9845 }, level = 1, group = "UniqueVivisectionPriceDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage" }, tradeHash = 1274947822, }, + ["UniqueMutatedVaalDamageAsExtraFire"] = { affix = "", "Gain (25-40)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageasExtraFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire" }, tradeHash = 3015669065, }, + ["UniqueMutatedVaalLocalPhysicalDamage"] = { affix = "", "Adds (65-73) to (83-91) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHash = 1940865751, }, + ["UniqueMutatedVaalLocalCriticalStrikeChance"] = { affix = "", "+(3-5)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "critical" }, tradeHash = 518292764, }, + ["UniqueMutatedVaalSpellChanceToFireTwoAdditionalProjectiles1"] = { affix = "", "(10-25)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9431 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster" }, tradeHash = 2910761524, }, + ["UniqueMutatedVaalLocalPhysicalDamagePercent"] = { affix = "", "(300-400)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHash = 1805374733, }, + ["UniqueMutatedVaalFireExposureOnHit"] = { affix = "", "(30-50)% chance to inflict Exposure on Hit", statOrder = { 4569 }, level = 1, group = "FireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3602667353, }, + ["UniqueMutatedVaalCullingStrikeLocalVsBleeding"] = { affix = "", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrder = { 7188 }, level = 1, group = "CullingStrikeLocalVsBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2558253923, }, + ["UniqueMutatedVaalLocalIncreasedEvasionAndEnergyShield"] = { affix = "", "(150-300)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "mutatedunique_vaal", "defences" }, tradeHash = 1999113824, }, + ["UniqueMutatedVaalLocalEnergyShield3"] = { affix = "", "+(50-80) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHash = 4052037485, }, + ["UniqueMutatedVaalPhysicalDamagePercent"] = { affix = "", "(-30-30)% reduced Global Physical Damage", statOrder = { 1122 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical" }, tradeHash = 1310194496, }, + ["CorruptionUpgradeLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(75-125)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "upgraded_corruption_mod", "defences" }, tradeHash = 1062208444, }, + ["CorruptionUpgradeLocalIncreasedEvasionRatingPercent1"] = { affix = "", "(75-125)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "upgraded_corruption_mod", "defences" }, tradeHash = 124859000, }, + ["CorruptionUpgradeLocalIncreasedEnergyShieldPercent1"] = { affix = "", "(75-125)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "upgraded_corruption_mod", "defences" }, tradeHash = 4015621042, }, + ["CorruptionUpgradeLocalIncreasedArmourAndEvasion1"] = { affix = "", "(75-125)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "upgraded_corruption_mod", "defences" }, tradeHash = 2451402625, }, + ["CorruptionUpgradeLocalIncreasedArmourAndEnergyShield1"] = { affix = "", "(75-125)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "upgraded_corruption_mod", "defences" }, tradeHash = 3321629045, }, + ["CorruptionUpgradeLocalIncreasedEvasionAndEnergyShield1"] = { affix = "", "(75-125)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "upgraded_corruption_mod", "defences" }, tradeHash = 1999113824, }, + ["CorruptionUpgradeReducedLocalAttributeRequirements1"] = { affix = "", "(30-50)% reduced Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { "armour", "weapon", "wand", "staff", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 3639275092, }, + ["CorruptionUpgradeAdditionalPhysicalDamageReduction1"] = { affix = "", "(6-9)% additional Physical Damage Reduction", statOrder = { 951 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "physical" }, tradeHash = 3771516363, }, + ["CorruptionUpgradeDamageTakenGainedAsLife1"] = { affix = "", "(20-40)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHash = 1444556985, }, + ["CorruptionUpgradeDamageTakenGainedAsMana1"] = { affix = "", "(20-40)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life", "mana" }, tradeHash = 472520716, }, + ["CorruptionUpgradeLifeLeech1"] = { affix = "", "Leech 9% of Physical Attack Damage as Life", statOrder = { 971 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life", "physical", "attack" }, tradeHash = 2557965901, }, + ["CorruptionUpgradeManaLeech1"] = { affix = "", "Leech 6% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 1, group = "ManaLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana", "physical", "attack" }, tradeHash = 707457662, }, + ["CorruptionUpgradeMaximumElementalResistance1"] = { affix = "", "+2% to all Maximum Elemental Resistances", statOrder = { 952 }, level = 1, group = "MaximumElementalResistance", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "resistance" }, tradeHash = 1978899297, }, + ["CorruptionUpgradeIncreasedLife1"] = { affix = "", "+(120-160) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHash = 3299347043, }, + ["CorruptionUpgradeIncreasedMana1"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { "focus", "quiver", "ring", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHash = 1050105434, }, + ["CorruptionUpgradeIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(50-75)% increased Armour", statOrder = { 864 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "upgraded_corruption_mod", "defences" }, tradeHash = 2866361420, }, + ["CorruptionUpgradeIncreasedEvasionRatingPercent1"] = { affix = "", "(50-75)% increased Evasion Rating", statOrder = { 866 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "upgraded_corruption_mod", "defences" }, tradeHash = 2106365538, }, + ["CorruptionUpgradeIncreasedEnergyShieldPercent1"] = { affix = "", "(50-75)% increased maximum Energy Shield", statOrder = { 868 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "upgraded_corruption_mod", "defences" }, tradeHash = 2482852589, }, + ["CorruptionUpgradeThornsDamageIncrease1"] = { affix = "", "(120-200)% increased Thorns damage", statOrder = { 9646 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHash = 1315743832, }, + ["CorruptionUpgradeChaosResistance1"] = { affix = "", "+(30-49)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { "body_armour", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "chaos", "resistance" }, tradeHash = 2923486259, }, + ["CorruptionUpgradeFireResistance1"] = { affix = "", "+(50-75)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["CorruptionUpgradeColdResistance1"] = { affix = "", "+(50-75)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["CorruptionUpgradeLightningResistance1"] = { affix = "", "+(50-75)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["CorruptionUpgradeMaximumFireResistance1"] = { affix = "", "+(3-5)% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "resistance" }, tradeHash = 4095671657, }, + ["CorruptionUpgradeMaximumColdResistance1"] = { affix = "", "+(3-5)% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "resistance" }, tradeHash = 3676141501, }, + ["CorruptionUpgradeMaximumLightningResistance1"] = { affix = "", "+(3-5)% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "resistance" }, tradeHash = 1011760251, }, + ["CorruptionUpgradeIncreasedSpirit1"] = { affix = "", "+(40-60) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 3981240776, }, + ["CorruptionUpgradeFirePenetration1"] = { affix = "", "Damage Penetrates (25-40)% Fire Resistance", statOrder = { 2613 }, level = 1, group = "FireResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire" }, tradeHash = 2653955271, }, + ["CorruptionUpgradeColdPenetration1"] = { affix = "", "Damage Penetrates (25-40)% Cold Resistance", statOrder = { 2614 }, level = 1, group = "ColdResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold" }, tradeHash = 3417711605, }, + ["CorruptionUpgradeLightningPenetration1"] = { affix = "", "Damage Penetrates (25-40)% Lightning Resistance", statOrder = { 2615 }, level = 1, group = "LightningResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning" }, tradeHash = 818778753, }, + ["CorruptionUpgradeArmourBreak1"] = { affix = "", "Break (25-40)% increased Armour", statOrder = { 4283 }, level = 1, group = "ArmourBreak", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 1776411443, }, + ["CorruptionUpgradeGoldFoundIncrease1"] = { affix = "", "(15-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6476 }, level = 1, group = "GoldFoundIncrease", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "drop", "upgraded_corruption_mod" }, tradeHash = 3175163625, }, + ["CorruptionUpgradeMaximumEnduranceCharges1"] = { affix = "", "+(2-3) to Maximum Endurance Charges", statOrder = { 1486 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "endurance_charge", "upgraded_corruption_mod" }, tradeHash = 1515657623, }, + ["CorruptionUpgradeMaximumFrenzyCharges1"] = { affix = "", "+(2-3) to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "frenzy_charge", "upgraded_corruption_mod" }, tradeHash = 4078695, }, + ["CorruptionUpgradeMaximumPowerCharges1"] = { affix = "", "+(2-3) to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "power_charge", "upgraded_corruption_mod" }, tradeHash = 227523295, }, + ["CorruptionUpgradeIncreasedAccuracy1"] = { affix = "", "+(150-300) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { "helmet", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHash = 803737631, }, + ["CorruptionUpgradeMovementVelocity1"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "speed" }, tradeHash = 2250533757, }, + ["CorruptionUpgradeIncreasedStunThreshold1"] = { affix = "", "(50-75)% increased Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 680068163, }, + ["CorruptionUpgradeIncreasedFreezeThreshold1"] = { affix = "", "(50-75)% increased Freeze Threshold", statOrder = { 2879 }, level = 1, group = "FreezeThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHash = 3780644166, }, + ["CorruptionUpgradeSlowPotency1"] = { affix = "", "(30-40)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 924253255, }, + ["CorruptionUpgradeLifeRegenerationRate1"] = { affix = "", "(35-50)% increased Life Regeneration rate", statOrder = { 969 }, level = 1, group = "LifeRegenerationRate", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHash = 44972811, }, + ["CorruptionUpgradeManaRegeneration1"] = { affix = "", "(35-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHash = 789117908, }, + ["CorruptionUpgradeLocalBlockChance1"] = { affix = "", "(15-25)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "upgraded_corruption_mod" }, tradeHash = 2481353198, }, + ["CorruptionUpgradeMaximumBlockChance1"] = { affix = "", "+(4-6)% to maximum Block chance", statOrder = { 1659 }, level = 1, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "upgraded_corruption_mod" }, tradeHash = 480796730, }, + ["CorruptionUpgradeGainLifeOnBlock1"] = { affix = "", "(40-55) Life gained when you Block", statOrder = { 1445 }, level = 1, group = "GainLifeOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "upgraded_corruption_mod", "life" }, tradeHash = 762600725, }, + ["CorruptionUpgradeGainManaOnBlock1"] = { affix = "", "(20-30) Mana gained when you Block", statOrder = { 1446 }, level = 1, group = "GainManaOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "upgraded_corruption_mod", "mana" }, tradeHash = 2122183138, }, + ["CorruptionUpgradeAllResistances1"] = { affix = "", "+(15-35)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, + ["CorruptionUpgradeGlobalFireSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Fire Spell Skills", statOrder = { 924 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, }, + ["CorruptionUpgradeGlobalColdSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Cold Spell Skills", statOrder = { 925 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, }, + ["CorruptionUpgradeGlobalLightningSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, }, + ["CorruptionUpgradeGlobalChaosSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "chaos", "caster", "gem" }, tradeHash = 4226189338, }, + ["CorruptionUpgradeGlobalPhysicalSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "physical", "caster", "gem" }, tradeHash = 1600707273, }, + ["CorruptionUpgradeGlobalMinionSkillGemsLevel1"] = { affix = "", "+(2-3) to Level of all Minion Skills", statOrder = { 931 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "minion", "gem" }, tradeHash = 2162097452, }, + ["CorruptionUpgradeGlobalMeleeSkillGemsLevel1"] = { affix = "", "+(2-3) to Level of all Melee Skills", statOrder = { 928 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHash = 9187492, }, + ["CorruptionUpgradeItemFoundRarityIncrease1"] = { affix = "", "(25-35)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "drop", "upgraded_corruption_mod" }, tradeHash = 3917489142, }, + ["CorruptionUpgradeAllDamage1"] = { affix = "", "(50-75)% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHash = 2154246560, }, + ["CorruptionUpgradeIncreasedSkillSpeed1"] = { affix = "", "(8-16)% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "speed" }, tradeHash = 970213192, }, + ["CorruptionUpgradeCriticalStrikeMultiplier1"] = { affix = "", "(35-60)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "damage", "critical" }, tradeHash = 3556824919, }, + ["CorruptionUpgradeGlobalSkillGemLevel1"] = { affix = "", "+(2-3) to Level of all Skills", statOrder = { 4166 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "gem" }, tradeHash = 4283407333, }, + ["CorruptionUpgradeStrength1"] = { affix = "", "+(35-50) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHash = 4080418644, }, + ["CorruptionUpgradeDexterity1"] = { affix = "", "+(35-50) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHash = 3261801346, }, + ["CorruptionUpgradeIntelligence1"] = { affix = "", "+(35-50) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHash = 328541901, }, + ["CorruptionUpgradeLifeFlaskChargeGeneration1"] = { affix = "", "Life Flasks gain (0.33-0.58) charges per Second", statOrder = { 6451 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 1102738251, }, + ["CorruptionUpgradeManaFlaskChargeGeneration1"] = { affix = "", "Mana Flasks gain (0.33-0.58) charges per Second", statOrder = { 6452 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 2200293569, }, + ["CorruptionUpgradeCharmChargeGeneration1"] = { affix = "", "Charms gain (0.33-0.58) charges per Second", statOrder = { 6448 }, level = 1, group = "CharmChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 185580205, }, + ["CorruptionUpgradeLocalIncreasedPhysicalDamagePercent1"] = { affix = "", "(50-75)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "upgraded_corruption_mod", "damage", "physical", "attack" }, tradeHash = 1805374733, }, + ["CorruptionUpgradeSpellDamageOnWeapon1"] = { affix = "", "(60-90)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "wand", "focus", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "upgraded_corruption_mod", "damage", "caster" }, tradeHash = 2974417149, }, + ["CorruptionUpgradeSpellDamageOnTwoHandWeapon1"] = { affix = "", "(120-240)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "upgraded_corruption_mod", "damage", "caster" }, tradeHash = 2974417149, }, + ["CorruptionUpgradeLocalIncreasedSpiritPercent1"] = { affix = "", "(35-60)% increased Spirit", statOrder = { 842 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 3984865854, }, + ["CorruptionUpgradeLocalAddedFireDamage1"] = { affix = "", "Adds (30-44) to (55-72) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, }, + ["CorruptionUpgradeLocalAddedFireDamageTwoHand1"] = { affix = "", "Adds (73-80) to (91-101) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, }, + ["CorruptionUpgradeLocalAddedColdDamage1"] = { affix = "", "Adds (28-42) to (53-69) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, }, + ["CorruptionUpgradeLocalAddedColdDamageTwoHand1"] = { affix = "", "Adds (51-57) to (88-96) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, }, + ["CorruptionUpgradeLocalAddedLightningDamage1"] = { affix = "", "Adds (1-2) to (79-103) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, + ["CorruptionUpgradeLocalAddedLightningDamageTwoHand1"] = { affix = "", "Adds (1-3) to (131-141) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, + ["CorruptionUpgradeLocalAddedChaosDamage1"] = { affix = "", "Adds (27-31) to (42-48) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, + ["CorruptionUpgradeLocalAddedChaosDamageTwoHand1"] = { affix = "", "Adds (40-46) to (67-75) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, + ["CorruptionUpgradeLocalIncreasedAttackSpeed1"] = { affix = "", "(14-18)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack", "speed" }, tradeHash = 210067635, }, + ["CorruptionUpgradeLocalCriticalStrikeMultiplier1"] = { affix = "", "+(15-25)% to Critical Damage Bonus", statOrder = { 918 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "damage", "attack", "critical" }, tradeHash = 2694482655, }, + ["CorruptionUpgradeLocalStunDamageIncrease1"] = { affix = "", "Causes (40-60)% increased Stun Buildup", statOrder = { 985 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 791928121, }, + ["CorruptionUpgradeLocalWeaponRangeIncrease1"] = { affix = "", "(20-40)% increased Melee Strike Range with this weapon", statOrder = { 7131 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHash = 548198834, }, + ["CorruptionUpgradeLocalChanceToBleed1"] = { affix = "", "(25-50)% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { "mace", "sword", "axe", "flail", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "bleed", "upgraded_corruption_mod", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, + ["CorruptionUpgradeLocalChanceToPoison1"] = { affix = "", "(25-50)% chance to Poison on Hit with this weapon", statOrder = { 7334 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { "sword", "spear", "dagger", "warstaff", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "poison", "upgraded_corruption_mod", "chaos", "attack", "ailment" }, tradeHash = 3885634897, }, + ["CorruptionUpgradeLocalRageOnHit1"] = { affix = "", "Grants (4-6) Rage on Hit", statOrder = { 7239 }, level = 1, group = "LocalRageOnHit", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 1725749947, }, + ["CorruptionUpgradeLocalChanceToMaim1"] = { affix = "", "(25-50)% chance to Maim on Hit", statOrder = { 7320 }, level = 1, group = "LocalChanceToMaim", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHash = 2763429652, }, + ["CorruptionUpgradeLocalChanceToBlind1"] = { affix = "", "(25-50)% chance to Blind Enemies on hit", statOrder = { 1937 }, level = 1, group = "BlindingHit", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 2301191210, }, + ["CorruptionUpgradeWeaponElementalDamage1"] = { affix = "", "(60-90)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "attack" }, tradeHash = 387439868, }, + ["CorruptionUpgradeWeaponElementalDamageTwoHand1"] = { affix = "", "(140-200)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "attack" }, tradeHash = 387439868, }, + ["CorruptionUpgradeAdditionalArrows1"] = { affix = "", "Bow Attacks fire 2 additional Arrows", statOrder = { 945 }, level = 1, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHash = 3885405204, }, + ["CorruptionUpgradeAdditionalAmmo1"] = { affix = "", "Loads 2 additional bolts", statOrder = { 943 }, level = 1, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHash = 1039380318, }, + ["CorruptionUpgradeIgniteChanceIncrease1"] = { affix = "", "(50-75)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 2968503605, }, + ["CorruptionUpgradeFreezeDamageIncrease1"] = { affix = "", "(50-75)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 473429811, }, + ["CorruptionUpgradeShockChanceIncrease1"] = { affix = "", "(50-75)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 293638271, }, + ["CorruptionUpgradeSpellCriticalStrikeChance1"] = { affix = "", "(50-75)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "caster", "critical" }, tradeHash = 737908626, }, + ["CorruptionUpgradeLifeGainedFromEnemyDeath1"] = { affix = "", "Gain (40-55) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHash = 3695891184, }, + ["CorruptionUpgradeManaGainedFromEnemyDeath1"] = { affix = "", "Gain (20-30) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHash = 1368271171, }, + ["CorruptionUpgradeIncreasedCastSpeed1"] = { affix = "", "(20-35)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "caster", "speed" }, tradeHash = 2891184298, }, + ["CorruptionUpgradeEnergyShieldDelay1"] = { affix = "", "(50-75)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { "focus", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "upgraded_corruption_mod", "defences" }, tradeHash = 1782086450, }, + ["CorruptionUpgradeAlliesInPresenceAllDamage1"] = { affix = "", "Allies in your Presence deal (50-75)% increased Damage", statOrder = { 881 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHash = 1798257884, }, + ["CorruptionUpgradeAlliesInPresenceIncreasedAttackSpeed1"] = { affix = "", "Allies in your Presence have (15-25)% increased Attack Speed", statOrder = { 893 }, level = 1, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack", "speed" }, tradeHash = 1998951374, }, + ["CorruptionUpgradeAlliesInPresenceIncreasedCastSpeed1"] = { affix = "", "Allies in your Presence have (15-25)% increased Cast Speed", statOrder = { 894 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "caster", "speed" }, tradeHash = 289128254, }, + ["CorruptionUpgradeAlliesInPresenceCriticalStrikeMultiplier1"] = { affix = "", "Allies in your Presence have (30-45)% increased Critical Damage Bonus", statOrder = { 892 }, level = 1, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "damage", "critical" }, tradeHash = 3057012405, }, + ["CorruptionUpgradeChanceToPierce1"] = { affix = "", "(50-75)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 1, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 2321178454, }, + ["CorruptionUpgradeChainFromTerrain1"] = { affix = "", "Projectiles have (25-50)% chance to Chain an additional time from terrain", statOrder = { 8970 }, level = 1, group = "ChainFromTerrain", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 4081947835, }, + ["CorruptionUpgradeJewelStrength1"] = { affix = "", "+(14-16) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHash = 4080418644, }, + ["CorruptionUpgradeJewelDexterity1"] = { affix = "", "+(14-16) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHash = 3261801346, }, + ["CorruptionUpgradeJewelIntelligence1"] = { affix = "", "+(14-16) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHash = 328541901, }, + ["CorruptionUpgradeJewelFireResist1"] = { affix = "", "+(15-20)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, + ["CorruptionUpgradeJewelColdResist1"] = { affix = "", "+(15-20)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, + ["CorruptionUpgradeJewelLightningResist1"] = { affix = "", "+(15-20)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, + ["CorruptionUpgradeJewelChaosResist1"] = { affix = "", "+(10-13)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "chaos", "resistance" }, tradeHash = 2923486259, }, + ["CorruptionUpgradeArmourAppliesToElementalDamage"] = { affix = "", "+(30-50)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "armour", "upgraded_corruption_mod", "defences", "elemental" }, tradeHash = 3362812763, }, + ["CorruptionUpgradeEvasionAppliesToDeflection"] = { affix = "", "Gain Deflection Rating equal to (30-50)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "upgraded_corruption_mod", "defences" }, tradeHash = 3033371881, }, + ["CorruptionUpgradeGlobalDeflectionRating"] = { affix = "", "(20-30)% increased Deflection Rating", statOrder = { 5721 }, level = 1, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "upgraded_corruption_mod", "defences" }, tradeHash = 3040571529, }, + ["CorruptionUpgradeDeflectDamageTaken"] = { affix = "", "Prevent +(2-3)% of Damage from Deflected Hits", statOrder = { 4541 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 3552135623, }, + ["CorruptionUpgradeMaximumLifeConvertedToEnergyShield"] = { affix = "", "(5-10)% of Maximum Life Converted to Energy Shield", statOrder = { 8332 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "upgraded_corruption_mod", "life", "defences" }, tradeHash = 2458962764, }, + ["CorruptionUpgradeGlobalItemAttributeRequirements"] = { affix = "", "Equipment and Skill Gems have (10-20)% reduced Attribute Requirements", statOrder = { 2224 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 752930724, }, + ["CorruptionUpgradePercentageAllAttributes"] = { affix = "", "(5-10)% increased Attributes", statOrder = { 1079 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHash = 3143208761, }, + ["CorruptionUpgradeDeflectDamageTakenRecoupedAsLife"] = { affix = "", "(5-10)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 5718 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 3471443885, }, + ["CorruptionUpgradeDamageTakenGoesToLifeManaESPercent"] = { affix = "", "(10-20)% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 5646 }, level = 1, group = "DamageTakenGoesToLifeManaESPercent", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 2319832234, }, + ["CorruptionUpgradeDamageRemovedFromManaBeforeLife"] = { affix = "", "(10-20)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life", "mana" }, tradeHash = 458438597, }, + ["CorruptionUpgradeManaRecoveryRate"] = { affix = "", "(10-20)% increased Mana Recovery rate", statOrder = { 1381 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHash = 3513180117, }, + ["CorruptionUpgradeLifeRecoveryRate"] = { affix = "", "(10-20)% increased Life Recovery rate", statOrder = { 1376 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHash = 3240073117, }, + ["CorruptionUpgradePercentOfLeechIsInstant"] = { affix = "", "(10-20)% of Leech is Instant", statOrder = { 6962 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 3561837752, }, + ["CorruptionUpgradePhysicalDamageTakenAsRandomElement"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Damage of a Random Element", statOrder = { 8860 }, level = 1, group = "PhysicalDamageTakenAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental" }, tradeHash = 1904530666, }, + ["CorruptionUpgradeDamageTakenGainedAsLife"] = { affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHash = 1444556985, }, + ["CorruptionUpgradePercentDamageGoesToMana"] = { affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life", "mana" }, tradeHash = 472520716, }, + ["CorruptionUpgradeThornsCriticalStrikeChance"] = { affix = "", "+(0.05-0.1)% to Thorns Critical Hit Chance", statOrder = { 4616 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 2715190555, }, + ["CorruptionUpgradeThornsFromPercentBodyArmour"] = { affix = "", "Gain Physical Thorns damage equal to (0.05-0.1)% of Item Armour on Equipped Body Armour", statOrder = { 4526 }, level = 1, group = "ThornsFromPercentBodyArmour", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHash = 1793740180, }, + ["CorruptionUpgradeThornsDamageIncreaseIfBlockedRecently"] = { affix = "", "(100-150)% increased Thorns damage if you've Blocked Recently", statOrder = { 9647 }, level = 1, group = "ThornsDamageIncreaseIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 483561599, }, + ["CorruptionUpgradePhysicalDamageTakenAsChaos"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2124 }, level = 1, group = "PhysicalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "chaos" }, tradeHash = 4129825612, }, + ["CorruptionUpgradePhysicalDamageTakenAsFirePercent"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2119 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental", "fire" }, tradeHash = 3342989455, }, + ["CorruptionUpgradePhysicalDamageTakenAsCold"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2120 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental", "cold" }, tradeHash = 1871056256, }, + ["CorruptionUpgradePhysicalDamageTakenAsLightningPercent"] = { affix = "", "(3-6)% of Physical damage from Hits taken as Lightning damage", statOrder = { 2121 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental", "lightning" }, tradeHash = 425242359, }, + ["CorruptionUpgradeMaximumChaosResistance"] = { affix = "", "+(1-3)% to Maximum Chaos Resistance", statOrder = { 956 }, level = 1, group = "MaximumChaosResistance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "chaos", "resistance" }, tradeHash = 1301765461, }, + ["CorruptionUpgradeHeraldReservationEfficiency"] = { affix = "", "(20-30)% increased Reservation Efficiency of Herald Skills", statOrder = { 9179 }, level = 1, group = "HeraldReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 1697191405, }, + ["CorruptionUpgradeMinionReservationEfficiency"] = { affix = "", "(20-30)% increased Reservation Efficiency of Minion Skills", statOrder = { 8524 }, level = 1, group = "MinionReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 1805633363, }, + ["CorruptionUpgradeMetaReservationEfficiency"] = { affix = "", "Meta Skills have (20-30)% increased Reservation Efficiency", statOrder = { 9180 }, level = 1, group = "MetaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 1672384027, }, + ["CorruptionUpgradeColdExposureOnHit"] = { affix = "", "(25-50)% chance to inflict Exposure on Hit", statOrder = { 4568 }, level = 1, group = "ColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 2630708439, }, + ["CorruptionUpgradeGlobalIncreaseFireSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Fire Spell Skills", statOrder = { 924 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, }, + ["CorruptionUpgradeGlobalIncreaseColdSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Cold Spell Skills", statOrder = { 925 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, }, + ["CorruptionUpgradeGlobalIncreaseLightningSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, }, + ["CorruptionUpgradeGlobalIncreasePhysicalSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "caster", "gem" }, tradeHash = 1600707273, }, + ["CorruptionUpgradeOneHandDamageGainedAsFire"] = { affix = "", "Gain (20-35)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire" }, tradeHash = 3015669065, }, + ["CorruptionUpgradeOneHandDamageGainedAsCold"] = { affix = "", "Gain (20-35)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold" }, tradeHash = 2505884597, }, + ["CorruptionUpgradeOneHandDamageGainedAsLightning"] = { affix = "", "Gain (20-35)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning" }, tradeHash = 3278136794, }, + ["CorruptionUpgradeOneHandDamageGainedAsPhysical"] = { affix = "", "Gain (20-35)% of Damage as Extra Physical Damage", statOrder = { 1601 }, level = 1, group = "DamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "upgraded_corruption_mod", "damage", "physical" }, tradeHash = 4019237939, }, + ["CorruptionUpgradeOneHandDamageGainedAsChaos"] = { affix = "", "Gain (20-35)% of Damage as Extra Chaos Damage", statOrder = { 1602 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos" }, tradeHash = 3398787959, }, + ["CorruptionUpgradeTwoHandDamageGainedAsFire"] = { affix = "", "Gain (35-50)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire" }, tradeHash = 3015669065, }, + ["CorruptionUpgradeTwoHandDamageGainedAsCold"] = { affix = "", "Gain (35-50)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold" }, tradeHash = 2505884597, }, + ["CorruptionUpgradeTwoHandDamageGainedAsLightning"] = { affix = "", "Gain (35-50)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning" }, tradeHash = 3278136794, }, + ["CorruptionUpgradeTwoHandDamageGainedAsPhysical"] = { affix = "", "Gain (35-50)% of Damage as Extra Physical Damage", statOrder = { 1601 }, level = 1, group = "DamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "upgraded_corruption_mod", "damage", "physical" }, tradeHash = 4019237939, }, + ["CorruptionUpgradeTwoHandDamageGainedAsChaos"] = { affix = "", "Gain (35-50)% of Damage as Extra Chaos Damage", statOrder = { 1602 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos" }, tradeHash = 3398787959, }, + ["CorruptionUpgradeGlobalSkillGemQuality"] = { affix = "", "+10% to Quality of all Skills", statOrder = { 4167 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "gem" }, tradeHash = 3655769732, }, + ["CorruptionUpgradeTemporaryMinionLimit"] = { affix = "", "Temporary Minion Skills have +2 to Limit of Minions summoned", statOrder = { 9640 }, level = 1, group = "TemporaryMinionLimit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 1058934731, }, + ["CorruptionUpgradeMeleeSplash"] = { affix = "", "Strikes deal Splash Damage", statOrder = { 1067 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHash = 3675300253, }, + ["CorruptionUpgradePercentageStrength"] = { affix = "", "(5-10)% increased Strength", statOrder = { 1080 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHash = 734614379, }, + ["CorruptionUpgradePercentageDexterity"] = { affix = "", "(5-10)% increased Dexterity", statOrder = { 1081 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHash = 4139681126, }, + ["CorruptionUpgradePercentageIntelligence"] = { affix = "", "(5-10)% increased Intelligence", statOrder = { 1082 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHash = 656461285, }, + ["CorruptionUpgradePercentageAllAttributesCopy"] = { affix = "", "(3-6)% increased Attributes", statOrder = { 1079 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHash = 3143208761, }, + ["CorruptionUpgradeGlobalFlaskLifeRecovery"] = { affix = "", "(15-30)% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "upgraded_corruption_mod", "life" }, tradeHash = 821241191, }, + ["CorruptionUpgradeFlaskManaRecovery"] = { affix = "", "(15-30)% increased Mana Recovery from Flasks", statOrder = { 1720 }, level = 1, group = "FlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "upgraded_corruption_mod", "mana" }, tradeHash = 2222186378, }, + ["CorruptionUpgradeCharmIncreasedDuration"] = { affix = "", "(15-30)% increased Duration", statOrder = { 903 }, level = 1, group = "CharmIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 2541588185, }, + ["CorruptionUpgradeCharmChargesGained"] = { affix = "", "(15-30)% increased Charm Charges gained", statOrder = { 5227 }, level = 1, group = "CharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 3585532255, }, + ["CorruptionUpgradeOneHandGlobalIncreaseSpellSkillGemLevel"] = { affix = "", "+(1-2) to Level of all Spell Skills", statOrder = { 922 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster", "gem" }, tradeHash = 124131830, }, + ["CorruptionUpgradeTwoHandGlobalIncreaseSpellSkillGemLevel"] = { affix = "", "+(3-4) to Level of all Spell Skills", statOrder = { 922 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster", "gem" }, tradeHash = 124131830, }, + ["CorruptionUpgradeBleedDotMultiplier"] = { affix = "", "(40-60)% increased Magnitude of Bleeding you inflict", statOrder = { 4662 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "upgraded_corruption_mod", "damage", "physical", "attack", "ailment" }, tradeHash = 3166958180, }, + ["CorruptionUpgradePoisonEffect"] = { affix = "", "(40-60)% increased Magnitude of Poison you inflict", statOrder = { 8925 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "damage", "ailment" }, tradeHash = 2487305362, }, + ["CorruptionUpgradeMaximumRage"] = { affix = "", "+(5-10) to Maximum Rage", statOrder = { 9032 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 1181501418, }, + ["CorruptionUpgradeSlowPotency"] = { affix = "", "(10-20)% increased Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 924253255, }, + ["CorruptionUpgradeBlindEffect"] = { affix = "", "(30-50)% increased Blind Effect", statOrder = { 4781 }, level = 1, group = "BlindEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 1585769763, }, + ["CorruptionUpgradeGlobalElementalGemLevel"] = { affix = "", "+(1-2) to Level of all Elemental Skills", statOrder = { 5899 }, level = 1, group = "GlobalElementalGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "gem" }, tradeHash = 2901213448, }, + ["CorruptionUpgradeChanceForNoBolt"] = { affix = "", "Bolts fired by Crossbow Attacks have (10-20)% chance to not expend Ammunition", statOrder = { 5508 }, level = 1, group = "ChanceForNoBolt", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 4273162558, }, + ["CorruptionUpgradeIgniteEffect"] = { affix = "", "(20-30)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 3791899485, }, + ["CorruptionUpgradeFreezeDuration"] = { affix = "", "(20-30)% increased Freeze Duration on Enemies", statOrder = { 1541 }, level = 1, group = "FreezeDuration", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 1073942215, }, + ["CorruptionUpgradeShockEffect"] = { affix = "", "(20-30)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHash = 2527686725, }, + ["CorruptionUpgradeSpellCriticalStrikeMultiplier"] = { affix = "", "(60-90)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster", "critical" }, tradeHash = 274716455, }, + ["CorruptionUpgradeSpellChanceToFireTwoAdditionalProjectiles"] = { affix = "", "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9431 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster" }, tradeHash = 2910761524, }, + ["CorruptionUpgradeMinionDuration"] = { affix = "", "(20-40)% increased Minion Duration", statOrder = { 4590 }, level = 1, group = "MinionDuration", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "minion" }, tradeHash = 999511066, }, + ["CorruptionUpgradePresenceRadius"] = { affix = "", "(30-60)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 101878827, }, + ["CorruptionUpgradeProjectileSpeed"] = { affix = "", "(20-40)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "speed" }, tradeHash = 3759663284, }, + ["CorruptionUpgradeReducedIgniteEffectOnSelf"] = { affix = "", "(20-30)% reduced Magnitude of Ignite on you", statOrder = { 6814 }, level = 1, group = "ReducedIgniteEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "ailment" }, tradeHash = 1269971728, }, + ["CorruptionUpgradeReducedChillDurationOnSelf"] = { affix = "", "(20-30)% reduced Chill Duration on you", statOrder = { 997 }, level = 1, group = "ReducedChillDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "ailment" }, tradeHash = 1874553720, }, + ["CorruptionUpgradeReducedShockEffectOnSelf"] = { affix = "", "(20-30)% reduced effect of Shock on you", statOrder = { 9261 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHash = 3801067695, }, + ["CorruptionUpgradeGlobalMaimOnHit"] = { affix = "", "Attacks have (30-50)% chance to Maim on Hit", statOrder = { 7469 }, level = 1, group = "GlobalMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHash = 1510714129, }, + ["CorruptionUpgradeSpellsHinderOnHitChance"] = { affix = "", "(30-50)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9433 }, level = 1, group = "SpellsHinderOnHitChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster" }, tradeHash = 3002506763, }, + ["CorruptionUpgradePhysicalDamageOverTimeTaken"] = { affix = "", "(20-30)% reduced Physical Damage taken over time", statOrder = { 4599 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical" }, tradeHash = 511024200, }, + ["CorruptionUpgradeGlobalChanceToBlindOnHit"] = { affix = "", "(30-50)% Global chance to Blind Enemies on Hit", statOrder = { 2592 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 2221570601, }, + ["CorruptionUpgradeAdditionalFissureChance"] = { affix = "", "Skills which create Fissures have a (20-40)% chance to create an additional Fissure", statOrder = { 9296 }, level = 1, group = "AdditionalFissureChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHash = 2544540062, }, } \ No newline at end of file diff --git a/src/Data/ModJewel.lua b/src/Data/ModJewel.lua index 43043506f9..ba47f732aa 100644 --- a/src/Data/ModJewel.lua +++ b/src/Data/ModJewel.lua @@ -363,4 +363,365 @@ return { ["JewelShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(2-4)% increased Skill Speed while Shapeshifted", statOrder = { 9317 }, level = 1, group = "ShapeshiftSkillSpeedForJewel", weightKey = { "intjewel", "strjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, tradeHashes = { [918325986] = { "(2-4)% increased Skill Speed while Shapeshifted" }, } }, ["JewelShapeshiftDamage"] = { type = "Prefix", affix = "Bestial", "(5-15)% increased Damage while Shapeshifted", statOrder = { 5567 }, level = 1, group = "ShapeshiftDamageForJewel", weightKey = { "intjewel", "strjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2440073079] = { "(5-15)% increased Damage while Shapeshifted" }, } }, ["JewelPlantDamage"] = { type = "Prefix", affix = "Overgrown", "(5-15)% increased Damage with Plant Skills", statOrder = { 8914 }, level = 1, group = "PlantDamageForJewel", weightKey = { "intjewel", "strjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2518900926] = { "(5-15)% increased Damage with Plant Skills" }, } }, + ["JewelAccuracy"] = { type = "Prefix", affix = "Accurate", "(5-10)% increased Accuracy Rating", statOrder = { 1268 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 624954515, }, + ["JewelAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(5-15)% increased chance to inflict Ailments", statOrder = { 4136 }, level = 1, group = "AilmentChance", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHash = 1772247089, }, + ["JewelAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(5-15)% increased Magnitude of Ailments you inflict", statOrder = { 4140 }, level = 1, group = "AilmentEffect", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, tradeHash = 1303248024, }, + ["JewelAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(10-20)% increased Elemental Ailment Threshold", statOrder = { 4147 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3544800472, }, + ["JewelAreaofEffect"] = { type = "Prefix", affix = "Blasting", "(4-6)% increased Area of Effect", statOrder = { 1557 }, level = 1, group = "AreaOfEffect", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 280731498, }, + ["JewelArmour"] = { type = "Prefix", affix = "Armoured", "(10-20)% increased Armour", statOrder = { 864 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, }, + ["JewelArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (5-15)% increased Armour", statOrder = { 4283 }, level = 1, group = "ArmourBreak", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1776411443, }, + ["JewelArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(10-20)% increased Armour Break Duration", statOrder = { 4285 }, level = 1, group = "ArmourBreakDuration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2637470878, }, + ["JewelAttackCriticalChance"] = { type = "Suffix", affix = "of Deadliness", "(6-16)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 2194114101, }, + ["JewelAttackCriticalDamage"] = { type = "Suffix", affix = "of Demolishing", "(10-20)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 3714003708, }, + ["JewelAttackDamage"] = { type = "Prefix", affix = "Combat", "(5-15)% increased Attack Damage", statOrder = { 1093 }, level = 1, group = "AttackDamage", weightKey = { "strjewel", "dexjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 2843214518, }, + ["JewelAttackSpeed"] = { type = "Suffix", affix = "of Alacrity", "(2-4)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, + ["JewelAuraEffect"] = { type = "Prefix", affix = "Commanding", "Aura Skills have (3-7)% increased Magnitudes", statOrder = { 2472 }, level = 1, group = "AuraEffectForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "aura" }, tradeHash = 315791320, }, + ["JewelAxeDamage"] = { type = "Prefix", affix = "Sinister", "(5-15)% increased Damage with Axes", statOrder = { 1170 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHash = 3314142259, }, + ["JewelAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(2-4)% increased Attack Speed with Axes", statOrder = { 1255 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHash = 3550868361, }, + ["JewelBleedingChance"] = { type = "Prefix", affix = "Bleeding", "(3-7)% chance to inflict Bleeding on Hit", statOrder = { 4532 }, level = 1, group = "BaseChanceToBleed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2174054121, }, + ["JewelBleedingDuration"] = { type = "Suffix", affix = "of Haemophilia", "(5-10)% increased Bleeding Duration", statOrder = { 4522 }, level = 1, group = "BleedDuration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1459321413, }, + ["JewelBlindEffect"] = { type = "Prefix", affix = "Stifling", "(5-10)% increased Blind Effect", statOrder = { 4781 }, level = 1, group = "BlindEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1585769763, }, + ["JewelBlindonHit"] = { type = "Suffix", affix = "of Blinding", "(3-7)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4453 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 318953428, }, + ["JewelBlock"] = { type = "Prefix", affix = "Protecting", "(3-7)% increased Block chance", statOrder = { 1064 }, level = 1, group = "IncreasedBlockChance", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHash = 4147897060, }, + ["JewelDamageVsRareOrUnique"] = { type = "Prefix", affix = "Slaying", "(10-20)% increased Damage with Hits against Rare and Unique Enemies", statOrder = { 2821 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1852872083, }, + ["JewelBowAccuracyRating"] = { type = "Prefix", affix = "Precise", "(5-15)% increased Accuracy Rating with Bows", statOrder = { 1277 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 169946467, }, + ["JewelBowDamage"] = { type = "Prefix", affix = "Perforating", "(6-16)% increased Damage with Bows", statOrder = { 1190 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 4188894176, }, + ["JewelBowSpeed"] = { type = "Suffix", affix = "of Nocking", "(2-4)% increased Attack Speed with Bows", statOrder = { 1260 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3759735052, }, + ["JewelCastSpeed"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, + ["JewelChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (3-5)% chance to Chain an additional time from terrain", statOrder = { 8970 }, level = 1, group = "ChainFromTerrain", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4081947835, }, + ["JewelCharmDuration"] = { type = "Suffix", affix = "of the Woodland", "(5-15)% increased Charm Effect Duration", statOrder = { 878 }, level = 1, group = "CharmDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1389754388, }, + ["JewelCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(5-15)% increased Charm Charges gained", statOrder = { 5227 }, level = 1, group = "CharmChargesGained", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3585532255, }, + ["JewelCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(10-20)% increased Damage while you have an active Charm", statOrder = { 5627 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 627767961, }, + ["JewelChaosDamage"] = { type = "Prefix", affix = "Chaotic", "(6-12)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, + ["JewelChillDuration"] = { type = "Suffix", affix = "of Frost", "(15-25)% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IncreasedChillDuration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, }, + ["JewelColdDamage"] = { type = "Prefix", affix = "Chilling", "(5-15)% increased Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamagePercentage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, }, + ["JewelColdPenetration"] = { type = "Prefix", affix = "Numbing", "Damage Penetrates (5-10)% Cold Resistance", statOrder = { 2614 }, level = 1, group = "ColdResistancePenetration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, }, + ["JewelCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(3-5)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1004011302, }, + ["JewelCorpses"] = { type = "Prefix", affix = "Necromantic", "(10-20)% increased Damage if you have Consumed a Corpse Recently", statOrder = { 3802 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2118708619, }, + ["JewelCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5424 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, tradeHash = 440490623, }, + ["JewelCriticalChance"] = { type = "Suffix", affix = "of Annihilation", "(5-15)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHash = 587431675, }, + ["JewelCriticalDamage"] = { type = "Suffix", affix = "of Potency", "(10-20)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3556824919, }, + ["JewelSpellCriticalDamage"] = { type = "Suffix", affix = "of Unmaking", "(10-20)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHash = 274716455, }, + ["JewelCrossbowDamage"] = { type = "Prefix", affix = "Bolting", "(6-16)% increased Damage with Crossbows", statOrder = { 3849 }, level = 1, group = "CrossbowDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 427684353, }, + ["JewelCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(10-15)% increased Crossbow Reload Speed", statOrder = { 9149 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3192728503, }, + ["JewelCrossbowSpeed"] = { type = "Suffix", affix = "of Rapidity", "(2-4)% increased Attack Speed with Crossbows", statOrder = { 3853 }, level = 1, group = "CrossbowSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 1135928777, }, + ["JewelCurseArea"] = { type = "Prefix", affix = "Expanding", "(8-12)% increased Area of Effect of Curses", statOrder = { 1875 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHash = 153777645, }, + ["JewelCurseDelay"] = { type = "Suffix", affix = "of Chanting", "(5-15)% faster Curse Activation", statOrder = { 5530 }, level = 1, group = "CurseDelay", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "curse" }, tradeHash = 1104825894, }, + ["JewelCurseDuration"] = { type = "Suffix", affix = "of Continuation", "(15-25)% increased Curse Duration", statOrder = { 1466 }, level = 1, group = "BaseCurseDuration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "curse" }, tradeHash = 3824372849, }, + ["JewelCurseEffect"] = { type = "Prefix", affix = "Hexing", "(2-4)% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHash = 2353576063, }, + ["JewelDaggerCriticalChance"] = { type = "Suffix", affix = "of Backstabbing", "(6-16)% increased Critical Hit Chance with Daggers", statOrder = { 1299 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, tradeHash = 4018186542, }, + ["JewelDaggerDamage"] = { type = "Prefix", affix = "Lethal", "(6-16)% increased Damage with Daggers", statOrder = { 1182 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHash = 3586984690, }, + ["JewelDaggerSpeed"] = { type = "Suffix", affix = "of Slicing", "(2-4)% increased Attack Speed with Daggers", statOrder = { 1258 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHash = 2538566497, }, + ["JewelDamagefromMana"] = { type = "Suffix", affix = "of Mind", "(2-4)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHash = 458438597, }, + ["JewelDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(15-25)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5553 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2301718443, }, + ["JewelDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(5-10)% increased Duration of Damaging Ailments on Enemies", statOrder = { 5668 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHash = 1829102168, }, + ["JewelDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "(5-10)% chance to Daze on Hit", statOrder = { 4530 }, level = 1, group = "DazeBuildup", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3146310524, }, + ["JewelDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (5-10)% faster", statOrder = { 5703 }, level = 1, group = "DebuffTimePassed", weightKey = { "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1238227257, }, + ["JewelElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 6818 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "ailment" }, tradeHash = 1062710370, }, + ["JewelElementalDamage"] = { type = "Prefix", affix = "Prismatic", "(5-15)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, + ["JewelEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (10-20)% increased Damage", statOrder = { 5912 }, level = 1, group = "ExertedAttackDamage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 1569101201, }, + ["JewelEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (4-8)% increased Energy", statOrder = { 5987 }, level = 1, group = "EnergyGeneration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4236566306, }, + ["JewelEnergyShield"] = { type = "Prefix", affix = "Shimmering", "(10-20)% increased maximum Energy Shield", statOrder = { 868 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, }, + ["JewelEnergyShieldDelay"] = { type = "Prefix", affix = "Serene", "(10-15)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, }, + ["JewelEnergyShieldRecharge"] = { type = "Prefix", affix = "Fevered", "(10-20)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, }, + ["JewelEvasion"] = { type = "Prefix", affix = "Evasive", "(10-20)% increased Evasion Rating", statOrder = { 866 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, }, + ["JewelFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (3-7)% faster", statOrder = { 5671 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHash = 538241406, }, + ["JewelFireDamage"] = { type = "Prefix", affix = "Flaming", "(5-15)% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamagePercentage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, }, + ["JewelFirePenetration"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (5-10)% Fire Resistance", statOrder = { 2613 }, level = 1, group = "FireResistancePenetration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, }, + ["JewelFlailCriticalChance"] = { type = "Suffix", affix = "of Thrashing", "(6-16)% increased Critical Hit Chance with Flails", statOrder = { 3843 }, level = 1, group = "FlailCriticalChance", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, tradeHash = 1484710594, }, + ["JewelFlailDamage"] = { type = "Prefix", affix = "Flailing", "(6-16)% increased Damage with Flails", statOrder = { 3838 }, level = 1, group = "FlailDamage", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHash = 1731242173, }, + ["JewelFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(5-10)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 1836676211, }, + ["JewelFlaskDuration"] = { type = "Suffix", affix = "of Prolonging", "(5-10)% increased Flask Effect Duration", statOrder = { 879 }, level = 1, group = "FlaskDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3741323227, }, + ["JewelFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(30-50)% increased Energy Shield from Equipped Focus", statOrder = { 6002 }, level = 1, group = "FocusEnergyShield", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3174700878, }, + ["JewelForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (10-15)% chance for an additional Projectile when Forking", statOrder = { 5139 }, level = 1, group = "ForkingProjectiles", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3003542304, }, + ["JewelFreezeAmount"] = { type = "Suffix", affix = "of Freezing", "(10-20)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 473429811, }, + ["JewelFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(18-32)% increased Freeze Threshold", statOrder = { 2879 }, level = 1, group = "FreezeThreshold", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 3780644166, }, + ["JewelHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (15-25)% increased Damage", statOrder = { 5632 }, level = 1, group = "HeraldDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 21071013, }, + ["JewelIgniteChance"] = { type = "Suffix", affix = "of Ignition", "(10-20)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 2968503605, }, + ["JewelIgniteEffect"] = { type = "Prefix", affix = "Burning", "(5-15)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 3791899485, }, + ["JewelIncreasedDuration"] = { type = "Suffix", affix = "of Lengthening", "(5-10)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 3377888098, }, + ["JewelKnockback"] = { type = "Suffix", affix = "of Fending", "(5-15)% increased Knockback Distance", statOrder = { 1669 }, level = 1, group = "KnockbackDistance", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 565784293, }, + ["JewelLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(4-6)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 1, group = "LifeCost", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2480498143, }, + ["JewelLifeFlaskRecovery"] = { type = "Suffix", affix = "of Recovery", "(5-15)% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, }, + ["JewelLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(10-20)% increased Life Flask Charges gained", statOrder = { 6970 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4009879772, }, + ["JewelLifeLeech"] = { type = "Suffix", affix = "of Frenzy", "(5-15)% increased amount of Life Leeched", statOrder = { 1820 }, level = 1, group = "LifeLeechAmount", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2112395885, }, + ["JewelLifeonKill"] = { type = "Suffix", affix = "of Success", "Recover (1-2)% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, + ["JewelLifeRecoup"] = { type = "Suffix", affix = "of Infusion", "(2-3)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 1444556985, }, + ["JewelLifeRegeneration"] = { type = "Suffix", affix = "of Regeneration", "(5-10)% increased Life Regeneration rate", statOrder = { 969 }, level = 1, group = "LifeRegenerationRate", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 44972811, }, + ["JewelLightningDamage"] = { type = "Prefix", affix = "Humming", "(5-15)% increased Lightning Damage", statOrder = { 857 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, }, + ["JewelLightningPenetration"] = { type = "Prefix", affix = "Surging", "Damage Penetrates (5-10)% Lightning Resistance", statOrder = { 2615 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, }, + ["JewelMaceDamage"] = { type = "Prefix", affix = "Beating", "(6-16)% increased Damage with Maces", statOrder = { 1186 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 1181419800, }, + ["JewelMaceStun"] = { type = "Suffix", affix = "of Thumping", "(15-25)% increased Stun Buildup with Maces", statOrder = { 7459 }, level = 1, group = "MaceStun", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 872504239, }, + ["JewelManaFlaskRecovery"] = { type = "Suffix", affix = "of Quenching", "(5-15)% increased Mana Recovery from Flasks", statOrder = { 1720 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, }, + ["JewelManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(10-20)% increased Mana Flask Charges gained", statOrder = { 7491 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3590792340, }, + ["JewelManaLeech"] = { type = "Suffix", affix = "of Thirsting", "(5-15)% increased amount of Mana Leeched", statOrder = { 1822 }, level = 1, group = "ManaLeechAmount", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 2839066308, }, + ["JewelManaonKill"] = { type = "Suffix", affix = "of Osmosis", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1443 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1604736568, }, + ["JewelManaRegeneration"] = { type = "Suffix", affix = "of Energy", "(5-15)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, + ["JewelMarkCastSpeed"] = { type = "Suffix", affix = "of Targeting", "Mark Skills have (5-15)% increased Use Speed", statOrder = { 1871 }, level = 1, group = "MarkCastSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed", "curse" }, tradeHash = 1714971114, }, + ["JewelMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (18-32)% increased Skill Effect Duration", statOrder = { 8276 }, level = 1, group = "MarkDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2594634307, }, + ["JewelMarkEffect"] = { type = "Prefix", affix = "Marking", "(4-8)% increased Effect of your Mark Skills", statOrder = { 2268 }, level = 1, group = "MarkEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHash = 712554801, }, + ["JewelMaximumColdResistance"] = { type = "Suffix", affix = "of the Kraken", "+1% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, }, + ["JewelMaximumFireResistance"] = { type = "Suffix", affix = "of the Phoenix", "+1% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, }, + ["JewelMaximumLightningResistance"] = { type = "Suffix", affix = "of the Leviathan", "+1% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, }, + ["JewelMaximumRage"] = { type = "Prefix", affix = "Angry", "+1 to Maximum Rage", statOrder = { 9032 }, level = 1, group = "MaximumRage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1181501418, }, + ["JewelMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(5-15)% increased Melee Damage", statOrder = { 1124 }, level = 1, group = "MeleeDamage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 1002362373, }, + ["JewelMinionAccuracy"] = { type = "Prefix", affix = "Training", "(10-20)% increased Minion Accuracy Rating", statOrder = { 8446 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, tradeHash = 1718147982, }, + ["JewelMinionArea"] = { type = "Prefix", affix = "Companion", "Minions have (5-8)% increased Area of Effect", statOrder = { 2649 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion" }, tradeHash = 3811191316, }, + ["JewelMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (2-4)% increased Attack and Cast Speed", statOrder = { 8453 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHash = 3091578504, }, + ["JewelMinionChaosResistance"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(7-13)% to Chaos Resistance", statOrder = { 2559 }, level = 1, group = "MinionChaosResistance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance", "minion" }, tradeHash = 3837707023, }, + ["JewelMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (10-20)% increased Critical Hit Chance", statOrder = { 8476 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, tradeHash = 491450213, }, + ["JewelMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (15-25)% increased Critical Damage Bonus", statOrder = { 8478 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "minion", "critical" }, tradeHash = 1854213750, }, + ["JewelMinionDamage"] = { type = "Prefix", affix = "Authoritative", "Minions deal (5-15)% increased Damage", statOrder = { 1646 }, level = 1, group = "MinionDamage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, tradeHash = 1589917703, }, + ["JewelMinionLife"] = { type = "Prefix", affix = "Fortuitous", "Minions have (5-15)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, }, + ["JewelMinionPhysicalDamageReduction"] = { type = "Suffix", affix = "of Confidence", "Minions have (6-16)% additional Physical Damage Reduction", statOrder = { 1946 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical", "minion" }, tradeHash = 3119612865, }, + ["JewelMinionResistances"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(5-10)% to all Elemental Resistances", statOrder = { 2558 }, level = 1, group = "MinionElementalResistance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHash = 1423639565, }, + ["JewelMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (5-15)% faster", statOrder = { 8529 }, level = 1, group = "MinionReviveSpeed", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHash = 2639966148, }, + ["JewelMovementSpeed"] = { type = "Suffix", affix = "of Speed", "(1-2)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 2250533757, }, + ["JewelOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (15-25)% increased Duration", statOrder = { 8776 }, level = 1, group = "OfferingDuration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2957407601, }, + ["JewelOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (15-25)% increased Maximum Life", statOrder = { 8777 }, level = 1, group = "OfferingLife", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3787460122, }, + ["JewelPhysicalDamage"] = { type = "Prefix", affix = "Sharpened", "(5-15)% increased Global Physical Damage", statOrder = { 1122 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1310194496, }, + ["JewelPiercingProjectiles"] = { type = "Suffix", affix = "of Piercing", "(10-20)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 1, group = "ChanceToPierce", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2321178454, }, + ["JewelPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(10-20)% increased Pin Buildup", statOrder = { 6750 }, level = 1, group = "PinBuildup", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3473929743, }, + ["JewelPoisonChance"] = { type = "Suffix", affix = "of Poisoning", "(5-10)% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 795138349, }, + ["JewelPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(5-15)% increased Magnitude of Poison you inflict", statOrder = { 8925 }, level = 1, group = "PoisonEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHash = 2487305362, }, + ["JewelPoisonDuration"] = { type = "Suffix", affix = "of Infection", "(5-10)% increased Poison Duration", statOrder = { 2786 }, level = 1, group = "PoisonDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2011656677, }, + ["JewelProjectileDamage"] = { type = "Prefix", affix = "Archer's", "(5-15)% increased Projectile Damage", statOrder = { 1663 }, level = 1, group = "ProjectileDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1839076647, }, + ["JewelProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(4-8)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "ProjectileSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 3759663284, }, + ["JewelQuarterstaffDamage"] = { type = "Prefix", affix = "Monk's", "(6-16)% increased Damage with Quarterstaves", statOrder = { 1175 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 4045894391, }, + ["JewelQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(10-20)% increased Freeze Buildup with Quarterstaves", statOrder = { 9020 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1697447343, }, + ["JewelQuarterstaffSpeed"] = { type = "Suffix", affix = "of Sequencing", "(2-4)% increased Attack Speed with Quarterstaves", statOrder = { 1256 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3283482523, }, + ["JewelQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(4-6)% increased bonuses gained from Equipped Quiver", statOrder = { 9028 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1200678966, }, + ["JewelRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6431 }, level = 1, group = "RageOnHit", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2709367754, }, + ["JewelRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-3) Rage when Hit by an Enemy", statOrder = { 6433 }, level = 1, group = "GainRageWhenHit", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3292710273, }, + ["JewelShieldDefences"] = { type = "Prefix", affix = "Shielding", "(18-32)% increased Defences from Equipped Shield", statOrder = { 9241 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences" }, tradeHash = 145497481, }, + ["JewelShockChance"] = { type = "Suffix", affix = "of Shocking", "(10-20)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 293638271, }, + ["JewelShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(15-25)% increased Shock Duration", statOrder = { 1540 }, level = 1, group = "ShockDuration", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3668351662, }, + ["JewelShockEffect"] = { type = "Prefix", affix = "Jolting", "(10-15)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "ShockEffect", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2527686725, }, + ["JewelSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 924253255, }, + ["JewelSpearAttackSpeed"] = { type = "Suffix", affix = "of Spearing", "(2-4)% increased Attack Speed with Spears", statOrder = { 1263 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 1165163804, }, + ["JewelSpearCriticalDamage"] = { type = "Suffix", affix = "of Hunting", "(10-20)% increased Critical Damage Bonus with Spears", statOrder = { 1328 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 2456523742, }, + ["JewelSpearDamage"] = { type = "Prefix", affix = "Spearheaded", "(6-16)% increased Damage with Spears", statOrder = { 1204 }, level = 1, group = "SpearDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 2696027455, }, + ["JewelSpellCriticalChance"] = { type = "Suffix", affix = "of Annihilating", "(5-15)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, }, + ["JewelSpellDamage"] = { type = "Prefix", affix = "Mystic", "(5-15)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, + ["JewelStunBuildup"] = { type = "Suffix", affix = "of Stunning", "(10-20)% increased Stun Buildup", statOrder = { 984 }, level = 1, group = "StunDamageIncrease", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 239367161, }, + ["JewelStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(6-16)% increased Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 680068163, }, + ["JewelStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 9531 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 416040624, }, + ["JewelAilmentThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Inuring", "Gain additional Ailment Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 4146 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHash = 3398301358, }, + ["JewelStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(15-25)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 9533 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1405298142, }, + ["JewelBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(5-15)% increased Magnitude of Bleeding you inflict", statOrder = { 4662 }, level = 1, group = "BleedDotMultiplier", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHash = 3166958180, }, + ["JewelSwordDamage"] = { type = "Prefix", affix = "Vicious", "(6-16)% increased Damage with Swords", statOrder = { 1196 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHash = 83050999, }, + ["JewelSwordSpeed"] = { type = "Suffix", affix = "of Fencing", "(2-4)% increased Attack Speed with Swords", statOrder = { 1261 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHash = 3293699237, }, + ["JewelThorns"] = { type = "Prefix", affix = "Retaliating", "(10-20)% increased Thorns damage", statOrder = { 9646 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1315743832, }, + ["JewelTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(10-18)% increased Totem Damage", statOrder = { 1089 }, level = 1, group = "TotemDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 3851254963, }, + ["JewelTotemLife"] = { type = "Prefix", affix = "Carved", "(10-20)% increased Totem Life", statOrder = { 1459 }, level = 1, group = "IncreasedTotemLife", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 686254215, }, + ["JewelTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ancestry", "(10-20)% increased Totem Placement speed", statOrder = { 2250 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 3374165039, }, + ["JewelTrapDamage"] = { type = "Prefix", affix = "Trapping", "(6-16)% increased Trap Damage", statOrder = { 854 }, level = 1, group = "TrapDamage", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, tradeHash = 2941585404, }, + ["JewelTrapThrowSpeed"] = { type = "Suffix", affix = "of Preparation", "(4-8)% increased Trap Throwing Speed", statOrder = { 1597 }, level = 1, group = "TrapThrowSpeed", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "speed" }, tradeHash = 118398748, }, + ["JewelTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (10-18)% increased Spell Damage", statOrder = { 9712 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 3067892458, }, + ["JewelUnarmedDamage"] = { type = "Prefix", affix = "Punching", "(6-16)% increased Damage with Unarmed Attacks", statOrder = { 3153 }, level = 1, group = "UnarmedDamage", weightKey = { "dexjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHash = 1870736574, }, + ["JewelWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(5-15)% increased Warcry Buff Effect", statOrder = { 9883 }, level = 1, group = "WarcryEffect", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 3037553757, }, + ["JewelWarcryCooldown"] = { type = "Suffix", affix = "of Rallying", "(5-15)% increased Warcry Cooldown Recovery Rate", statOrder = { 2929 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4159248054, }, + ["JewelWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(10-20)% increased Damage with Warcries", statOrder = { 9886 }, level = 1, group = "WarcryDamage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1594812856, }, + ["JewelWarcrySpeed"] = { type = "Suffix", affix = "of Lungs", "(10-20)% increased Warcry Speed", statOrder = { 2884 }, level = 1, group = "WarcrySpeed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 1316278494, }, + ["JewelWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(15-25)% increased Weapon Swap Speed", statOrder = { 9897 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 3233599707, }, + ["JewelWitheredEffect"] = { type = "Prefix", affix = "Withering", "(5-10)% increased Withered Magnitude", statOrder = { 9915 }, level = 1, group = "WitheredEffect", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHash = 3973629633, }, + ["JewelUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(2-4)% increased Unarmed Attack Speed", statOrder = { 9768 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHash = 662579422, }, + ["JewelProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 8973 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 3596695232, }, + ["JewelMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8364 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 3028809864, }, + ["JewelParryDamage"] = { type = "Prefix", affix = "Parrying", "(15-25)% increased Parry Damage", statOrder = { 8799 }, level = 1, group = "ParryDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1569159338, }, + ["JewelParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(10-15)% increased Parried Debuff Duration", statOrder = { 8808 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHash = 3401186585, }, + ["JewelStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(15-25)% increased Stun Threshold while Parrying", statOrder = { 8809 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1911237468, }, + ["JewelVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "(2-3)% chance to gain Volatility on Kill", statOrder = { 9860 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHash = 3749502527, }, + ["JewelCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (10-20)% increased Damage", statOrder = { 5339 }, level = 1, group = "CompanionDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, tradeHash = 234296660, }, + ["JewelCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (10-20)% increased maximum Life", statOrder = { 5342 }, level = 1, group = "CompanionLife", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 1805182458, }, + ["JewelHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(10-20)% increased Hazard Damage", statOrder = { 6536 }, level = 1, group = "HazardDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1697951953, }, + ["JewelIncisionChance"] = { type = "Prefix", affix = "Incise", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5175 }, level = 1, group = "IncisionChance", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "ailment" }, tradeHash = 300723956, }, + ["JewelBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(15-20)% increased Glory generation for Banner Skills", statOrder = { 6474 }, level = 1, group = "BannerValourGained", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1869147066, }, + ["JewelBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (10-20)% increased Area of Effect", statOrder = { 4495 }, level = 1, group = "BannerArea", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 429143663, }, + ["JewelBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (15-25)% increased Duration", statOrder = { 4497 }, level = 1, group = "BannerDuration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2720982137, }, + ["JewelPresenceRadius"] = { type = "Prefix", affix = "Iconic", "(15-25)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 101878827, }, + ["JewelRadiusMediumSize"] = { type = "Prefix", affix = "Greater", "Upgrades Radius to Medium", statOrder = { 7285 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1817879664, }, + ["JewelRadiusLargeSize"] = { type = "Prefix", affix = "Grand", "Upgrades Radius to Large", statOrder = { 7285 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1817879664, }, + ["JewelRadiusSmallNodeEffect"] = { type = "Suffix", affix = "of Potency", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7308 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1060572482, }, + ["JewelRadiusNotableEffect"] = { type = "Suffix", affix = "of Influence", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7308 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 1060572482, }, + ["JewelRadiusNotableEffectNew"] = { type = "Suffix", affix = "of Supremacy", "(15-25)% increased Effect of Notable Passive Skills in Radius", statOrder = { 7304 }, level = 1, group = "JewelRadiusNotableEffect", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4234573345, }, + ["JewelRadiusAccuracy"] = { type = "Prefix", affix = "Accurate", "(1-2)% increased Accuracy Rating", statOrder = { 1268 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHash = 533892981, }, + ["JewelRadiusAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(3-7)% increased chance to inflict Ailments", statOrder = { 4136 }, level = 1, group = "AilmentChance", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHash = 412709880, }, + ["JewelRadiusAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(3-7)% increased Magnitude of Ailments you inflict", statOrder = { 4140 }, level = 1, group = "AilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHash = 1321104829, }, + ["JewelRadiusAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(2-3)% increased Elemental Ailment Threshold", statOrder = { 4147 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 3409275777, }, + ["JewelRadiusAreaofEffect"] = { type = "Prefix", affix = "Blasting", "(2-3)% increased Area of Effect", statOrder = { 1557 }, level = 1, group = "AreaOfEffect", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3391917254, }, + ["JewelRadiusArmour"] = { type = "Prefix", affix = "Armoured", "(2-3)% increased Armour", statOrder = { 864 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, nodeType = 1, tradeHash = 3858398337, }, + ["JewelRadiusArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (1-2)% increased Armour", statOrder = { 4283 }, level = 1, group = "ArmourBreak", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 4089835882, }, + ["JewelRadiusArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(5-10)% increased Armour Break Duration", statOrder = { 4285 }, level = 1, group = "ArmourBreakDuration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 504915064, }, + ["JewelRadiusAttackCriticalChance"] = { type = "Suffix", affix = "of Deadliness", "(3-7)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHash = 3865605585, }, + ["JewelRadiusAttackCriticalDamage"] = { type = "Suffix", affix = "of Demolishing", "(5-10)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHash = 1352561456, }, + ["JewelRadiusAttackDamage"] = { type = "Prefix", affix = "Combat", "(1-2)% increased Attack Damage", statOrder = { 1093 }, level = 1, group = "AttackDamage", weightKey = { "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 1426522529, }, + ["JewelRadiusAttackSpeed"] = { type = "Suffix", affix = "of Alacrity", "(1-2)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 2822644689, }, + ["JewelRadiusAuraEffect"] = { type = "Prefix", affix = "Commanding", "Aura Skills have (1-3)% increased Magnitudes", statOrder = { 2472 }, level = 1, group = "AuraEffectForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "aura" }, nodeType = 2, tradeHash = 3243034867, }, + ["JewelRadiusAxeDamage"] = { type = "Prefix", affix = "Sinister", "(2-3)% increased Damage with Axes", statOrder = { 1170 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 2508922991, }, + ["JewelRadiusAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(1-2)% increased Attack Speed with Axes", statOrder = { 1255 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 2433102767, }, + ["JewelRadiusBleedingChance"] = { type = "Prefix", affix = "Bleeding", "1% chance to inflict Bleeding on Hit", statOrder = { 4532 }, level = 1, group = "BaseChanceToBleed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 944643028, }, + ["JewelRadiusBleedingDuration"] = { type = "Suffix", affix = "of Haemophilia", "(3-7)% increased Bleeding Duration", statOrder = { 4522 }, level = 1, group = "BleedDuration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, nodeType = 2, tradeHash = 1505023559, }, + ["JewelRadiusBlindEffect"] = { type = "Prefix", affix = "Stifling", "(3-5)% increased Blind Effect", statOrder = { 4781 }, level = 1, group = "BlindEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2912416697, }, + ["JewelRadiusBlindonHit"] = { type = "Suffix", affix = "of Blinding", "1% chance to Blind Enemies on Hit with Attacks", statOrder = { 4453 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHash = 2610562860, }, + ["JewelRadiusBlock"] = { type = "Prefix", affix = "Protecting", "(1-3)% increased Block chance", statOrder = { 1064 }, level = 1, group = "IncreasedBlockChance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHash = 3821543413, }, + ["JewelRadiusDamageVsRareOrUnique"] = { type = "Prefix", affix = "Slaying", "(2-3)% increased Damage with Hits against Rare and Unique Enemies", statOrder = { 2821 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 147764878, }, + ["JewelRadiusBowAccuracyRating"] = { type = "Prefix", affix = "Precise", "(1-2)% increased Accuracy Rating with Bows", statOrder = { 1277 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHash = 1285594161, }, + ["JewelRadiusBowDamage"] = { type = "Prefix", affix = "Perforating", "(2-3)% increased Damage with Bows", statOrder = { 1190 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 945774314, }, + ["JewelRadiusBowSpeed"] = { type = "Suffix", affix = "of Nocking", "(1-2)% increased Attack Speed with Bows", statOrder = { 1260 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 3641543553, }, + ["JewelRadiusCastSpeed"] = { type = "Suffix", affix = "of Enchanting", "(1-2)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, nodeType = 2, tradeHash = 1022759479, }, + ["JewelRadiusChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (1-2)% chance to Chain an additional time from terrain", statOrder = { 8970 }, level = 1, group = "ChainFromTerrain", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2334956771, }, + ["JewelRadiusCharmDuration"] = { type = "Suffix", affix = "of the Woodland", "(1-2)% increased Charm Effect Duration", statOrder = { 878 }, level = 1, group = "CharmDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 3088348485, }, + ["JewelRadiusCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(3-7)% increased Charm Charges gained", statOrder = { 5227 }, level = 1, group = "CharmChargesGained", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2320654813, }, + ["JewelRadiusCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(2-3)% increased Damage while you have an active Charm", statOrder = { 5627 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 3752589831, }, + ["JewelRadiusChaosDamage"] = { type = "Prefix", affix = "Chaotic", "(1-2)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, nodeType = 1, tradeHash = 1309799717, }, + ["JewelRadiusChillDuration"] = { type = "Suffix", affix = "of Frost", "(6-12)% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IncreasedChillDuration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHash = 61644361, }, + ["JewelRadiusColdDamage"] = { type = "Prefix", affix = "Chilling", "(1-2)% increased Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamagePercentage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 1, tradeHash = 2442527254, }, + ["JewelRadiusColdPenetration"] = { type = "Prefix", affix = "Numbing", "Damage Penetrates (1-2)% Cold Resistance", statOrder = { 2614 }, level = 1, group = "ColdResistancePenetration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 1, tradeHash = 1896066427, }, + ["JewelRadiusCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(1-3)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2149603090, }, + ["JewelRadiusCorpses"] = { type = "Prefix", affix = "Necromantic", "(2-3)% increased Damage if you have Consumed a Corpse Recently", statOrder = { 3802 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 1892122971, }, + ["JewelRadiusCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(5-10)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5424 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, nodeType = 2, tradeHash = 4092130601, }, + ["JewelRadiusCriticalChance"] = { type = "Suffix", affix = "of Annihilation", "(3-7)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, nodeType = 2, tradeHash = 2077117738, }, + ["JewelRadiusCriticalDamage"] = { type = "Suffix", affix = "of Potency", "(5-10)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, nodeType = 2, tradeHash = 2359002191, }, + ["JewelRadiusSpellCriticalDamage"] = { type = "Suffix", affix = "of Unmaking", "(5-10)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster", "critical" }, nodeType = 2, tradeHash = 2466785537, }, + ["JewelRadiusCrossbowDamage"] = { type = "Prefix", affix = "Bolting", "(2-3)% increased Damage with Crossbows", statOrder = { 3849 }, level = 1, group = "CrossbowDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 517664839, }, + ["JewelRadiusCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(5-7)% increased Crossbow Reload Speed", statOrder = { 9149 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 3856744003, }, + ["JewelRadiusCrossbowSpeed"] = { type = "Suffix", affix = "of Rapidity", "(1-2)% increased Attack Speed with Crossbows", statOrder = { 3853 }, level = 1, group = "CrossbowSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 715957346, }, + ["JewelRadiusCurseArea"] = { type = "Prefix", affix = "Expanding", "(3-6)% increased Area of Effect of Curses", statOrder = { 1875 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHash = 3859848445, }, + ["JewelRadiusCurseDuration"] = { type = "Suffix", affix = "of Continuation", "(2-4)% increased Curse Duration", statOrder = { 1466 }, level = 1, group = "BaseCurseDuration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "curse" }, nodeType = 1, tradeHash = 1087108135, }, + ["JewelRadiusCurseEffect"] = { type = "Prefix", affix = "Hexing", "1% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHash = 2770044702, }, + ["JewelRadiusDaggerCriticalChance"] = { type = "Suffix", affix = "of Backstabbing", "(3-7)% increased Critical Hit Chance with Daggers", statOrder = { 1299 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHash = 4260437915, }, + ["JewelRadiusDaggerDamage"] = { type = "Prefix", affix = "Lethal", "(2-3)% increased Damage with Daggers", statOrder = { 1182 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 1441232665, }, + ["JewelRadiusDaggerSpeed"] = { type = "Suffix", affix = "of Slicing", "(1-2)% increased Attack Speed with Daggers", statOrder = { 1258 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 2172391939, }, + ["JewelRadiusDamagefromMana"] = { type = "Suffix", affix = "of Mind", "1% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, nodeType = 2, tradeHash = 2709646369, }, + ["JewelRadiusDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(2-4)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5553 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 1834658952, }, + ["JewelRadiusDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(3-5)% increased Duration of Damaging Ailments on Enemies", statOrder = { 5668 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHash = 2272980012, }, + ["JewelRadiusDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "1% chance to Daze on Hit", statOrder = { 4530 }, level = 1, group = "DazeBuildup", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 4258000627, }, + ["JewelRadiusDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (3-5)% faster", statOrder = { 5703 }, level = 1, group = "DebuffTimePassed", weightKey = { "int_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2256120736, }, + ["JewelRadiusElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(3-5)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 6818 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "ailment" }, nodeType = 2, tradeHash = 1323216174, }, + ["JewelRadiusElementalDamage"] = { type = "Prefix", affix = "Prismatic", "(1-2)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { "str_radius_jewel", "int_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, nodeType = 1, tradeHash = 3222402650, }, + ["JewelRadiusEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (2-3)% increased Damage", statOrder = { 5912 }, level = 1, group = "ExertedAttackDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 3395186672, }, + ["JewelRadiusEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (2-4)% increased Energy", statOrder = { 5987 }, level = 1, group = "EnergyGeneration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2849546516, }, + ["JewelRadiusEnergyShield"] = { type = "Prefix", affix = "Shimmering", "(2-3)% increased maximum Energy Shield", statOrder = { 868 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, nodeType = 1, tradeHash = 3665922113, }, + ["JewelRadiusEnergyShieldDelay"] = { type = "Prefix", affix = "Serene", "(5-7)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, nodeType = 2, tradeHash = 3394832998, }, + ["JewelRadiusEnergyShieldRecharge"] = { type = "Prefix", affix = "Fevered", "(2-3)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, nodeType = 1, tradeHash = 1552666713, }, + ["JewelRadiusEvasion"] = { type = "Prefix", affix = "Evasive", "(2-3)% increased Evasion Rating", statOrder = { 866 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, nodeType = 1, tradeHash = 1994296038, }, + ["JewelRadiusFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (2-3)% faster", statOrder = { 5671 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHash = 3173882956, }, + ["JewelRadiusFireDamage"] = { type = "Prefix", affix = "Flaming", "(1-2)% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamagePercentage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 1, tradeHash = 139889694, }, + ["JewelRadiusFirePenetration"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (1-2)% Fire Resistance", statOrder = { 2613 }, level = 1, group = "FireResistancePenetration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 1, tradeHash = 1432756708, }, + ["JewelRadiusFlailCriticalChance"] = { type = "Suffix", affix = "of Thrashing", "(3-7)% increased Critical Hit Chance with Flails", statOrder = { 3843 }, level = 1, group = "FlailCriticalChance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHash = 1441673288, }, + ["JewelRadiusFlailDamage"] = { type = "Prefix", affix = "Flailing", "(1-2)% increased Damage with Flails", statOrder = { 3838 }, level = 1, group = "FlailDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 2482383489, }, + ["JewelRadiusFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(3-5)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHash = 2066964205, }, + ["JewelRadiusFlaskDuration"] = { type = "Suffix", affix = "of Prolonging", "(1-2)% increased Flask Effect Duration", statOrder = { 879 }, level = 1, group = "FlaskDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 1, tradeHash = 1773308808, }, + ["JewelRadiusFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(15-25)% increased Energy Shield from Equipped Focus", statOrder = { 6002 }, level = 1, group = "FocusEnergyShield", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, nodeType = 2, tradeHash = 3419203492, }, + ["JewelRadiusForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (5-7)% chance for an additional Projectile when Forking", statOrder = { 5139 }, level = 1, group = "ForkingProjectiles", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 4258720395, }, + ["JewelRadiusFreezeAmount"] = { type = "Suffix", affix = "of Freezing", "(5-10)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1087531620, }, + ["JewelRadiusFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(2-4)% increased Freeze Threshold", statOrder = { 2879 }, level = 1, group = "FreezeThreshold", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 830345042, }, + ["JewelRadiusHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (2-4)% increased Damage", statOrder = { 5632 }, level = 1, group = "HeraldDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 3065378291, }, + ["JewelRadiusIgniteChance"] = { type = "Suffix", affix = "of Ignition", "(2-3)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 394473632, }, + ["JewelRadiusIgniteEffect"] = { type = "Prefix", affix = "Burning", "(3-7)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 253641217, }, + ["JewelRadiusIncreasedDuration"] = { type = "Suffix", affix = "of Lengthening", "(3-5)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3113764475, }, + ["JewelRadiusKnockback"] = { type = "Suffix", affix = "of Fending", "(3-7)% increased Knockback Distance", statOrder = { 1669 }, level = 1, group = "KnockbackDistance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2976476845, }, + ["JewelRadiusLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 1, group = "LifeCost", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHash = 3386297724, }, + ["JewelRadiusLifeFlaskRecovery"] = { type = "Suffix", affix = "of Recovery", "(2-3)% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, nodeType = 1, tradeHash = 980177976, }, + ["JewelRadiusLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(5-10)% increased Life Flask Charges gained", statOrder = { 6970 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 942519401, }, + ["JewelRadiusLifeLeech"] = { type = "Suffix", affix = "of Frenzy", "(2-3)% increased amount of Life Leeched", statOrder = { 1820 }, level = 1, group = "LifeLeechAmount", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 3666476747, }, + ["JewelRadiusLifeonKill"] = { type = "Suffix", affix = "of Success", "Recover 1% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHash = 2726713579, }, + ["JewelRadiusLifeRecoup"] = { type = "Suffix", affix = "of Infusion", "1% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHash = 3669820740, }, + ["JewelRadiusLifeRegeneration"] = { type = "Suffix", affix = "of Regeneration", "(3-5)% increased Life Regeneration rate", statOrder = { 969 }, level = 1, group = "LifeRegenerationRate", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHash = 1185341308, }, + ["JewelRadiusLightningDamage"] = { type = "Prefix", affix = "Humming", "(1-2)% increased Lightning Damage", statOrder = { 857 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 1, tradeHash = 2768899959, }, + ["JewelRadiusLightningPenetration"] = { type = "Prefix", affix = "Surging", "Damage Penetrates (1-2)% Lightning Resistance", statOrder = { 2615 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 1, tradeHash = 868556494, }, + ["JewelRadiusMaceDamage"] = { type = "Prefix", affix = "Beating", "(1-2)% increased Damage with Maces", statOrder = { 1186 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 1852184471, }, + ["JewelRadiusMaceStun"] = { type = "Suffix", affix = "of Thumping", "(6-12)% increased Stun Buildup with Maces", statOrder = { 7459 }, level = 1, group = "MaceStun", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 2, tradeHash = 2392824305, }, + ["JewelRadiusManaFlaskRecovery"] = { type = "Suffix", affix = "of Quenching", "(1-2)% increased Mana Recovery from Flasks", statOrder = { 1720 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, nodeType = 1, tradeHash = 3774951878, }, + ["JewelRadiusManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(5-10)% increased Mana Flask Charges gained", statOrder = { 7491 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3171212276, }, + ["JewelRadiusManaLeech"] = { type = "Suffix", affix = "of Thirsting", "(1-2)% increased amount of Mana Leeched", statOrder = { 1822 }, level = 1, group = "ManaLeechAmount", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHash = 3700202631, }, + ["JewelRadiusManaonKill"] = { type = "Suffix", affix = "of Osmosis", "Recover 1% of maximum Mana on Kill", statOrder = { 1443 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 2, tradeHash = 525523040, }, + ["JewelRadiusManaRegeneration"] = { type = "Suffix", affix = "of Energy", "(1-2)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHash = 3256879910, }, + ["JewelRadiusMarkCastSpeed"] = { type = "Suffix", affix = "of Targeting", "Mark Skills have (2-3)% increased Use Speed", statOrder = { 1871 }, level = 1, group = "MarkCastSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed", "curse" }, nodeType = 1, tradeHash = 2202308025, }, + ["JewelRadiusMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (3-4)% increased Skill Effect Duration", statOrder = { 8276 }, level = 1, group = "MarkDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 4162678661, }, + ["JewelRadiusMarkEffect"] = { type = "Prefix", affix = "Marking", "(2-3)% increased Effect of your Mark Skills", statOrder = { 2268 }, level = 1, group = "MarkEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHash = 179541474, }, + ["JewelRadiusMaximumRage"] = { type = "Prefix", affix = "Angry", "+1 to Maximum Rage", statOrder = { 9032 }, level = 1, group = "MaximumRage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1846980580, }, + ["JewelRadiusMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(1-2)% increased Melee Damage", statOrder = { 1124 }, level = 1, group = "MeleeDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 1337740333, }, + ["JewelRadiusMinionAccuracy"] = { type = "Prefix", affix = "Training", "(2-3)% increased Minion Accuracy Rating", statOrder = { 8446 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, nodeType = 1, tradeHash = 793875384, }, + ["JewelRadiusMinionArea"] = { type = "Prefix", affix = "Companion", "Minions have (3-5)% increased Area of Effect", statOrder = { 2649 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion" }, nodeType = 2, tradeHash = 2534359663, }, + ["JewelRadiusMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (1-2)% increased Attack and Cast Speed", statOrder = { 8453 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "caster", "speed", "minion" }, nodeType = 2, tradeHash = 3106718406, }, + ["JewelRadiusMinionChaosResistance"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(1-2)% to Chaos Resistance", statOrder = { 2559 }, level = 1, group = "MinionChaosResistance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance", "minion" }, nodeType = 1, tradeHash = 1756380435, }, + ["JewelRadiusMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (5-10)% increased Critical Hit Chance", statOrder = { 8476 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, nodeType = 2, tradeHash = 3628935286, }, + ["JewelRadiusMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (6-12)% increased Critical Damage Bonus", statOrder = { 8478 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "minion", "critical" }, nodeType = 2, tradeHash = 593241812, }, + ["JewelRadiusMinionDamage"] = { type = "Prefix", affix = "Authoritative", "Minions deal (1-2)% increased Damage", statOrder = { 1646 }, level = 1, group = "MinionDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, nodeType = 1, tradeHash = 2954360902, }, + ["JewelRadiusMinionLife"] = { type = "Prefix", affix = "Fortuitous", "Minions have (1-2)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHash = 378796798, }, + ["JewelRadiusMinionPhysicalDamageReduction"] = { type = "Suffix", affix = "of Confidence", "Minions have (1-2)% additional Physical Damage Reduction", statOrder = { 1946 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical", "minion" }, nodeType = 1, tradeHash = 30438393, }, + ["JewelRadiusMinionResistances"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(1-2)% to all Elemental Resistances", statOrder = { 2558 }, level = 1, group = "MinionElementalResistance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance", "minion" }, nodeType = 1, tradeHash = 3225608889, }, + ["JewelRadiusMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (3-7)% faster", statOrder = { 8529 }, level = 1, group = "MinionReviveSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "minion" }, nodeType = 2, tradeHash = 50413020, }, + ["JewelRadiusMovementSpeed"] = { type = "Suffix", affix = "of Speed", "1% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHash = 844449513, }, + ["JewelRadiusOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (6-12)% increased Duration", statOrder = { 8776 }, level = 1, group = "OfferingDuration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2374711847, }, + ["JewelRadiusOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (2-3)% increased Maximum Life", statOrder = { 8777 }, level = 1, group = "OfferingLife", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 2107703111, }, + ["JewelRadiusPhysicalDamage"] = { type = "Prefix", affix = "Sharpened", "(1-2)% increased Global Physical Damage", statOrder = { 1122 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, nodeType = 1, tradeHash = 1417267954, }, + ["JewelRadiusPiercingProjectiles"] = { type = "Suffix", affix = "of Piercing", "(5-10)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 1, group = "ChanceToPierce", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1800303440, }, + ["JewelRadiusPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(5-10)% increased Pin Buildup", statOrder = { 6750 }, level = 1, group = "PinBuildup", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1944020877, }, + ["JewelRadiusPoisonChance"] = { type = "Suffix", affix = "of Poisoning", "1% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 2840989393, }, + ["JewelRadiusPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(3-7)% increased Magnitude of Poison you inflict", statOrder = { 8925 }, level = 1, group = "PoisonEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHash = 462424929, }, + ["JewelRadiusPoisonDuration"] = { type = "Suffix", affix = "of Infection", "(3-7)% increased Poison Duration", statOrder = { 2786 }, level = 1, group = "PoisonDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, nodeType = 2, tradeHash = 221701169, }, + ["JewelRadiusProjectileDamage"] = { type = "Prefix", affix = "Archer's", "(1-2)% increased Projectile Damage", statOrder = { 1663 }, level = 1, group = "ProjectileDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 455816363, }, + ["JewelRadiusProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(2-3)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "ProjectileSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHash = 1777421941, }, + ["JewelRadiusQuarterstaffDamage"] = { type = "Prefix", affix = "Monk's", "(1-2)% increased Damage with Quarterstaves", statOrder = { 1175 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 821948283, }, + ["JewelRadiusQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(5-10)% increased Freeze Buildup with Quarterstaves", statOrder = { 9020 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 127081978, }, + ["JewelRadiusQuarterstaffSpeed"] = { type = "Suffix", affix = "of Sequencing", "(1-2)% increased Attack Speed with Quarterstaves", statOrder = { 1256 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 111835965, }, + ["JewelRadiusQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(2-3)% increased bonuses gained from Equipped Quiver", statOrder = { 9028 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 4180952808, }, + ["JewelRadiusRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6431 }, level = 1, group = "RageOnHit", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2969557004, }, + ["JewelRadiusRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6433 }, level = 1, group = "GainRageWhenHit", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2131720304, }, + ["JewelRadiusShieldDefences"] = { type = "Prefix", affix = "Shielding", "(8-15)% increased Defences from Equipped Shield", statOrder = { 9241 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences" }, nodeType = 2, tradeHash = 713216632, }, + ["JewelRadiusShockChance"] = { type = "Suffix", affix = "of Shocking", "(2-3)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 1039268420, }, + ["JewelRadiusShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(2-3)% increased Shock Duration", statOrder = { 1540 }, level = 1, group = "ShockDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 1, tradeHash = 3513818125, }, + ["JewelRadiusShockEffect"] = { type = "Prefix", affix = "Jolting", "(5-7)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "ShockEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 2, tradeHash = 1166140625, }, + ["JewelRadiusSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(2-5)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2580617872, }, + ["JewelRadiusSpearAttackSpeed"] = { type = "Suffix", affix = "of Spearing", "(1-2)% increased Attack Speed with Spears", statOrder = { 1263 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 1266413530, }, + ["JewelRadiusSpearCriticalDamage"] = { type = "Suffix", affix = "of Hunting", "(5-10)% increased Critical Damage Bonus with Spears", statOrder = { 1328 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHash = 138421180, }, + ["JewelRadiusSpearDamage"] = { type = "Prefix", affix = "Spearheaded", "(1-2)% increased Damage with Spears", statOrder = { 1204 }, level = 1, group = "SpearDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 2809428780, }, + ["JewelRadiusSpellCriticalChance"] = { type = "Suffix", affix = "of Annihilating", "(3-7)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, nodeType = 2, tradeHash = 2704905000, }, + ["JewelRadiusSpellDamage"] = { type = "Prefix", affix = "Mystic", "(1-2)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHash = 1137305356, }, + ["JewelRadiusStunBuildup"] = { type = "Suffix", affix = "of Stunning", "(5-10)% increased Stun Buildup", statOrder = { 984 }, level = 1, group = "StunDamageIncrease", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 4173554949, }, + ["JewelRadiusStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(1-2)% increased Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 484792219, }, + ["JewelRadiusStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (1-2)% of maximum Energy Shield", statOrder = { 9531 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 1653682082, }, + ["JewelRadiusAilmentThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Inuring", "Gain additional Ailment Threshold equal to (1-2)% of maximum Energy Shield", statOrder = { 4146 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHash = 693237939, }, + ["JewelRadiusStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(2-3)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 9533 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 654207792, }, + ["JewelRadiusBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(3-7)% increased Magnitude of Bleeding you inflict", statOrder = { 4662 }, level = 1, group = "BleedDotMultiplier", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, nodeType = 2, tradeHash = 391602279, }, + ["JewelRadiusSwordDamage"] = { type = "Prefix", affix = "Vicious", "(1-2)% increased Damage with Swords", statOrder = { 1196 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 1417549986, }, + ["JewelRadiusSwordSpeed"] = { type = "Suffix", affix = "of Fencing", "(1-2)% increased Attack Speed with Swords", statOrder = { 1261 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 3492019295, }, + ["JewelRadiusThorns"] = { type = "Prefix", affix = "Retaliating", "(2-3)% increased Thorns damage", statOrder = { 9646 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 1320662475, }, + ["JewelRadiusTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(2-3)% increased Totem Damage", statOrder = { 1089 }, level = 1, group = "TotemDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 2108821127, }, + ["JewelRadiusTotemLife"] = { type = "Prefix", affix = "Carved", "(2-3)% increased Totem Life", statOrder = { 1459 }, level = 1, group = "IncreasedTotemLife", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 1, tradeHash = 442393998, }, + ["JewelRadiusTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ancestry", "(2-3)% increased Totem Placement speed", statOrder = { 2250 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHash = 1145481685, }, + ["JewelRadiusTrapDamage"] = { type = "Prefix", affix = "Trapping", "(1-2)% increased Trap Damage", statOrder = { 854 }, level = 1, group = "TrapDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 836472423, }, + ["JewelRadiusTrapThrowSpeed"] = { type = "Suffix", affix = "of Preparation", "(2-4)% increased Trap Throwing Speed", statOrder = { 1597 }, level = 1, group = "TrapThrowSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "speed" }, nodeType = 2, tradeHash = 2391207117, }, + ["JewelRadiusTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (2-3)% increased Spell Damage", statOrder = { 9712 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHash = 473917671, }, + ["JewelRadiusUnarmedDamage"] = { type = "Prefix", affix = "Punching", "(1-2)% increased Damage with Unarmed Attacks", statOrder = { 3153 }, level = 1, group = "UnarmedDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 1970067060, }, + ["JewelRadiusWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(3-7)% increased Warcry Buff Effect", statOrder = { 9883 }, level = 1, group = "WarcryEffect", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, nodeType = 2, tradeHash = 2675129731, }, + ["JewelRadiusWarcryCooldown"] = { type = "Suffix", affix = "of Rallying", "(3-7)% increased Warcry Cooldown Recovery Rate", statOrder = { 2929 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2056107438, }, + ["JewelRadiusWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(2-3)% increased Damage with Warcries", statOrder = { 9886 }, level = 1, group = "WarcryDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 1160637284, }, + ["JewelRadiusWarcrySpeed"] = { type = "Suffix", affix = "of Lungs", "(2-3)% increased Warcry Speed", statOrder = { 2884 }, level = 1, group = "WarcrySpeed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHash = 1602294220, }, + ["JewelRadiusWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(2-4)% increased Weapon Swap Speed", statOrder = { 9897 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, nodeType = 1, tradeHash = 1129429646, }, + ["JewelRadiusWitheredEffect"] = { type = "Prefix", affix = "Withering", "(3-5)% increased Withered Magnitude", statOrder = { 9915 }, level = 1, group = "WitheredEffect", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, nodeType = 2, tradeHash = 3936121440, }, + ["JewelRadiusUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(1-2)% increased Unarmed Attack Speed", statOrder = { 9768 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 541647121, }, + ["JewelRadiusProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(2-3)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 8973 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 288364275, }, + ["JewelRadiusMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(2-3)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8364 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 2421151933, }, + ["JewelRadiusParryDamage"] = { type = "Prefix", affix = "Parrying", "(2-3)% increased Parry Damage", statOrder = { 8799 }, level = 1, group = "ParryDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 1007380041, }, + ["JewelRadiusParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(5-10)% increased Parried Debuff Duration", statOrder = { 8808 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHash = 1514844108, }, + ["JewelRadiusStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(8-12)% increased Stun Threshold while Parrying", statOrder = { 8809 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1495814176, }, + ["JewelRadiusVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "1% chance to gain Volatility on Kill", statOrder = { 9860 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, nodeType = 2, tradeHash = 4225700219, }, + ["JewelRadiusCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (2-3)% increased Damage", statOrder = { 5339 }, level = 1, group = "CompanionDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, nodeType = 1, tradeHash = 1494950893, }, + ["JewelRadiusCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (2-3)% increased maximum Life", statOrder = { 5342 }, level = 1, group = "CompanionLife", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHash = 2638756573, }, + ["JewelRadiusHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(2-3)% increased Hazard Damage", statOrder = { 6536 }, level = 1, group = "HazardDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 255840549, }, + ["JewelRadiusIncisionChance"] = { type = "Prefix", affix = "Incise", "(3-5)% chance for Attack Hits to apply Incision", statOrder = { 5175 }, level = 1, group = "IncisionChance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "ailment" }, nodeType = 1, tradeHash = 318092306, }, + ["JewelRadiusBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(8-12)% increased Glory generation for Banner Skills", statOrder = { 6474 }, level = 1, group = "BannerValourGained", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2907381231, }, + ["JewelRadiusBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (2-3)% increased Area of Effect", statOrder = { 4495 }, level = 1, group = "BannerArea", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 4142814612, }, + ["JewelRadiusBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (3-4)% increased Duration", statOrder = { 4497 }, level = 1, group = "BannerDuration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 2690740379, }, + ["JewelRadiusPresenceRadius"] = { type = "Prefix", affix = "Iconic", "(8-12)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 4032352472, }, + ["JewelRadiusShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(1-2)% increased Skill Speed while Shapeshifted", statOrder = { 9317 }, level = 1, group = "ShapeshiftSkillSpeedForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHash = 3579898587, }, + ["JewelRadiusShapeshiftDamage"] = { type = "Prefix", affix = "Bestial", "(1-2)% increased Damage while Shapeshifted", statOrder = { 5567 }, level = 1, group = "ShapeshiftDamageForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 266564538, }, + ["JewelRadiusPlantDamage"] = { type = "Prefix", affix = "Overgrown", "(1-2)% increased Damage with Plant Skills", statOrder = { 8914 }, level = 1, group = "PlantDamageForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 1590846356, }, + ["JewelShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(2-4)% increased Skill Speed while Shapeshifted", statOrder = { 9317 }, level = 1, group = "ShapeshiftSkillSpeedForJewel", weightKey = { "intjewel", "strjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, tradeHash = 918325986, }, + ["JewelShapeshiftDamage"] = { type = "Prefix", affix = "Bestial", "(5-15)% increased Damage while Shapeshifted", statOrder = { 5567 }, level = 1, group = "ShapeshiftDamageForJewel", weightKey = { "intjewel", "strjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHash = 2440073079, }, + ["JewelPlantDamage"] = { type = "Prefix", affix = "Overgrown", "(5-15)% increased Damage with Plant Skills", statOrder = { 8914 }, level = 1, group = "PlantDamageForJewel", weightKey = { "intjewel", "strjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "damage" }, tradeHash = 2518900926, }, } \ No newline at end of file diff --git a/src/Data/ModVeiled.lua b/src/Data/ModVeiled.lua index 95ca603e74..dc75b4347a 100644 --- a/src/Data/ModVeiled.lua +++ b/src/Data/ModVeiled.lua @@ -351,4 +351,353 @@ return { ["UniqueKulemakSpiritAndSpiritReservationEfficiency_1"] = { type = "Prefix", affix = "", "+(40-60) to Spirit", "(6-10)% increased Spirit Reservation Efficiency of Skills", statOrder = { 873, 4613 }, level = 1, group = "UniqueSpiritAndSpiritReservationEfficiency", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHashes = { [2704225257] = { "+(40-60) to Spirit" }, [53386210] = { "(6-10)% increased Spirit Reservation Efficiency of Skills" }, } }, ["UniqueKulemakElementalDamageEleAilmentDuration_1"] = { type = "Prefix", affix = "", "(10-20)% increased Duration of Elemental Ailments on Enemies", "(100-160)% increased Elemental Damage", statOrder = { 1544, 1651 }, level = 1, group = "UniqueElementalDamageAndDurationOfEleAilments", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "elemental" }, tradeHashes = { [2604619892] = { "(10-20)% increased Duration of Elemental Ailments on Enemies" }, [3141070085] = { "(100-160)% increased Elemental Damage" }, } }, ["AbyssModBootsUlamanSuffixLifeRegenMoving"] = { type = "Suffix", affix = "of Ulaman", "(40-50)% increased Life Regeneration Rate while moving", statOrder = { 7061 }, level = 65, group = "LifeRegenerationPlusPercentWhileMoving", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2116424886] = { "(40-50)% increased Life Regeneration Rate while moving" }, } }, + ["HistoricAbyssJewelAttributesGrantExtraTribute"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-5) to Tribute", statOrder = { 7247 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraTribute", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHash = 1119086588, }, + ["HistoricAbyssJewelAttributesGrantExtraStrength"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Strength", statOrder = { 7246 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraStrength", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHash = 3871530702, }, + ["HistoricAbyssJewelAttributesGrantExtraDexterity"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Dexterity", statOrder = { 7244 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraDexterity", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHash = 1938221597, }, + ["HistoricAbyssJewelAttributesGrantExtraIntelligence"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Intelligence", statOrder = { 7245 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraIntelligence", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHash = 3116427713, }, + ["HistoricAbyssJewelAttributesGrantExtraAllAttributes"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-3) to all Attributes", statOrder = { 7243 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraAllAttributes", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHash = 2552484522, }, + ["HistoricAbyssJewelSmallGrantEvasionRatingIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Evasion Rating", statOrder = { 7254 }, level = 1, group = "HistoricAbyssJewelSmallGrantEvasionRatingIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 468694293, }, + ["HistoricAbyssJewelSmallGrantArmourIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Armour", statOrder = { 7249 }, level = 1, group = "HistoricAbyssJewelSmallGrantArmourIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 970480050, }, + ["HistoricAbyssJewelSmallGrantEnergyShieldIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Energy Shield", statOrder = { 7253 }, level = 1, group = "HistoricAbyssJewelSmallGrantEnergyShieldIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 2780670304, }, + ["HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Mana Regeneration rate", statOrder = { 7256 }, level = 1, group = "HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 1818915622, }, + ["HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Life Regeneration rate", statOrder = { 7255 }, level = 1, group = "HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 4264952559, }, + ["HistoricAbyssJewelSmallGrantSpellDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Spell damage", statOrder = { 7259 }, level = 1, group = "HistoricAbyssJewelSmallGrantSpellDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 3038857426, }, + ["HistoricAbyssJewelSmallGrantAttackDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Attack damage", statOrder = { 7250 }, level = 1, group = "HistoricAbyssJewelSmallGrantAttackDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 8816597, }, + ["HistoricAbyssJewelSmallGrantElementalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Elemental Damage", statOrder = { 7252 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 4240116297, }, + ["HistoricAbyssJewelSmallGrantPhysicalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Physical damage", statOrder = { 7258 }, level = 1, group = "HistoricAbyssJewelSmallGrantPhysicalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 1829333149, }, + ["HistoricAbyssJewelSmallGrantChaosDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Chaos damage", statOrder = { 7251 }, level = 1, group = "HistoricAbyssJewelSmallGrantChaosDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 2601021356, }, + ["HistoricAbyssJewelSmallGrantMinionDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant Minions deal (3-5)% increased damage", statOrder = { 7257 }, level = 1, group = "HistoricAbyssJewelSmallGrantMinionDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 3343033032, }, + ["HistoricAbyssJewelSmallGrantStunThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Stun Threshold", statOrder = { 7260 }, level = 1, group = "HistoricAbyssJewelSmallGrantStunThresholdIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 2475870935, }, + ["HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Elemental Ailment Threshold", statOrder = { 7248 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 1283490138, }, + ["UniqueHeartPrefixDamageGainedAsFire"] = { affix = "", "Gain (9-15)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "fire" }, tradeHash = 3015669065, }, + ["UniqueHeartPrefixDamageGainedAsCold"] = { affix = "", "Gain (7-13)% of Damage as Extra Chaos Damage", statOrder = { 1602 }, level = 1, group = "DamageGainedAsChaos", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "chaos" }, tradeHash = 3398787959, }, + ["UniqueHeartPrefixDamageGainedAsLightning"] = { affix = "", "Gain (9-15)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsCold", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "cold" }, tradeHash = 2505884597, }, + ["UniqueHeartPrefixDamageGainedAsChaos"] = { affix = "", "Gain (9-15)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 1, group = "DamageGainedAsLightning", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "lightning" }, tradeHash = 3278136794, }, + ["UniqueHeartPrefixMinionReviveSpeed"] = { affix = "", "Minions Revive (5-10)% faster", statOrder = { 8529 }, level = 1, group = "MinionReviveSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "minion" }, tradeHash = 2639966148, }, + ["UniqueHeartPrefixIncreasedSkillSpeed"] = { affix = "", "(4-8)% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "speed" }, tradeHash = 970213192, }, + ["UniqueHeartPrefixManaCostEfficiency"] = { affix = "", "(8-16)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "ManaCostEfficiency", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHash = 4101445926, }, + ["UniqueHeartPrefixGlobalCooldownRecovery"] = { affix = "", "(10-18)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 1004011302, }, + ["UniqueHeartPrefixChanceToPierce"] = { affix = "", "(30-50)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 1, group = "ChanceToPierce", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 2321178454, }, + ["UniqueHeartPrefixSkillEffectDuration"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 3377888098, }, + ["UniqueHeartPrefixMinionLifeGainAsEnergyShield"] = { affix = "", "Minions gain (10-15)% of their maximum Life as Extra maximum Energy Shield", statOrder = { 8510 }, level = 1, group = "MinionLifeGainAsEnergyShield", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "heart_unique_jewel_prefix", "defences", "minion" }, tradeHash = 943702197, }, + ["UniqueHeartPrefixMinionLifeRegeneration"] = { affix = "", "Minions Regenerate (1-3)% of maximum Life per second", statOrder = { 2557 }, level = 1, group = "MinionLifeRegeneration", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life", "minion" }, tradeHash = 2479683456, }, + ["UniqueHeartPrefixDamageWhileInPresenceOfCompanion"] = { affix = "", "(15-25)% increased Damage while your Companion is in your Presence", statOrder = { 5566 }, level = 1, group = "DamageWhileInPresenceOfCompanion", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage" }, tradeHash = 693180608, }, + ["UniqueHeartPrefixAggravateBleedOnAttackHitChance"] = { affix = "", "(5-10)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4121 }, level = 1, group = "AggravateBleedOnAttackHitChance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 2705185939, }, + ["UniqueHeartPrefixLuckyLightningDamageChancePercent"] = { affix = "", "(15-25)% chance for Lightning Damage with Hits to be Lucky", statOrder = { 5029 }, level = 1, group = "LuckyLightningDamageChancePercent", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "elemental", "lightning" }, tradeHash = 2466011626, }, + ["UniqueHeartPrefixRecoverLifeOnKillingPoisonedEnemy"] = { affix = "", "Recover (2-4)% of maximum Life on Killing a Poisoned Enemy", statOrder = { 9115 }, level = 1, group = "RecoverLifeOnKillingPoisonedEnemy", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHash = 1781372024, }, + ["UniqueHeartPrefixPercentOfLeechIsInstant"] = { affix = "", "(8-15)% of Leech is Instant", statOrder = { 6962 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 3561837752, }, + ["UniqueHeartPrefixEvasionRatingFromBodyArmour"] = { affix = "", "(40-60)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4810 }, level = 1, group = "EvasionRatingFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "unveiled_mod", "heart_unique_jewel_prefix", "defences" }, tradeHash = 3509362078, }, + ["UniqueHeartPrefixBodyArmourFromBodyArmour"] = { affix = "", "(40-60)% increased Armour from Equipped Body Armour", statOrder = { 4809 }, level = 1, group = "BodyArmourFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "unveiled_mod", "heart_unique_jewel_prefix", "defences" }, tradeHash = 1015576579, }, + ["UniqueHeartPrefixMaximumEnergyShieldFromBodyArmour"] = { affix = "", "(40-60)% increased Energy Shield from Equipped Body Armour", statOrder = { 8313 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "heart_unique_jewel_prefix", "defences" }, tradeHash = 1195319608, }, + ["UniqueHeartPrefixTriggersRefundEnergySpent"] = { affix = "", "(6-12)% chance for Trigger skills to refund half of Energy Spent", statOrder = { 9709 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 599320227, }, + ["UniqueHeartPrefixManaRegenerationRateWhileMoving"] = { affix = "", "(20-30)% increased Mana Regeneration Rate while moving", statOrder = { 7532 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHash = 1327522346, }, + ["UniqueHeartPrefixCullingStrikeThreshold"] = { affix = "", "(15-25)% increased Culling Strike Threshold", statOrder = { 5520 }, level = 1, group = "CullingStrikeThreshold", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 3563080185, }, + ["UniqueHeartPrefixPhysicalDamagePreventedRecoup"] = { affix = "", "(5-10)% of Physical Damage prevented Recouped as Life", statOrder = { 8867 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "physical" }, tradeHash = 1374654984, }, + ["UniqueHeartPrefixMaximumElementalResistance"] = { affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 952 }, level = 1, group = "MaximumElementalResistance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "elemental", "resistance" }, tradeHash = 1978899297, }, + ["UniqueHeartPrefixIceCrystalMaximumLife"] = { affix = "", "(40-60)% increased Ice Crystal Life", statOrder = { 6792 }, level = 1, group = "IceCrystalMaximumLife", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 3274422940, }, + ["UniqueHeartPrefixRecoupSpeed"] = { affix = "", "(8-14)% increased speed of Recoup Effects", statOrder = { 9084 }, level = 1, group = "RecoupSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 2363593824, }, + ["UniqueHeartPrefixFlaskLifeRegenForXSeconds"] = { affix = "", "Regenerate (1-1.5)% of maximum Life per Second if you've used a Life Flask in the past 10 seconds", statOrder = { 7049 }, level = 1, group = "FlaskLifeRegenForXSeconds", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHash = 3161573445, }, + ["UniqueHeartPrefixCharmRecoverManaOnUse"] = { affix = "", "Recover (5-10)% of maximum Mana when a Charm is used", statOrder = { 9117 }, level = 1, group = "CharmRecoverManaOnUse", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHash = 4121454694, }, + ["UniqueHeartPrefixCharmChanceToUseOtherCharm"] = { affix = "", "(10-15)% chance when a Charm is used to use another Charm without consuming Charges", statOrder = { 5255 }, level = 1, group = "CharmChanceToUseOtherCharm", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 1949851472, }, + ["UniqueHeartPrefixCharmEffect"] = { affix = "", "Charms applied to you have (15-25)% increased Effect", statOrder = { 5234 }, level = 1, group = "CharmEffect", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 3480095574, }, + ["UniqueHeartPrefixThornsCriticalStrikeChance"] = { affix = "", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4616 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 2715190555, }, + ["UniqueHeartPrefixThornsFromPercentBodyArmour"] = { affix = "", "Gain Physical Thorns damage equal to (4-6)% of Item Armour on Equipped Body Armour", statOrder = { 4526 }, level = 1, group = "ThornsFromPercentBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage" }, tradeHash = 1793740180, }, + ["UniqueHeartPrefixAttackSpeedPercentIfRareOrUniqueEnemyNearby"] = { affix = "", "(5-8)% increased Attack Speed while a Rare or Unique Enemy is in your Presence", statOrder = { 4434 }, level = 1, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "attack", "speed" }, tradeHash = 314741699, }, + ["UniqueHeartPrefixElementalExposureEffect"] = { affix = "", "(15-25)% increased Exposure Effect", statOrder = { 6106 }, level = 1, group = "ElementalExposureEffect", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 2074866941, }, + ["UniqueHeartSuffixMaximumFireResist"] = { affix = "", "+1% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "fire", "resistance" }, tradeHash = 4095671657, }, + ["UniqueHeartSuffixMaximumColdResist"] = { affix = "", "+1% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "cold", "resistance" }, tradeHash = 3676141501, }, + ["UniqueHeartSuffixMaximumLightningResist"] = { affix = "", "+1% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "lightning", "resistance" }, tradeHash = 1011760251, }, + ["UniqueHeartSuffixSkillEffectDuration"] = { affix = "", "(3-8)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 3377888098, }, + ["UniqueHeartSuffixLifeRegenerationRate"] = { affix = "", "(6-12)% increased Life Regeneration rate", statOrder = { 969 }, level = 1, group = "LifeRegenerationRate", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHash = 44972811, }, + ["UniqueHeartSuffixStunDamageIncrease"] = { affix = "", "(6-12)% increased Stun Buildup", statOrder = { 984 }, level = 1, group = "StunDamageIncrease", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 239367161, }, + ["UniqueHeartSuffixIncreasedStunThreshold"] = { affix = "", "(5-10)% increased Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 680068163, }, + ["UniqueHeartSuffixRageOnHit"] = { affix = "", "Gain 1 Rage on Melee Hit", statOrder = { 6431 }, level = 1, group = "RageOnHit", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 2709367754, }, + ["UniqueHeartSuffixGainRageWhenHit"] = { affix = "", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6433 }, level = 1, group = "GainRageWhenHit", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 3292710273, }, + ["UniqueHeartSuffixLifeCost"] = { affix = "", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 1, group = "LifeCost", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHash = 2480498143, }, + ["UniqueHeartSuffixAilmentChance"] = { affix = "", "(4-8)% increased chance to inflict Ailments", statOrder = { 4136 }, level = 1, group = "AilmentChance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHash = 1772247089, }, + ["UniqueHeartSuffixIncreasedAilmentThreshold"] = { affix = "", "(6-12)% increased Elemental Ailment Threshold", statOrder = { 4147 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 3544800472, }, + ["UniqueHeartSuffixIncreasedAttackSpeed"] = { affix = "", "(2-3)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "attack", "speed" }, tradeHash = 681332047, }, + ["UniqueHeartSuffixGlobalCooldownRecovery"] = { affix = "", "(2-3)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 1004011302, }, + ["UniqueHeartSuffixDebuffTimePassed"] = { affix = "", "Debuffs on you expire (4-8)% faster", statOrder = { 5703 }, level = 1, group = "DebuffTimePassed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 1238227257, }, + ["UniqueHeartSuffixFasterAilmentDamageForJewel"] = { affix = "", "Damaging Ailments deal damage (2-4)% faster", statOrder = { 5671 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHash = 538241406, }, + ["UniqueHeartSuffixMovementVelocity"] = { affix = "", "(1-2)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "speed" }, tradeHash = 2250533757, }, + ["UniqueHeartSuffixSlowPotency"] = { affix = "", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 924253255, }, + ["UniqueHeartSuffixIncreasedFlaskChargesGained"] = { affix = "", "(4-8)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 1836676211, }, + ["UniqueHeartSuffixFlaskDuration"] = { affix = "", "(4-8)% increased Flask Effect Duration", statOrder = { 879 }, level = 1, group = "FlaskDuration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 3741323227, }, + ["UniqueHeartSuffixBaseChanceToPoison"] = { affix = "", "(5-10)% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 795138349, }, + ["UniqueHeartSuffixBaseChanceToBleed"] = { affix = "", "(5-10)% chance to inflict Bleeding on Hit", statOrder = { 4532 }, level = 1, group = "BaseChanceToBleed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 2174054121, }, + ["UniqueHeartSuffixIncreasedCastSpeedForJewel"] = { affix = "", "(2-3)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "caster", "speed" }, tradeHash = 2891184298, }, + ["UniqueHeartSuffixCritChanceForJewel"] = { affix = "", "(4-8)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CritChanceForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "critical" }, tradeHash = 587431675, }, + ["UniqueHeartSuffixCritMultiplierForJewel"] = { affix = "", "(6-12)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CritMultiplierForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "damage", "critical" }, tradeHash = 3556824919, }, + ["UniqueHeartSuffixSpellCritMultiplierForJewel"] = { affix = "", "(6-12)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "unveiled_mod", "heart_unique_jewel_suffix", "damage", "caster", "critical" }, tradeHash = 274716455, }, + ["UniqueHeartSuffixSpellCriticalStrikeChance"] = { affix = "", "(4-8)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "caster", "critical" }, tradeHash = 737908626, }, + ["UniqueHeartSuffixDamageRemovedFromManaBeforeLife"] = { affix = "", "(2-3)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life", "mana" }, tradeHash = 458438597, }, + ["UniqueHeartSuffixMaximumLifeOnKillPercent"] = { affix = "", "Recover (1-2)% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHash = 2023107756, }, + ["UniqueHeartSuffixManaGainedOnKillPercentage"] = { affix = "", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1443 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "mana" }, tradeHash = 1604736568, }, + ["UniqueHeartSuffixLifeRecoupForJewel"] = { affix = "", "(2-3)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHash = 1444556985, }, + ["UniqueHeartSuffixManaRegeneration"] = { affix = "", "(4-8)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "mana" }, tradeHash = 789117908, }, + ["UniqueHeartSuffixMinionPhysicalDamageReduction"] = { affix = "", "Minions have (3-12)% additional Physical Damage Reduction", statOrder = { 1946 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "physical", "minion" }, tradeHash = 3119612865, }, + ["UniqueHeartSuffixMinionAttackSpeedAndCastSpeed"] = { affix = "", "Minions have (2-3)% increased Attack and Cast Speed", statOrder = { 8453 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "attack", "caster", "speed", "minion" }, tradeHash = 3091578504, }, + ["UniqueHeartSuffixMinionCriticalStrikeChanceIncrease"] = { affix = "", "Minions have (6-12)% increased Critical Hit Chance", statOrder = { 8476 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "minion", "critical" }, tradeHash = 491450213, }, + ["UniqueHeartSuffixMinionElementalResistance"] = { affix = "", "Minions have +(3-4)% to all Elemental Resistances", statOrder = { 2558 }, level = 1, group = "MinionElementalResistance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "resistance", "minion" }, tradeHash = 1423639565, }, + ["UniqueHeartSuffixStunThresholdfromEnergyShield"] = { affix = "", "Gain additional Stun Threshold equal to (4-10)% of maximum Energy Shield", statOrder = { 9531 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 416040624, }, + ["UniqueHeartSuffixAilmentThresholdfromEnergyShield"] = { affix = "", "Gain additional Ailment Threshold equal to (4-10)% of maximum Energy Shield", statOrder = { 4146 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHash = 3398301358, }, + ["AbyssModRadiusJewelPrefixDamageTakenRecoupLife"] = { type = "Prefix", affix = "Lightless", "1% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenRecoupLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 3669820740, }, + ["AbyssModRadiusJewelPrefixDamageTakenRecoupMana"] = { type = "Prefix", affix = "Lightless", "1% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenRecoupMana", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 85367160, }, + ["AbyssModRadiusJewelPrefixPercentMaximumMana"] = { type = "Prefix", affix = "Lightless", "1% increased maximum Mana", statOrder = { 872 }, level = 1, group = "HybridAbyssModRadiusJewelPercentMaximumMana", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 2589572664, }, + ["AbyssModRadiusJewelPrefixPercentMaximumLife"] = { type = "Prefix", affix = "Lightless", "1% increased maximum Life", statOrder = { 870 }, level = 1, group = "HybridAbyssModRadiusJewelPercentMaximumLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 160888068, }, + ["AbyssModRadiusJewelPrefixGlobalDefences"] = { type = "Prefix", affix = "Lightless", "(2-3)% increased Global Defences", statOrder = { 2486 }, level = 1, group = "HybridAbyssModRadiusJewelGlobalDefences", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 3488475284, }, + ["AbyssModRadiusJewelPrefixDamageTakenFromManaBeforeLife"] = { type = "Prefix", affix = "Lightless", "1% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenFromManaBeforeLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 2709646369, }, + ["AbyssModRadiusJewelPrefixRegeneratePercentLifePerSecond"] = { type = "Suffix", affix = "Lightless", "Regenerate (0.03-0.07)% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "HybridAbyssModRadiusJewelRegeneratePercentLifePerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 3566150527, }, + ["AbyssModRadiusJewelPrefixManaCostEfficiency"] = { type = "Suffix", affix = "Lightless", "(2-3)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "HybridAbyssModRadiusJewelManaCostEfficiency", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 4257790560, }, + ["AbyssModRadiusJewelPrefixReducedCriticalHitChanceAgainstYou"] = { type = "Suffix", affix = "Lightless", "Hits have (3-5)% reduced Critical Hit Chance against you", statOrder = { 2747 }, level = 1, group = "HybridAbyssModRadiusJewelReducedCriticalHitChanceAgainstYou", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 2135541924, }, + ["AbyssModRadiusJewelPrefixManaFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Mana Flasks gain 0.1 charges per Second", statOrder = { 6452 }, level = 1, group = "HybridAbyssModRadiusJewelManaFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 3939216292, }, + ["AbyssModRadiusJewelPrefixLifeFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Life Flasks gain 0.1 charges per Second", statOrder = { 6451 }, level = 1, group = "HybridAbyssModRadiusJewelLifeFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 1148433552, }, + ["AbyssModRadiusJewelPrefixCharmChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Charms gain 0.1 charges per Second", statOrder = { 6448 }, level = 1, group = "HybridAbyssModRadiusJewelCharmChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 1034611536, }, + ["AbyssModJewelPrefixSpellDamageArmour"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Spell Damage", "(5-10)% increased Armour", statOrder = { 853, 864 }, level = 1, group = "HybridAbyssModJewelSpellDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences", "caster" }, tradeHash = 1131747566, }, + ["AbyssModJewelPrefixSpellDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Spell Damage", "(5-10)% increased Evasion Rating", statOrder = { 853, 866 }, level = 1, group = "HybridAbyssModJewelSpellDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences", "caster" }, tradeHash = 3584035298, }, + ["AbyssModJewelPrefixSpellDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Spell Damage", "(5-10)% increased maximum Energy Shield", statOrder = { 853, 868 }, level = 1, group = "HybridAbyssModJewelSpellDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences", "caster" }, tradeHash = 1632833053, }, + ["AbyssModJewelPrefixAttackDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Attack Damage", statOrder = { 864, 1093 }, level = 1, group = "HybridAbyssModJewelAttackDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences", "attack" }, tradeHash = 4215160445, }, + ["AbyssModJewelPrefixAttackDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Attack Damage", statOrder = { 866, 1093 }, level = 1, group = "HybridAbyssModJewelAttackDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences", "attack" }, tradeHash = 1313000010, }, + ["AbyssModJewelPrefixAttackDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Attack Damage", statOrder = { 868, 1093 }, level = 1, group = "HybridAbyssModJewelAttackDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences", "attack" }, tradeHash = 2921752643, }, + ["AbyssModJewelPrefixMinionDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "Minions deal (4-8)% increased Damage", statOrder = { 864, 1646 }, level = 1, group = "HybridAbyssModJewelMinionDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences", "minion" }, tradeHash = 289988841, }, + ["AbyssModJewelPrefixMinionDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "Minions deal (4-8)% increased Damage", statOrder = { 866, 1646 }, level = 1, group = "HybridAbyssModJewelMinionDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences", "minion" }, tradeHash = 2631111329, }, + ["AbyssModJewelPrefixMinionDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "Minions deal (4-8)% increased Damage", statOrder = { 868, 1646 }, level = 1, group = "HybridAbyssModJewelMinionDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences", "minion" }, tradeHash = 262571738, }, + ["AbyssModJewelPrefixThornsDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Thorns damage", statOrder = { 864, 9646 }, level = 1, group = "HybridAbyssModJewelThornsDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences" }, tradeHash = 1886584833, }, + ["AbyssModJewelPrefixThornsDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Thorns damage", statOrder = { 866, 9646 }, level = 1, group = "HybridAbyssModJewelThornsDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences" }, tradeHash = 1139025795, }, + ["AbyssModJewelPrefixThornsDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Thorns damage", statOrder = { 868, 9646 }, level = 1, group = "HybridAbyssModJewelThornsDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences" }, tradeHash = 721193160, }, + ["AbyssModJewelPrefixTotemDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Totem Damage", statOrder = { 864, 1089 }, level = 1, group = "HybridAbyssModJewelTotemDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences" }, tradeHash = 3834188973, }, + ["AbyssModJewelPrefixTotemDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Totem Damage", statOrder = { 866, 1089 }, level = 1, group = "HybridAbyssModJewelTotemDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences" }, tradeHash = 1129700234, }, + ["AbyssModJewelPrefixTotemDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Totem Damage", statOrder = { 868, 1089 }, level = 1, group = "HybridAbyssModJewelTotemDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences" }, tradeHash = 495549257, }, + ["AbyssModJewelPrefixFireDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Fire Damage", "Damage Penetrates (4-7)% Fire Resistance", statOrder = { 855, 2613 }, level = 1, group = "HybridAbyssModJewelFireDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "fire" }, tradeHash = 1903981671, }, + ["AbyssModJewelPrefixLightningDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Lightning Damage", "Damage Penetrates (4-7)% Lightning Resistance", statOrder = { 857, 2615 }, level = 1, group = "HybridAbyssModJewelLightningDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "lightning" }, tradeHash = 4255260716, }, + ["AbyssModJewelPrefixColdDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Cold Damage", "Damage Penetrates (4-7)% Cold Resistance", statOrder = { 856, 2614 }, level = 1, group = "HybridAbyssModJewelColdDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "cold" }, tradeHash = 3120339385, }, + ["AbyssModJewelPrefixBleedChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to inflict Bleeding", "(5-10)% increased Magnitude of Bleeding you inflict", statOrder = { 4660, 4662 }, level = 1, group = "HybridAbyssModJewelBleedChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "bleed", "unveiled_mod", "ailment" }, tradeHash = 3930825502, }, + ["AbyssModJewelPrefixPoisonChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to Poison", "(5-10)% increased Magnitude of Poison you inflict", statOrder = { 8917, 8925 }, level = 1, group = "HybridAbyssModJewelPoisonChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "poison", "unveiled_mod", "ailment" }, tradeHash = 1762956693, }, + ["AbyssModJewelPrefixWarcryBuffEffectAndDamage"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Warcry Buff Effect", "(5-10)% increased Damage with Warcries", statOrder = { 9883, 9886 }, level = 1, group = "HybridAbyssModJewelWarcryBuffEffectAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, tradeHash = 1025420770, }, + ["AbyssModJewelPrefixCompanionLifeAndDamage"] = { type = "Prefix", affix = "Lightless", "Companions deal (5-10)% increased Damage", "Companions have (5-10)% increased maximum Life", statOrder = { 5339, 5342 }, level = 1, group = "HybridAbyssModJewelCompanionLifeAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "minion" }, tradeHash = 577252853, }, + ["AbyssModJewelPrefixGlobalPhysicalDamageArmourBreak"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Global Physical Damage", "Break (4-8)% increased Armour", statOrder = { 1122, 4283 }, level = 1, group = "HybridAbyssModJewelGlobalPhysicalDamageArmourBreak", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences", "physical" }, tradeHash = 622659131, }, + ["AbyssModJewelPrefixElementalDamageAilmentMagnitude"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Elemental Damage", "(4-8)% increased Magnitude of Ailments you inflict", statOrder = { 1651, 4140 }, level = 1, group = "HybridAbyssModJewelElementalDamageAilmentMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "ailment" }, tradeHash = 2415303479, }, + ["AbyssModJewelPrefixChaosDamageWitherEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Chaos Damage", "(3-6)% increased Withered Magnitude", statOrder = { 858, 9915 }, level = 1, group = "HybridAbyssModJewelChaosDamageWitherEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "chaos" }, tradeHash = 1135901605, }, + ["AbyssModJewelPrefixMinionAreaAndLife"] = { type = "Prefix", affix = "Lightless", "Minions have (4-8)% increased maximum Life", statOrder = { 962 }, level = 1, group = "HybridAbyssModJewelMinionAreaAndLife", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "minion" }, tradeHash = 2981137407, }, + ["AbyssModJewelPrefixAuraSkillEffectPresenceAreaOfEffect"] = { type = "Prefix", affix = "Lightless", "(8-15)% increased Presence Area of Effect", "Aura Skills have (2-4)% increased Magnitudes", statOrder = { 1002, 2472 }, level = 1, group = "HybridAbyssModJewelAuraSkillEffectPresenceAreaOfEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "aura" }, tradeHash = 1974943988, }, + ["AbyssModJewelPrefixElementalExposureEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Exposure Effect", statOrder = { 6106 }, level = 1, group = "HybridAbyssModJewelElementalExposureEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental" }, tradeHash = 2074866941, }, + ["AbyssModJewelPrefixAbyssalWastingEffect"] = { type = "Prefix", affix = "Lightless", "(10-20)% increased Magnitude of Abyssal Wasting you inflict", statOrder = { 4004 }, level = 1, group = "HybridAbyssModJewelAbyssalWastingEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, tradeHash = 4043376133, }, + ["AbyssModJewelSuffixIncreasedStrength"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Strength", statOrder = { 1080 }, level = 1, group = "HybridAbyssModJewelIncreasedStrength", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHash = 734614379, }, + ["AbyssModJewelSuffixIncreasedDexterity"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Dexterity", statOrder = { 1081 }, level = 1, group = "HybridAbyssModJewelIncreasedDexterity", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHash = 4139681126, }, + ["AbyssModJewelSuffixIncreasedIntelligence"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Intelligence", statOrder = { 1082 }, level = 1, group = "HybridAbyssModJewelIncreasedIntelligence", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHash = 656461285, }, + ["AbyssModArmourJewelleryUlamanSuffixLightningChaosResistance"] = { type = "Suffix", affix = "of Ulaman", "+(13-17)% to Lightning and Chaos Resistances", statOrder = { 7070 }, level = 65, group = "LightningAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "elemental", "lightning", "chaos", "resistance" }, tradeHash = 3465022881, }, + ["AbyssModArmourJewelleryUlamanSuffixStrengthAndDexterity"] = { type = "Suffix", affix = "of Ulaman", "+(9-15) to Strength and Dexterity", statOrder = { 1075 }, level = 65, group = "StrengthAndDexterity", weightKey = { "armour", "belt", "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "attribute" }, tradeHash = 538848803, }, + ["AbyssModArmourJewelleryAmanamuSuffixFireChaosResistance"] = { type = "Suffix", affix = "of Amanamu", "+(13-17)% to Fire and Chaos Resistances", statOrder = { 6127 }, level = 65, group = "FireAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "chaos", "resistance" }, tradeHash = 378817135, }, + ["AbyssModArmourJewelleryAmanamuSuffixStrengthAndIntelligence"] = { type = "Suffix", affix = "of Amanamu", "+(9-15) to Strength and Intelligence", statOrder = { 1076 }, level = 65, group = "StrengthAndIntelligence", weightKey = { "armour", "belt", "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attribute" }, tradeHash = 1535626285, }, + ["AbyssModArmourJewelleryKurgalSuffixColdChaosResistance"] = { type = "Suffix", affix = "of Kurgal", "+(13-17)% to Cold and Chaos Resistances", statOrder = { 5294 }, level = 65, group = "ColdAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental", "cold", "chaos", "resistance" }, tradeHash = 3393628375, }, + ["AbyssModArmourJewelleryKurgalSuffixDexterityAndIntelligence"] = { type = "Suffix", affix = "of Kurgal", "+(9-15) to Dexterity and Intelligence", statOrder = { 1077 }, level = 65, group = "DexterityAndIntelligence", weightKey = { "armour", "belt", "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attribute" }, tradeHash = 2300185227, }, + ["AbyssModFourCatKurgalSuffixManaCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(6-10)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 65, group = "ManaCostEfficiency", weightKey = { "helmet", "gloves", "focus", "quiver", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 4101445926, }, + ["AbyssModHelmUlamanSuffixMarkedEnemyTakeIncreasedDamage"] = { type = "Suffix", affix = "of Ulaman", "Enemies you Mark take (4-8)% increased Damage", statOrder = { 8281 }, level = 65, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "str_armour", "int_armour", "str_int_armour", "helmet", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 2083058281, }, + ["AbyssModHelmUlamanSuffixCriticalHitDamage"] = { type = "Suffix", affix = "of Ulaman", "(13-20)% increased Critical Damage Bonus", statOrder = { 937 }, level = 65, group = "CriticalStrikeMultiplier", weightKey = { "str_armour", "int_armour", "str_int_armour", "helmet", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage", "critical" }, tradeHash = 3556824919, }, + ["AbyssModHelmUlamanSuffixLifeCostEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Life Cost Efficiency", statOrder = { 4572 }, level = 65, group = "LifeCostEfficiency", weightKey = { "helmet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHash = 310945763, }, + ["AbyssModHelmAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(4-8)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4613 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "helmet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 53386210, }, + ["AbyssModHelmAmanamuSuffixGloryGeneration"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Glory generation", statOrder = { 6473 }, level = 65, group = "GloryGeneration", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 3143918757, }, + ["AbyssModHelmAmanamuSuffixPresenceAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% increased Presence Area of Effect", statOrder = { 1002 }, level = 65, group = "PresenceRadius", weightKey = { "helmet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 101878827, }, + ["AbyssModHelmKurgalSuffixArcaneSurgeEffect"] = { type = "Suffix", affix = "of Kurgal", "(20-30)% increased effect of Arcane Surge on you", statOrder = { 2891 }, level = 65, group = "ArcaneSurgeEffect", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "helmet", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2103650854, }, + ["AbyssModGlovesUlamanSuffixAilmentMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% increased Magnitude of Ailments you inflict", statOrder = { 4140 }, level = 65, group = "AilmentEffect", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage", "ailment" }, tradeHash = 1303248024, }, + ["AbyssModGlovesUlamanSuffixPoisonChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to Poison", statOrder = { 8917 }, level = 65, group = "PoisonChanceIncrease", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3481083201, }, + ["AbyssModGlovesUlamanSuffixBleedChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to inflict Bleeding", statOrder = { 4660 }, level = 65, group = "BleedChanceIncrease", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 242637938, }, + ["AbyssModGlovesUlamanSuffixIncisionChance"] = { type = "Suffix", affix = "of Ulaman", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5175 }, level = 65, group = "IncisionChance", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "ulaman_mod", "damage", "physical", "ailment" }, tradeHash = 300723956, }, + ["AbyssModGlovesUlamanSuffixFrenzyChargeConsumedSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Skill Speed if you've consumed a Frenzy Charge Recently", statOrder = { 9316 }, level = 65, group = "SkillSpeedIfConsumedFrenzyChargeRecently", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHash = 3313255158, }, + ["AbyssModGlovesAmanamuSuffixCurseAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% increased Area of Effect of Curses", statOrder = { 1875 }, level = 65, group = "CurseAreaOfEffect", weightKey = { "str_armour", "int_armour", "str_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHash = 153777645, }, + ["AbyssModGlovesAmanamuSuffixDazeChance"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% chance to Daze on Hit", statOrder = { 4530 }, level = 65, group = "DazeBuildup", weightKey = { "gloves", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 3146310524, }, + ["AbyssModGlovesAmanamuSuffixPercentOfLifeLeechInstant"] = { type = "Suffix", affix = "of Amanamu", "(8-15)% of Leech is Instant", statOrder = { 6962 }, level = 65, group = "PercentOfLeechIsInstant", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 3561837752, }, + ["AbyssModGlovesAmanamuSuffixImmobilisationBuildUp"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Immobilisation buildup", statOrder = { 6748 }, level = 65, group = "ImmobilisationBuildup", weightKey = { "str_armour", "int_armour", "str_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 330530785, }, + ["AbyssModGlovesKurgalSuffixArcaneSurgeOnCriticalHit"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% chance to Gain Arcane Surge when you deal a Critical Hit", statOrder = { 6320 }, level = 65, group = "GainArcaneSurgeOnCrit", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "critical" }, tradeHash = 446027070, }, + ["AbyssModGlovesKurgalSuffixCastSpeedWhileOnFullMana"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cast Speed when on Full Life", statOrder = { 1667 }, level = 65, group = "CastSpeedOnFullLife", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster", "speed" }, tradeHash = 656291658, }, + ["AbyssModBootsAndBeltUlamanSuffixReducedPoisonDurationSelf"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% reduced Poison Duration on you", statOrder = { 1000 }, level = 65, group = "ReducedPoisonDuration", weightKey = { "boots", "belt", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "poison", "unveiled_mod", "ulaman_mod", "chaos", "ailment" }, tradeHash = 3301100256, }, + ["AbyssModBootsAndBeltAmanamuSuffixReducedIgniteDuration"] = { type = "Suffix", affix = "of Amanamu", "(20-30)% reduced Ignite Duration on you", statOrder = { 996 }, level = 65, group = "ReducedIgniteDurationOnSelf", weightKey = { "boots", "belt", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "ailment" }, tradeHash = 986397080, }, + ["AbyssModBootsAndBeltKurgalSuffixReducedBleedDurationSelf"] = { type = "Suffix", affix = "of Kurgal", "(20-30)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 65, group = "ReducedBleedDuration", weightKey = { "boots", "belt", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "kurgal_mod", "physical", "ailment" }, tradeHash = 1692879867, }, + ["AbyssModBootsUlamanSuffixCorruptedBloodImmunity"] = { type = "Suffix", affix = "of Ulaman", "Corrupted Blood cannot be inflicted on you", statOrder = { 4906 }, level = 65, group = "CorruptedBloodImmunity", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "ulaman_mod", "physical", "ailment" }, tradeHash = 1658498488, }, + ["AbyssModBootsUlamanSuffixReducedMovementPenaltyWhileSkilling"] = { type = "Suffix", affix = "of Ulaman", "(6-10)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 8594 }, level = 65, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHash = 2590797182, }, + ["AbyssModBootsAmanamuSuffixReducedPotencyOfSlows"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 65, group = "SlowPotency", weightKey = { "boots", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 924253255, }, + ["AbyssModBootsAmanamuSuffixDodgeRollDistance"] = { type = "Suffix", affix = "of Amanamu", "+(0.1-0.2) metres to Dodge Roll distance", statOrder = { 5801 }, level = 65, group = "DodgeRollDistance", weightKey = { "boots", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 258119672, }, + ["AbyssModBootsKurgalSuffixManaCostEfficiencyDodgeRolledRecently"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Mana Cost Efficiency if you have Dodge Rolled Recently", statOrder = { 7482 }, level = 65, group = "ManaCostEfficiencyIfDodgeRolledRecently", weightKey = { "boots", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 3396435291, }, + ["AbyssModBootsKurgalSuffixManaRegenerationStationary"] = { type = "Suffix", affix = "of Kurgal", "(40-50)% increased Mana Regeneration Rate while stationary", statOrder = { 3883 }, level = 65, group = "ManaRegenerationWhileStationary", weightKey = { "boots", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 3308030688, }, + ["AbyssModBeltUlamanPrefixLifeFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Ulaman's", "Life Flasks gain (0.1-0.2) charges per Second", statOrder = { 6451 }, level = 65, group = "LifeFlaskChargeGeneration", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 1102738251, }, + ["AbyssModBeltUlamanPrefixChanceToNotConsumeFlaskConsumeCharges"] = { type = "Prefix", affix = "Ulaman's", "(10-18)% chance for Flasks you use to not consume Charges", statOrder = { 3782 }, level = 65, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "flask", "unveiled_mod", "ulaman_mod" }, tradeHash = 311641062, }, + ["AbyssModBeltUlamanPrefixLifeRegenRateDuringLifeFlaskEffect"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Life Regeneration rate during Effect of any Life Flask", statOrder = { 7039 }, level = 65, group = "LifeRegenerationRateDuringFlaskEffect", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "life_flask", "unveiled_mod", "ulaman_mod" }, tradeHash = 1261076060, }, + ["AbyssModBeltUlamanSuffixReducedSlowPotencySelfIfCharmedRecently"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", statOrder = { 9337 }, level = 65, group = "SlowEffectIfCharmedRecently", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "ulaman_mod" }, tradeHash = 3839676903, }, + ["AbyssModBeltAmanamuPrefixCharmsGainChargesPerSecond"] = { type = "Prefix", affix = "Amanamu's", "Charms gain (0.1-0.2) charges per Second", statOrder = { 6448 }, level = 65, group = "CharmChargeGeneration", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 185580205, }, + ["AbyssModBeltAmanamuPrefixGainFireThornsPer100MaximumLife"] = { type = "Prefix", affix = "Amanamu's", "2 to 4 Fire Thorns damage per 100 maximum Life", statOrder = { 9648 }, level = 65, group = "ThornsFirePerOneHundredLife", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire" }, tradeHash = 287294012, }, + ["AbyssModBeltAmanamuPrefixChanceToNotConsumeCharmCharges"] = { type = "Prefix", affix = "Amanamu's", "(10-18)% chance for Charms you use to not consume Charges", statOrder = { 5256 }, level = 65, group = "CharmChanceToNotConsumeCharges", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 501873429, }, + ["AbyssModBeltAmanamuSuffixThornsBaseCriticalStrikeChance"] = { type = "Suffix", affix = "of Amanamu", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4616 }, level = 65, group = "ThornsCriticalStrikeChance", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 2715190555, }, + ["AbyssModBeltKurgalPrefixManaFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Kurgal's", "Mana Flasks gain (0.1-0.2) charges per Second", statOrder = { 6452 }, level = 65, group = "ManaFlaskChargeGeneration", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2200293569, }, + ["AbyssModBeltKurgalPrefixGainArmourPercentOfMana"] = { type = "Prefix", affix = "Kurgal's", "Gain (6-12)% of Maximum Mana as Armour", statOrder = { 7481 }, level = 65, group = "GainPercentManaAsArmour", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "armour", "resource", "unveiled_mod", "kurgal_mod", "mana", "defences" }, tradeHash = 514290151, }, + ["AbyssModBeltKurgalPrefixChanceToNotConsumeFlaskConsumeCharges"] = { type = "Prefix", affix = "Kurgal's", "(10-15)% chance for Flasks you use to not consume Charges", statOrder = { 3782 }, level = 65, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "flask", "unveiled_mod", "kurgal_mod" }, tradeHash = 311641062, }, + ["AbyssModBeltKurgalSuffixManaRegenerationRate"] = { type = "Suffix", affix = "of Kurgal", "(30-40)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 65, group = "ManaRegeneration", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 789117908, }, + ["AbyssModBodyShieldUlamanSuffixHitsAgainstYouReducedCriticalDamage"] = { type = "Suffix", affix = "of Ulaman", "Hits have (17-25)% reduced Critical Hit Chance against you", statOrder = { 2747 }, level = 65, group = "ChanceToTakeCriticalStrikeUpdated", weightKey = { "body_armour", "shield", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "critical" }, tradeHash = 4270096386, }, + ["AbyssModBodyShieldAmanamuSuffixLifeRecoup"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 65, group = "DamageTakenGainedAsLife", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life" }, tradeHash = 1444556985, }, + ["AbyssModBodyShieldAmanamuSuffixReducedCursedEffectSelf"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% reduced effect of Curses on you", statOrder = { 1835 }, level = 65, group = "ReducedCurseEffect", weightKey = { "body_armour", "shield", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHash = 3407849389, }, + ["AbyssModBodyShieldKurgalSuffixManaRecoup"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 65, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "shield", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHash = 472520716, }, + ["AbyssModBodyShieldKurgalSuffixElementalEnergyShieldRecoup"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Elemental Damage taken Recouped as Energy Shield", statOrder = { 9080 }, level = 65, group = "ElementalDamageTakenGoesToEnergyShield", weightKey = { "str_shield", "dex_shield", "str_dex_shield", "helmet", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2896115339, }, + ["AbyssModBodyShieldKurgalSuffixArmourAppliesToChaosDamage"] = { type = "Suffix", affix = "of Kurgal", "+(23-31)% of Armour also applies to Chaos Damage", statOrder = { 4511 }, level = 65, group = "ArmourPercentAppliesToChaosDamage", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 3972229254, }, + ["AbyssModBodyArmourUlamanSuffixDeflectDamagePrevented"] = { type = "Suffix", affix = "of Ulaman", "Prevent +(3-5)% of Damage from Deflected Hits", statOrder = { 4541 }, level = 65, group = "DeflectDamageTaken", weightKey = { "str_armour", "int_armour", "str_int_armour", "body_armour", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3552135623, }, + ["AbyssModBodyArmourUlamanSuffixCompanionReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(12-18)% increased Reservation Efficiency of Companion Skills", statOrder = { 9178 }, level = 65, group = "CompanionReservationEfficiency", weightKey = { "str_armour", "int_armour", "str_int_armour", "body_armour", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3413635271, }, + ["AbyssModBodyArmourAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(6-12)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4613 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "body_armour", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 53386210, }, + ["AbyssModBodyArmourKurgalSuffixDamageTakenFromManaBeforeLife"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 65, group = "DamageRemovedFromManaBeforeLife", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "body_armour", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHash = 458438597, }, + ["AbyssModShieldUlamanSuffixMaximumBlockChance"] = { type = "Suffix", affix = "of Ulaman", "+(1-2)% to maximum Block chance", statOrder = { 1659 }, level = 65, group = "MaximumBlockChance", weightKey = { "shield", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "unveiled_mod", "ulaman_mod" }, tradeHash = 480796730, }, + ["AbyssModShieldUlamanSuffixParryDebuffMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased Parried Debuff Magnitude", statOrder = { 8794 }, level = 65, group = "ParryDebuffMagnitude", weightKey = { "str_shield", "str_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 818877178, }, + ["AbyssModShieldUlamanSuffixParryDebuffDuration"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% increased Parried Debuff Duration", statOrder = { 8808 }, level = 65, group = "ParryDuration", weightKey = { "str_shield", "str_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3401186585, }, + ["AbyssModShieldUlamanSuffixLightningTakenAsPhysAndGlancingWhileActiveBlocking"] = { type = "Suffix", affix = "of Ulaman", "You take (8-15)% of damage from Blocked Hits with a raised Shield", "(30-40)% of Physical Damage taken as Lightning while your Shield is raised", statOrder = { 4795, 8898 }, level = 65, group = "PhysicalTakenAsLightningAndGlancingWhilActiveBlocking", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "block", "unveiled_mod", "ulaman_mod", "physical", "elemental", "lightning" }, tradeHash = 1524959514, }, + ["AbyssModShieldAmanamuSuffixShieldSkillsFullyBreakArmourOnHeavyStun"] = { type = "Suffix", affix = "of Amanamu", "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", statOrder = { 6275 }, level = 65, group = "StunningHitsWithShieldSkillsFullyBreakArmour", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 1689748350, }, + ["AbyssModShieldAmanamuSuffixHeavyStunDecaySelf"] = { type = "Suffix", affix = "of Amanamu", "Your Heavy Stun buildup empties (30-40)% faster", statOrder = { 6543 }, level = 65, group = "HeavyStunDecayRate", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHash = 886088880, }, + ["AbyssModShieldAmanamuSuffixAllMaximumResistances"] = { type = "Suffix", affix = "of Amanamu", "+1% to all maximum Resistances", statOrder = { 1420 }, level = 65, group = "MaximumResistances", weightKey = { "shield", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "resistance" }, tradeHash = 569299859, }, + ["AbyssModShieldKurgalSuffixFlatManaGainedOnBlock"] = { type = "Suffix", affix = "of Kurgal", "(6-12) Mana gained when you Block", statOrder = { 1446 }, level = 65, group = "GainManaOnBlock", weightKey = { "shield", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 2122183138, }, + ["AbyssModShieldKurgalSuffixEnergyShieldRechargeRateBlockedRecently"] = { type = "Suffix", affix = "of Kurgal", "(40-50)% increased Energy Shield Recharge Rate if you've Blocked Recently", statOrder = { 6020 }, level = 65, group = "EnergyShieldRechargeBlockedRecently", weightKey = { "str_shield", "dex_shield", "str_dex_shield", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "energy_shield", "block", "unveiled_mod", "kurgal_mod", "defences" }, tradeHash = 1079292660, }, + ["AbyssModFocusUlamanPrefixMaximumSpellTotems"] = { type = "Prefix", affix = "Ulaman's", "Spell Skills have +1 to maximum number of Summoned Totems", statOrder = { 9427 }, level = 65, group = "AdditionalSpellTotem", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHash = 2474424958, }, + ["AbyssModFocusUlamanPrefixSpellDamageWhileWieldingMeleeWeapon"] = { type = "Prefix", affix = "Ulaman's", "(61-79)% increased Spell Damage while wielding a Melee Weapon", statOrder = { 9406 }, level = 65, group = "SpellDamageIfWieldingMeleeWeapon", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHash = 4136346606, }, + ["AbyssModFocusUlamanSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% of Spell Mana Cost Converted to Life Cost", statOrder = { 9436 }, level = 65, group = "SpellLifeCostPercent", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life", "caster" }, tradeHash = 3544050945, }, + ["AbyssModFocusUlamanSuffixChanceForTwoAdditionalSpellProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(10-16)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9431 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHash = 2910761524, }, + ["AbyssModFocusAmanamuPrefixCurseMagnitude"] = { type = "Prefix", affix = "Amanamu's", "(8-16)% increased Curse Magnitudes", statOrder = { 2266 }, level = 65, group = "CurseEffectiveness", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHash = 2353576063, }, + ["AbyssModFocusAmanamuPrefixOfferingBuffEffect"] = { type = "Prefix", affix = "Amanamu's", "Offering Skills have (12-20)% increased Buff effect", statOrder = { 3620 }, level = 65, group = "OfferingEffect", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 3191479793, }, + ["AbyssModFocusAmanamuSuffixGlobalMinionSkillLevels"] = { type = "Suffix", affix = "of Amanamu", "+(1-2) to Level of all Minion Skills", statOrder = { 931 }, level = 65, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "minion", "gem" }, tradeHash = 2162097452, }, + ["AbyssModFocusAmanamuSuffixFasterCurseActivation"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% faster Curse Activation", statOrder = { 5530 }, level = 65, group = "CurseDelay", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "curse" }, tradeHash = 1104825894, }, + ["AbyssModFocusKurgalPrefixInvocationSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (61-79)% increased Damage", statOrder = { 6927 }, level = 65, group = "InvocationSpellDamage", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHash = 1078309513, }, + ["AbyssModFocusKurgalPrefixSpellAreaOfEffect"] = { type = "Prefix", affix = "Kurgal's", "Spell Skills have (10-20)% increased Area of Effect", statOrder = { 9390 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 1967040409, }, + ["AbyssModFocusKurgalSuffixChanceForAdditionalInfusion"] = { type = "Suffix", affix = "of Kurgal", "(15-25)% chance when collecting an Elemental Infusion to gain an", "additional Elemental Infusion of the same type", statOrder = { 4077, 4077.1 }, level = 65, group = "ChanceToGainAdditionalInfusion", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 3927679277, }, + ["AbyssModQuiverUlamanPrefixIncreasesToProjectileSpeedApplyToDamage"] = { type = "Prefix", affix = "Ulaman's", "Increases and Reductions to Projectile Speed also apply to Damage with Bows", statOrder = { 4312 }, level = 65, group = "IncreasesToProjectileDamageApplyToBowDamage", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 414821772, }, + ["AbyssModQuiverUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (8-12)% chance to fire two additional Projectiles while moving", statOrder = { 8968 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3932115504, }, + ["AbyssModQuiverUlamanSuffixAttackCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-14)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 65, group = "LifeCost", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHash = 2480498143, }, + ["AbyssModQuiverAmanamuPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Amanamu's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies within 2m", statOrder = { 8975 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { "quiver", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHash = 2468595624, }, + ["AbyssModQuiverAmanamuSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Amanamu", "Projectiles have (18-26)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5423 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { "quiver", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 2573406169, }, + ["AbyssModQuiverKurgalPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies further than 6m", statOrder = { 8974 }, level = 65, group = "ProjectileDamageFar", weightKey = { "quiver", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2825946427, }, + ["AbyssModQuiverKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (18-26)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5436 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { "quiver", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2706625504, }, + ["AbyssModRingAmuletUlamanPrefixAttackDamageWhileLowLife"] = { type = "Prefix", affix = "Ulaman's", "(15-25)% increased Attack Damage while on Low Life", statOrder = { 4397 }, level = 65, group = "AttackDamageOnLowLife", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 4246007234, }, + ["AbyssModRingAmuletUlamanSuffixSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(3-6)% increased Skill Speed", statOrder = { 828 }, level = 65, group = "IncreasedSkillSpeed", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHash = 970213192, }, + ["AbyssModRingAmuletUlamanSuffixRecoverPercentMaxLifeOnKill"] = { type = "Suffix", affix = "of Ulaman", "Recover (2-3)% of maximum Life on Kill", statOrder = { 1437 }, level = 65, group = "RecoverPercentMaxLifeOnKill", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHash = 2023107756, }, + ["AbyssModRingAmuletAmanamuPrefixRemnantEffect"] = { type = "Prefix", affix = "Amanamu's", "Remnants have (8-15)% increased effect", statOrder = { 9151 }, level = 65, group = "RemnantEffect", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 1999910726, }, + ["AbyssModRingAmuletAmanamuPrefixMinionDamageIfYou'veHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (15-25)% increased Damage if you've Hit Recently", statOrder = { 8484 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage", "minion" }, tradeHash = 2337295272, }, + ["AbyssModRingAmuletAmanamuSuffixSkillEffectDuration"] = { type = "Suffix", affix = "of Amanamu", "(8-12)% increased Skill Effect Duration", statOrder = { 1572 }, level = 65, group = "SkillEffectDuration", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 3377888098, }, + ["AbyssModRingAmuletAmanamuSuffixRemnantCollectionRange"] = { type = "Suffix", affix = "of Amanamu", "Remnants can be collected from (20-30)% further away", statOrder = { 9153 }, level = 65, group = "RemnantPickupRadiusIncrease", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 3482326075, }, + ["AbyssModRingAmuletKurgalPrefixSpellDamageWhileEnergyShieldFull"] = { type = "Prefix", affix = "Kurgal's", "(15-25)% increased Spell Damage while on Full Energy Shield", statOrder = { 2700 }, level = 65, group = "IncreasedSpellDamageOnFullEnergyShield", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "caster_damage", "unveiled_mod", "kurgal_mod", "damage", "caster" }, tradeHash = 3176481473, }, + ["AbyssModRingAmuletKurgalSuffixExposureEffect"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% increased Exposure Effect", statOrder = { 6106 }, level = 65, group = "ElementalExposureEffect", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2074866941, }, + ["AbyssModRingAmuletKurgalSuffixCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 65, group = "GlobalCooldownRecovery", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 1004011302, }, + ["AbyssModRingAmuletKurgalSuffixRecoverPercentMaxManaOnKill"] = { type = "Suffix", affix = "of Kurgal", "Recover (2-3)% of maximum Mana on Kill", statOrder = { 1443 }, level = 65, group = "ManaGainedOnKillPercentage", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 1604736568, }, + ["AbyssModRingUlamanPrefixShockMagnitudeIfConsumedFrenzyCharge"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", statOrder = { 9249 }, level = 65, group = "ShockMagnitudeIfConsumedFrenzyChargeRecently", weightKey = { "ring", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "frenzy_charge", "unveiled_mod", "ulaman_mod", "ailment" }, tradeHash = 324210709, }, + ["AbyssModRingAmanamuPrefixIgniteMagnitudeIfConsumedEnduranceCharge"] = { type = "Prefix", affix = "Amanamu's", "(20-30)% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", statOrder = { 6816 }, level = 65, group = "IgniteMagnitudeIfConsumedEnduranceChargeRecently", weightKey = { "ring", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "endurance_charge", "unveiled_mod", "amanamu_mod", "ailment" }, tradeHash = 916833363, }, + ["AbyssModRingAmanamuSuffixLifeLeechAmount"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% increased amount of Life Leeched", statOrder = { 1820 }, level = 65, group = "LifeLeechAmount", weightKey = { "ring", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 2112395885, }, + ["AbyssModRingKurgalPrefixFreezeBuildupIfConsumedPowerCharge"] = { type = "Prefix", affix = "Kurgal's", "(20-30)% increased Freeze Buildup if you've consumed an Power Charge Recently", statOrder = { 6747 }, level = 65, group = "FreezeBuildupIfConsumedPowerChargeRecently", weightKey = { "ring", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "power_charge", "unveiled_mod", "kurgal_mod", "ailment" }, tradeHash = 232701452, }, + ["AbyssModRingKurgalSuffixManaLeechAmount"] = { type = "Suffix", affix = "of Kurgal", "(12-20)% increased amount of Mana Leeched", statOrder = { 1822 }, level = 65, group = "ManaLeechAmount", weightKey = { "ring", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 2839066308, }, + ["AbyssModAmuletUlamanPrefixEvasionRatingFromEquippedBody"] = { type = "Prefix", affix = "Ulaman's", "(35-50)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4810 }, level = 65, group = "EvasionRatingFromBodyArmour", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "evasion", "unveiled_mod", "ulaman_mod", "defences" }, tradeHash = 3509362078, }, + ["AbyssModAmuletUlamanPrefixGlobalDeflectionRating"] = { type = "Prefix", affix = "Ulaman's", "(10-20)% increased Deflection Rating", statOrder = { 5721 }, level = 65, group = "GlobalDeflectionRating", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "evasion", "unveiled_mod", "ulaman_mod", "defences" }, tradeHash = 3040571529, }, + ["AbyssModAmuletUlamanPrefixChanceToNotConsumeGlory"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% chance for Skills to retain 40% of Glory on use", statOrder = { 5190 }, level = 65, group = "ChanceToRefund40PercentGlory", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 2749595652, }, + ["AbyssModAmuletUlamanSuffixHeraldReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% increased Reservation Efficiency of Herald Skills", statOrder = { 9179 }, level = 65, group = "HeraldReservationEfficiency", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 1697191405, }, + ["AbyssModAmuletUlamanSuffixGlobalLevelOfSkillGems"] = { type = "Suffix", affix = "of Ulaman", "+1 to Level of all Skills", statOrder = { 4166 }, level = 65, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "gem" }, tradeHash = 4283407333, }, + ["AbyssModAmuletAmanamuPrefixArmourFromEquippedBody"] = { type = "Prefix", affix = "Amanamu's", "(35-50)% increased Armour from Equipped Body Armour", statOrder = { 4809 }, level = 65, group = "BodyArmourFromBodyArmour", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "armour", "unveiled_mod", "amanamu_mod", "defences" }, tradeHash = 1015576579, }, + ["AbyssModAmuletAmanamuPrefixGlobalDefences"] = { type = "Prefix", affix = "Amanamu's", "(15-25)% increased Global Defences", statOrder = { 2486 }, level = 65, group = "AllDefences", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "defences" }, tradeHash = 1389153006, }, + ["AbyssModAmuletAmanamuSuffixReducedRequirementEquipmentAndSkill"] = { type = "Suffix", affix = "of Amanamu", "Equipment and Skill Gems have (10-15)% reduced Attribute Requirements", statOrder = { 2224 }, level = 65, group = "GlobalItemAttributeRequirements", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 752930724, }, + ["AbyssModAmuletAmanamuSuffixAuraMagnitude"] = { type = "Suffix", affix = "of Amanamu", "Aura Skills have (8-16)% increased Magnitudes", statOrder = { 2472 }, level = 65, group = "AuraMagnitude", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 315791320, }, + ["AbyssModAmuletKurgalPrefixEnergyShieldFromEquippedBody"] = { type = "Prefix", affix = "Kurgal's", "(35-50)% increased Energy Shield from Equipped Body Armour", statOrder = { 8313 }, level = 65, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "energy_shield", "unveiled_mod", "kurgal_mod", "defences" }, tradeHash = 1195319608, }, + ["AbyssModAmuletKurgalPrefixChanceInvocatedSpellsConsumeHalfEnergy"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells have (10-20)% chance to consume half as much Energy", statOrder = { 6924 }, level = 65, group = "InvocatedSpellHalfEnergyChance", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHash = 3711973554, }, + ["AbyssModAmuletKurgalSuffixCooldownRecoveryRateCommandSkills"] = { type = "Suffix", affix = "of Kurgal", "Minions have (12-20)% increased Cooldown Recovery Rate", statOrder = { 8475 }, level = 65, group = "MinionCooldownRecoveryRate", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "minion" }, tradeHash = 1691403182, }, + ["AbyssModAmuletKurgalSuffixDamageFromManaBeforeLife"] = { type = "Suffix", affix = "of Kurgal", "(8-16)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 65, group = "DamageRemovedFromManaBeforeLife", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHash = 458438597, }, + ["AbyssModAmuletKurgalSuffixQualityofAllSkills"] = { type = "Suffix", affix = "of Kurgal", "+(3-5)% to Quality of all Skills", statOrder = { 4167 }, level = 65, group = "GlobalSkillGemQuality", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "gem" }, tradeHash = 3655769732, }, + ["AbyssModStaffUlamanPrefixSpellDamagePer100MaximumLife"] = { type = "Prefix", affix = "Ulaman's", "(4-5)% increased Spell Damage per 100 Maximum Life", statOrder = { 9411 }, level = 65, group = "SpellDamagePer100Life", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_damage", "resource", "unveiled_mod", "ulaman_mod", "life", "damage", "caster" }, tradeHash = 3491815140, }, + ["AbyssModStaffUlamanPrefixMagnitudeOfDamagingAilments"] = { type = "Prefix", affix = "Ulaman's", "(40-64)% increased Magnitude of Damaging Ailments you inflict", statOrder = { 5670 }, level = 65, group = "DamagingAilmentEffect", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "ailment" }, tradeHash = 1381474422, }, + ["AbyssModStaffUlamanSuffixCastSpeedWhileLowLife"] = { type = "Suffix", affix = "of Ulaman", "(30-40)% increased Cast Speed when on Low Life", statOrder = { 1666 }, level = 65, group = "CastSpeedOnLowLife", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster", "speed" }, tradeHash = 1136768410, }, + ["AbyssModStaffUlamanSuffixChanceForSpellsToFireTwoAdditionalProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9431 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHash = 2910761524, }, + ["AbyssModStaffAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(148-178)% increased Spell Damage with Spells that cost Life", statOrder = { 9407 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 1373860425, }, + ["AbyssModStaffAmanamuPrefixFlatSpirit"] = { type = "Prefix", affix = "Amanamu's", "+(35-50) to Spirit", statOrder = { 874 }, level = 65, group = "BaseSpirit", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 3981240776, }, + ["AbyssModStaffAmanamuSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% of Spell Mana Cost Converted to Life Cost", statOrder = { 9436 }, level = 65, group = "SpellLifeCostPercent", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHash = 3544050945, }, + ["AbyssModStaffAmanamuSuffixArchonDuration"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% increased Archon Buff duration", statOrder = { 4222 }, level = 65, group = "ArchonDuration", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 2158617060, }, + ["AbyssModStaffAmanamuSuffixBlockChance"] = { type = "Suffix", affix = "of Amanamu", "+(12-16)% to Block chance", statOrder = { 2130 }, level = 65, group = "AdditionalBlock", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHash = 1702195217, }, + ["AbyssModStaffKurgalPrefixSpellDamagePer100MaximumMana"] = { type = "Prefix", affix = "Kurgal's", "(4-5)% increased Spell Damage per 100 maximum Mana", statOrder = { 9413 }, level = 65, group = "SpellDamagePer100Mana", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_damage", "resource", "unveiled_mod", "kurgal_mod", "mana", "damage", "caster" }, tradeHash = 1850249186, }, + ["AbyssModStaffKurgalPrefixMaximumInfusions"] = { type = "Prefix", affix = "Kurgal's", "+(1-2) to maximum number of Elemental Infusions", statOrder = { 8324 }, level = 65, group = "MaximumElementalInfusion", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental" }, tradeHash = 4097212302, }, + ["AbyssModStaffKurgalSuffixArchonCooldownRecovery"] = { type = "Suffix", affix = "of Kurgal", "Archon recovery period expires (25-35)% faster", statOrder = { 4221 }, level = 65, group = "ArchonDelayRecovery", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2586152168, }, + ["AbyssModStaffKurgalSuffixCastSpeedWhileFullMana"] = { type = "Suffix", affix = "of Kurgal", "(26-36)% increased Cast Speed while on Full Mana", statOrder = { 4976 }, level = 65, group = "CastSpeedOnFullMana", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana", "caster", "speed" }, tradeHash = 1914226331, }, + ["AbyssModWandUlamanPrefixDamageAsExtraPhysical"] = { type = "Prefix", affix = "Ulaman's", "Gain (21-25)% of Damage as Extra Physical Damage", statOrder = { 1601 }, level = 65, group = "DamageasExtraPhysical", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "ulaman_mod", "damage", "physical" }, tradeHash = 4019237939, }, + ["AbyssModWandUlamanPrefixBleedMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(27-38)% increased Magnitude of Bleeding you inflict", statOrder = { 4662 }, level = 65, group = "BleedDotMultiplier", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "ulaman_mod", "damage", "physical", "attack", "ailment" }, tradeHash = 3166958180, }, + ["AbyssModWandUlamanSuffixArmourBreakAmount"] = { type = "Suffix", affix = "of Ulaman", "Break (31-39)% increased Armour", statOrder = { 4283 }, level = 65, group = "ArmourBreak", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 1776411443, }, + ["AbyssModWandUlamanSuffixBreakArmourSpellCrits"] = { type = "Suffix", affix = "of Ulaman", "Break Armour on Critical Hit with Spells equal to (11-18)% of Physical Damage dealt", statOrder = { 4287 }, level = 65, group = "ArmourBreakPercentOnSpellCrit", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster", "critical" }, tradeHash = 1286199571, }, + ["AbyssModWandUlamanSuffixHinderedEnemiesTakeIncreasedPhysical"] = { type = "Suffix", affix = "of Ulaman", "Enemies Hindered by you take (4-7)% increased Physical Damage", statOrder = { 6741 }, level = 65, group = "HinderedEnemiesTakeIncreasedPhysicalDamage", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 359357545, }, + ["AbyssModWandAmanamuPrefixIncreasedElementalDamage"] = { type = "Prefix", affix = "Amanamu's", "(74-89)% increased Elemental Damage", statOrder = { 1651 }, level = 65, group = "CasterElementalDamagePercent", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "amanamu_mod", "damage", "elemental" }, tradeHash = 3141070085, }, + ["AbyssModWandAmanamuPrefixHybridSpellAndMinionDamage"] = { type = "Prefix", affix = "Amanamu's", "(55-64)% increased Spell Damage", "Minions deal (55-64)% increased Damage", statOrder = { 853, 1646 }, level = 65, group = "MinionAndSpellDamageHybrid", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "minion" }, tradeHash = 835637773, }, + ["AbyssModWandAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(74-89)% increased Spell Damage with Spells that cost Life", statOrder = { 9407 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 1373860425, }, + ["AbyssModWandAmanamuSuffixSpellAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "Spell Skills have (8-16)% increased Area of Effect", statOrder = { 9390 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 1967040409, }, + ["AbyssModWandAmanamuSuffixSpellManaCostConvertedToLifeSkillEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Cost Efficiency", "(15-25)% of Spell Mana Cost Converted to Life Cost", statOrder = { 4604, 9436 }, level = 65, group = "SpellLifeCostPercentAndSkillCostEfficiency", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHash = 1817305991, }, + ["AbyssModWandAmanamuSuffixHinderedEnemiesTakeIncreasedElemental"] = { type = "Suffix", affix = "of Amanamu", "Enemies Hindered by you take (4-7)% increased Elemental Damage", statOrder = { 6740 }, level = 65, group = "HinderedEnemiesTakeIncreasedElementalDamage", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 212649958, }, + ["AbyssModWandKurgalPrefixInvocatedSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (75-89)% increased Damage", statOrder = { 6927 }, level = 65, group = "InvocationSpellDamage", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHash = 1078309513, }, + ["AbyssModWandKurgalSuffixCastSpeedPerDifferentSpellCastRecently"] = { type = "Suffix", affix = "of Kurgal", "(3-5)% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", statOrder = { 4965 }, level = 65, group = "CastSpeedPerDifferentSpellCastRecently", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 1518586897, }, + ["AbyssModWandKurgalSuffixHinderedEnemiesTakeIncreasedChaos"] = { type = "Suffix", affix = "of Kurgal", "Enemies Hindered by you take (4-7)% increased Chaos Damage", statOrder = { 6739 }, level = 65, group = "HinderedEnemiesTakeIncreasedChaosDamage", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 1746561819, }, + ["AbyssModGenWeaponUlamanPrefixLightningPenetration"] = { type = "Prefix", affix = "Ulaman's", "Attacks with this Weapon Penetrate (15-25)% Lightning Resistance", statOrder = { 3333 }, level = 65, group = "LocalLightningPenetration", weightKey = { "weapon", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "ulaman_mod", "damage", "elemental", "lightning", "attack" }, tradeHash = 2387539034, }, + ["AbyssModGenWeaponUlamanSuffixSkillCostConvertedToLife"] = { type = "Suffix", affix = "of Ulaman", "(15-20)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 65, group = "LifeCost", weightKey = { "weapon", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHash = 2480498143, }, + ["AbyssModGenWeaponAmanamuPrefixFirePenetration"] = { type = "Prefix", affix = "Amanamu's", "Attacks with this Weapon Penetrate (15-25)% Fire Resistance", statOrder = { 3331 }, level = 65, group = "LocalFirePenetration", weightKey = { "weapon", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "amanamu_mod", "damage", "elemental", "fire", "attack" }, tradeHash = 3398283493, }, + ["AbyssModGenWeaponAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4613 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "weapon", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 53386210, }, + ["AbyssModGenWeaponKurgalPrefixColdPenetration"] = { type = "Prefix", affix = "Kurgal's", "Attacks with this Weapon Penetrate (15-25)% Cold Resistance", statOrder = { 3332 }, level = 65, group = "LocalColdPenetration", weightKey = { "weapon", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "kurgal_mod", "damage", "elemental", "cold", "attack" }, tradeHash = 1740229525, }, + ["AbyssModGenWeaponKurgalSuffixAttackCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4519 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { "weapon", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHash = 3350279336, }, + ["AbyssModAllMacesUlamanPrefixMaximumMeleeAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "Melee Attack Skills have +1 to maximum number of Summoned Totems", statOrder = { 8361 }, level = 65, group = "AdditionalMeleeTotem", weightKey = { "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 2013356568, }, + ["AbyssModAllMacesKurgalPrefixIncreasedPhysicalDamageReducedAttackSpeed"] = { type = "Prefix", affix = "Kurgal's", "(110-154)% increased Physical Damage", "15% reduced Attack Speed", statOrder = { 821, 919 }, level = 65, group = "LocalIncreasedPhysicalDamageAttackSpeedHybrid", weightKey = { "mace", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "physical", "attack", "speed" }, tradeHash = 235192658, }, + ["AbyssModAllMacesKurgalSuffixCostEfficiencyOfAttackSkills"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4519 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { "mace", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHash = 3350279336, }, + ["AbyssMod1HMaceUlamanPrefixDamageWhileActiveTotem"] = { type = "Prefix", affix = "Ulaman's", "(41-59)% increased Damage while you have a Totem", statOrder = { 2818 }, level = 65, group = "IncreasedDamageWhileTotemActive", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage" }, tradeHash = 2543331226, }, + ["AbyssMod1HMaceUlamanSuffixTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% increased Totem Placement speed", statOrder = { 2250 }, level = 65, group = "SummonTotemCastSpeed", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHash = 3374165039, }, + ["AbyssMod1HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(41-59)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5553 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHash = 2301718443, }, + ["AbyssMod1HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { type = "Suffix", affix = "of Amanamu", "Break Armour equal to (2-4)% of Physical Damage dealt", statOrder = { 4290 }, level = 65, group = "ArmourPenetration", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "amanamu_mod", "damage", "physical" }, tradeHash = 1103616075, }, + ["AbyssMod1HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Skills which create Fissures have a (15-25)% chance to create an additional Fissure", statOrder = { 9296 }, level = 65, group = "AdditionalFissureChance", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHash = 2544540062, }, + ["AbyssMod1HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(10-16)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 9975 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHash = 3950000557, }, + ["AbyssMod1HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (41-59)% increased Damage", statOrder = { 5912 }, level = 65, group = "ExertedAttackDamage", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHash = 1569101201, }, + ["AbyssMod1HMaceKurgalSuffixWarcryCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(17-25)% increased Warcry Cooldown Recovery Rate", statOrder = { 2929 }, level = 65, group = "WarcryCooldownSpeed", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 4159248054, }, + ["AbyssMod2HMaceUlamanPrefixDamageWhileActiveTotem"] = { type = "Prefix", affix = "Ulaman's", "(86-99)% increased Damage while you have a Totem", statOrder = { 2818 }, level = 65, group = "IncreasedDamageWhileTotemActive", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage" }, tradeHash = 2543331226, }, + ["AbyssMod2HMaceUlamanSuffixTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ulaman", "(25-31)% increased Totem Placement speed", statOrder = { 2250 }, level = 65, group = "SummonTotemCastSpeed", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHash = 3374165039, }, + ["AbyssMod2HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(86-99)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5553 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHash = 2301718443, }, + ["AbyssMod2HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { type = "Suffix", affix = "of Amanamu", "Break Armour equal to (4-7)% of Physical Damage dealt", statOrder = { 4290 }, level = 65, group = "ArmourPenetration", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "amanamu_mod", "damage", "physical" }, tradeHash = 1103616075, }, + ["AbyssMod2HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Skills which create Fissures have a (25-31)% chance to create an additional Fissure", statOrder = { 9296 }, level = 65, group = "AdditionalFissureChance", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHash = 2544540062, }, + ["AbyssMod2HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(16-23)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 9975 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHash = 3950000557, }, + ["AbyssMod2HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (86-99)% increased Damage", statOrder = { 5912 }, level = 65, group = "ExertedAttackDamage", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHash = 1569101201, }, + ["AbyssMod2HMaceKurgalSuffixWarcryCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(25-31)% increased Warcry Cooldown Recovery Rate", statOrder = { 2929 }, level = 65, group = "WarcryCooldownSpeed", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 4159248054, }, + ["AbyssModQuarterstaffUlamanPrefixLightningDamageShockMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(86-99)% increased Lightning Damage", "(14-23)% increased Magnitude of Shock you inflict", statOrder = { 857, 9248 }, level = 65, group = "LightningDamageShockMagnitudeHybrid", weightKey = { "warstaff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "elemental", "lightning", "ailment" }, tradeHash = 4224952984, }, + ["AbyssModQuarterstaffUlamanSuffixRecoverLifeWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Ulaman", "Recover (6-12)% of Maximum Life when you expend at least 10 Combo", statOrder = { 9116 }, level = 65, group = "SkillUseRecoverPercentLifeOnExpendingTenCombo", weightKey = { "warstaff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHash = 4033618138, }, + ["AbyssModQuarterstaffAmanamuPrefixFireDamageIgniteMagnitude"] = { type = "Prefix", affix = "Amanamu's", "(86-99)% increased Fire Damage", "(14-23)% increased Ignite Magnitude", statOrder = { 855, 1009 }, level = 65, group = "FireDamageIgniteMagnitudeHybrid", weightKey = { "warstaff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "ailment" }, tradeHash = 3899332927, }, + ["AbyssModQuarterstaffAmanamuSuffixChanceToGenerateAdditionalCombo"] = { type = "Suffix", affix = "of Amanamu", "(25-40)% chance to build an additional Combo on Hit", statOrder = { 4068 }, level = 65, group = "ChanceToGenerateAdditionalCombo", weightKey = { "warstaff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 4258524206, }, + ["AbyssModQuarterstaffKurgalPrefixColdDamageFreezeBuildup"] = { type = "Prefix", affix = "Kurgal's", "(86-99)% increased Cold Damage", "(14-23)% increased Freeze Buildup", statOrder = { 856, 990 }, level = 65, group = "ColdDamageFreezeBuildupHybrid", weightKey = { "warstaff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental", "cold", "ailment" }, tradeHash = 849707263, }, + ["AbyssModQuarterstaffKurgalSuffixRecoverManaWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Kurgal", "Recover (4-6)% of Maximum Mana when you expend at least 10 Combo", statOrder = { 9119 }, level = 65, group = "SkillUseRecoverPercentManaOnExpendingTenCombo", weightKey = { "warstaff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 2991045011, }, + ["AbyssModCrossbowUlamanPrefixMaximumRangedAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "+1 to maximum number of Summoned Ballista Totems", statOrder = { 4058 }, level = 65, group = "AdditionalBallistaTotem", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 1823942939, }, + ["AbyssModCrossbowUlamanSuffixAttacksChainAdditionalTime"] = { type = "Suffix", affix = "of Ulaman", "Attacks Chain an additional time", statOrder = { 3684 }, level = 65, group = "AttacksChainAdditionalTimes", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3868118796, }, + ["AbyssModCrossbowUlamanSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Ulaman", "Projectiles have (27-38)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5423 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 2573406169, }, + ["AbyssModCrossbowAmanamuPrefixGrenadeAdditionalCooldown"] = { type = "Prefix", affix = "Amanamu's", "Grenade Skills have +1 Cooldown Use", statOrder = { 6497 }, level = 65, group = "GrenadeCooldownUse", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 2250681686, }, + ["AbyssModCrossbowAmanamuPrefixGrenadeDamageAndDuration"] = { type = "Prefix", affix = "Amanamu's", "(101-121)% increased Grenade Damage", "(20-30)% increased Grenade Duration", statOrder = { 6499, 6500 }, level = 65, group = "GrenadeDamageLongFuse", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHash = 1566806250, }, + ["AbyssModCrossbowAmanamuSuffixAdditionalGrenadeTriggerChance"] = { type = "Suffix", affix = "of Amanamu", "Grenades have (15-25)% chance to activate a second time", statOrder = { 6495 }, level = 65, group = "GrenadeAdditionalTriggerChance", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 538981065, }, + ["AbyssModCrossbowKurgalPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (85-109)% increased Damage with Hits against Enemies within 2m", statOrder = { 8975 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage" }, tradeHash = 2468595624, }, + ["AbyssModCrossbowKurgalSuffixReloadSpeed"] = { type = "Suffix", affix = "of Kurgal", "(17-25)% increased Reload Speed", statOrder = { 920 }, level = 65, group = "LocalReloadSpeed", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack", "speed" }, tradeHash = 710476746, }, + ["AbyssModCrossbowKurgalSuffixChanceForInstantReload"] = { type = "Suffix", affix = "of Kurgal", "(15-20)% chance when you Reload a Crossbow to be immediate", statOrder = { 2 }, level = 65, group = "ChanceForInstantReload", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2760344900, }, + ["AbyssModBowSpearUlamanPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Ulaman's", "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m", statOrder = { 8974 }, level = 65, group = "ProjectileDamageFar", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 2825946427, }, + ["AbyssModBowSpearUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (10-18)% chance to fire two additional Projectiles while moving", statOrder = { 8968 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3932115504, }, + ["AbyssModBowSpearUlamanSuffixAttackSpeedLocalAndWithCompanion"] = { type = "Suffix", affix = "of Ulaman", "(8-13)% increased Attack Speed", "(8-13)% increased Attack Speed while your Companion is in your Presence", statOrder = { 919, 4422 }, level = 65, group = "LocalAttackSpeedAndAttackSpeedWithCompanion", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3821569985, }, + ["AbyssModBowSpearAmanamuPrefixCompanionDamageAndDamageWithCompanion"] = { type = "Prefix", affix = "Amanamu's", "Companions deal (40-59)% increased Damage", "(40-59)% increased Damage while your Companion is in your Presence", statOrder = { 5339, 5566 }, level = 65, group = "CompanionDamageAndDamageWithCompanion", weightKey = { "bow", "spear", "talisman", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 1131423929, }, + ["AbyssModBowSpearAmanamuPrefixAttackSkillAreaOfEffect"] = { type = "Prefix", affix = "Amanamu's", "(12-23)% increased Area of Effect for Attacks", statOrder = { 4363 }, level = 65, group = "IncreasedAttackAreaOfEffect", weightKey = { "bow", "spear", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHash = 1840985759, }, + ["AbyssModBowSpearAmanamuSuffixCompanionAndLocalAttackSpeed"] = { type = "Suffix", affix = "of Amanamu", "(12-18)% increased Attack Speed", "Companions have (12-18)% increased Attack Speed", statOrder = { 919, 5335 }, level = 65, group = "CompanionAndLocalAttackSpeed", weightKey = { "bow", "spear", "talisman", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 244271083, }, + ["AbyssModBowSpearAmanamuSuffixChancePierceAdditionalTime"] = { type = "Suffix", affix = "of Amanamu", "(40-60)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 65, group = "ChanceToPierce", weightKey = { "bow", "spear", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 2321178454, }, + ["AbyssModBowSpearKurgalPrefixChanceChainFromTerrain"] = { type = "Prefix", affix = "Kurgal's", "Projectiles have (25-35)% chance to Chain an additional time from terrain", statOrder = { 8970 }, level = 65, group = "ChainFromTerrain", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 4081947835, }, + ["AbyssModBowSpearKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (25-34)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5436 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2706625504, }, + ["AbyssModBowSpearKurgalSuffixImmobilisationBuildup"] = { type = "Suffix", affix = "of Kurgal", "(25-34)% increased Immobilisation buildup", statOrder = { 6748 }, level = 65, group = "ImmobilisationBuildup", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 330530785, }, + ["AbyssModBowKurgalPrefixIncreasedQuiverStats"] = { type = "Prefix", affix = "Kurgal's", "(30-40)% increased bonuses gained from Equipped Quiver", statOrder = { 9028 }, level = 65, group = "QuiverModifierEffect", weightKey = { "bow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 1200678966, }, + ["AbyssModSpearKurgalPrefixMeleeDamageIfProjectileAttackHitEightSeconds"] = { type = "Prefix", affix = "Kurgal's", "(60-79)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8364 }, level = 65, group = "MeleeDamageIfProjectileAttackHitRecently", weightKey = { "spear", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 3028809864, }, + ["AbyssModTalismanUlamanSuffixGainXRageOnMeleeHit"] = { type = "Suffix", affix = "of Ulaman", "Gain (3-6) Rage on Melee Hit", statOrder = { 6431 }, level = 65, group = "RageOnHit", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2709367754, }, + ["AbyssModTalismanAmanamuPrefixMinionsDealIncreasedDamageIfYouHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (60-79)% increased Damage if you've Hit Recently", statOrder = { 8484 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage", "minion" }, tradeHash = 2337295272, }, + ["AbyssModTalismanKurgalPrefixWarcriesEmpowerXAdditionalAttacks"] = { type = "Prefix", affix = "Kurgal's", "Warcries Empower an additional Attack", statOrder = { 9887 }, level = 65, group = "WarcriesExertAnAdditionalAttack", weightKey = { "talisman", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHash = 1434716233, }, + ["AbyssModTalismanKurgalSuffixCriticalHitChanceAgainstMarkedTargets"] = { type = "Suffix", affix = "of Kurgal", "(39-51)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5439 }, level = 65, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "talisman", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "critical" }, tradeHash = 1045789614, }, + ["UniqueWatcherVeiledSpiritReservationEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4613 }, level = 1, group = "UniqueSpiritReservationEfficiency", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix" }, tradeHash = 53386210, }, + ["UniqueWatcherVeiledManaCostEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "UniqueManaCostEfficiency", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "mana" }, tradeHash = 4101445926, }, + ["UniqueWatcherVeiledCurseAreaOfEffect"] = { type = "Suffix", affix = "", "(11-21)% increased Area of Effect of Curses", statOrder = { 1875 }, level = 1, group = "UniqueCurseAreaOfEffect", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "curse" }, tradeHash = 153777645, }, + ["UniqueWatcherVeiledEffectOfCurses"] = { type = "Suffix", affix = "", "(11-18)% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "UniqueEffectOfCurses", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "curse" }, tradeHash = 2353576063, }, + ["UniqueWatcherVeiledMinionLife"] = { type = "Suffix", affix = "", "Minions have (41-50)% increased maximum Life", statOrder = { 962 }, level = 1, group = "UniqueMinionLife", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "life", "minion" }, tradeHash = 770672621, }, + ["UniqueWatcherVeiledPresenceAreaOfEffect"] = { type = "Suffix", affix = "", "(46-55)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "UniquePresenceAreaOfEffect", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "aura" }, tradeHash = 101878827, }, + ["UniqueWatcherVeiledManaRegeneration"] = { type = "Suffix", affix = "", "(68-91)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "UniqueManaRegeneration", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "mana" }, tradeHash = 789117908, }, + ["UniqueWatcherVeiledAlliesInPresenceCastSpeed"] = { type = "Suffix", affix = "", "Allies in your Presence have (8-15)% increased Cast Speed", statOrder = { 894 }, level = 1, group = "UniqueAlliesInPresenceCastSpeed", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "caster", "aura" }, tradeHash = 289128254, }, + ["UniqueWatcherVeiledAlliesInPresenceAllElementalResistance"] = { type = "Suffix", affix = "", "Allies in your Presence have +(11-18)% to all Elemental Resistances", statOrder = { 895 }, level = 1, group = "UniqueAlliesInPresenceAllElementalResistance", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "elemental", "resistance", "aura" }, tradeHash = 3850614073, }, + ["UniqueWatcherVeiledAlliesInPresenceFlatLifeRegen"] = { type = "Suffix", affix = "", "Allies in your Presence Regenerate (29.1-33) Life per second", statOrder = { 896 }, level = 1, group = "UniqueAlliesInPresenceFlatLifeRegen", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "life", "aura" }, tradeHash = 4010677958, }, + ["UniqueWatcherVeiledAlliesInPresenceCriticalHitChance"] = { type = "Suffix", affix = "", "Allies in your Presence have (26-41)% increased Critical Hit Chance", statOrder = { 891 }, level = 1, group = "UniqueAlliesInPresenceCriticalHitChance", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "critical", "aura" }, tradeHash = 1250712710, }, + ["UniqueKulemakUnholyMightAndMagnitude_1"] = { type = "Prefix", affix = "", "(28-56)% increased Magnitude of Unholy Might buffs you grant", "You have Unholy Might", statOrder = { 4620, 6533 }, level = 1, group = "UniqueUnholyMightAndMagnitude", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHash = 3662638480, }, + ["UniqueKulemakChaosDamageAndExplosion_1"] = { type = "Prefix", affix = "", "(100-160)% increased Chaos Damage", "Enemies you kill have a (5-10)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", statOrder = { 858, 2906 }, level = 1, group = "UniqueChaosDamageAndExplosion", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "chaos" }, tradeHash = 3097696978, }, + ["UniqueKulemakSpellPhysicalDamageBleedChance_1"] = { type = "Prefix", affix = "", "(100-160)% increased Spell Physical Damage", "(20-30)% chance to inflict Bleeding on Hit", statOrder = { 860, 4532 }, level = 1, group = "UniqueSpellPhysicalAndBleedChance", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "physical" }, tradeHash = 2866075484, }, + ["UniqueKulemakChaosDamageCurseLowersChaosRes_1"] = { type = "Prefix", affix = "", "(100-160)% increased Chaos Damage", "Enemies you Curse have -(8-5)% to Chaos Resistance", statOrder = { 858, 3617 }, level = 1, group = "UniqueChaosDamageAndCurseLowersChaosRes", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "chaos" }, tradeHash = 2171087599, }, + ["UniqueKulemakSpiritAndSpiritReservationEfficiency_1"] = { type = "Prefix", affix = "", "+(40-60) to Spirit", "(6-10)% increased Spirit Reservation Efficiency of Skills", statOrder = { 873, 4613 }, level = 1, group = "UniqueSpiritAndSpiritReservationEfficiency", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHash = 3748685373, }, + ["UniqueKulemakElementalDamageEleAilmentDuration_1"] = { type = "Prefix", affix = "", "(10-20)% increased Duration of Elemental Ailments on Enemies", "(100-160)% increased Elemental Damage", statOrder = { 1544, 1651 }, level = 1, group = "UniqueElementalDamageAndDurationOfEleAilments", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "elemental" }, tradeHash = 3369599297, }, + ["AbyssModBootsUlamanSuffixLifeRegenMoving"] = { type = "Suffix", affix = "of Ulaman", "(40-50)% increased Life Regeneration Rate while moving", statOrder = { 7061 }, level = 65, group = "LifeRegenerationPlusPercentWhileMoving", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHash = 2116424886, }, } \ No newline at end of file diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index f168403f33..6c18e6b96c 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -7395,10 +7395,6 @@ return { }, ["Corrupted"] = { ["1004011302"] = { - ["Helmet"] = { - ["max"] = 12, - ["min"] = 8, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -7422,10 +7418,6 @@ return { ["usePositiveSign"] = true, }, ["101878827"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -7594,10 +7586,6 @@ return { }, }, ["1316278494"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -7636,18 +7624,6 @@ return { }, }, ["1436284579"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -7765,18 +7741,6 @@ return { ["usePositiveSign"] = true, }, ["1658498488"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -7786,14 +7750,6 @@ return { }, }, ["1671376347"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["Belt"] = { ["max"] = 25, ["min"] = 20, @@ -7802,10 +7758,6 @@ return { ["max"] = 25, ["min"] = 20, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -8224,10 +8176,6 @@ return { }, }, ["2353576063"] = { - ["Helmet"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -8389,10 +8337,6 @@ return { }, }, ["280731498"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -8475,22 +8419,10 @@ return { ["usePositiveSign"] = true, }, ["2923486259"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["Chest"] = { ["max"] = 19, ["min"] = 13, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["Ring"] = { ["max"] = 19, ["min"] = 13, @@ -8627,22 +8559,10 @@ return { ["max"] = 15, ["min"] = 10, }, - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, ["Belt"] = { ["max"] = 15, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, ["Ring"] = { ["max"] = 15, ["min"] = 10, @@ -8661,22 +8581,10 @@ return { ["max"] = 15, ["min"] = 10, }, - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, ["Belt"] = { ["max"] = 15, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, ["Ring"] = { ["max"] = 15, ["min"] = 10, @@ -8787,14 +8695,6 @@ return { }, }, ["3372524247"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["Belt"] = { ["max"] = 25, ["min"] = 20, @@ -8803,10 +8703,6 @@ return { ["max"] = 25, ["min"] = 20, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -8817,10 +8713,6 @@ return { ["usePositiveSign"] = true, }, ["3377888098"] = { - ["Helmet"] = { - ["max"] = 25, - ["min"] = 15, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -8830,10 +8722,6 @@ return { }, }, ["3398787959"] = { - ["Helmet"] = { - ["max"] = 8, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -8856,18 +8744,6 @@ return { }, }, ["3429557654"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -9245,22 +9121,10 @@ return { ["max"] = 15, ["min"] = 10, }, - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, - ["BaseJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, ["Belt"] = { ["max"] = 15, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 6, - ["min"] = 4, - }, ["Ring"] = { ["max"] = 15, ["min"] = 10, @@ -9302,14 +9166,6 @@ return { ["usePositiveSign"] = true, }, ["4220027924"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["Belt"] = { ["max"] = 25, ["min"] = 20, @@ -9318,10 +9174,6 @@ return { ["max"] = 25, ["min"] = 20, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -9358,10 +9210,6 @@ return { ["usePositiveSign"] = true, }, ["4236566306"] = { - ["Helmet"] = { - ["max"] = 30, - ["min"] = 20, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -9592,18 +9440,6 @@ return { }, }, ["721014846"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -9796,16 +9632,12 @@ return { ["1002362373"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -9817,21 +9649,34 @@ return { ["1004011302"] = { ["AnyJewel"] = { ["max"] = 5, - ["min"] = 1, + ["min"] = 3, }, ["BaseJewel"] = { ["max"] = 5, ["min"] = 3, }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1004011302", + ["text"] = "#% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["1007380041"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["RadiusJewel"] = { ["max"] = 3, - ["min"] = 1, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1004011302", - ["text"] = "#% increased Cooldown Recovery Rate", + ["id"] = "explicit.stat_1007380041", + ["text"] = "Small Passive Skills in Radius also grant #% increased Parry Damage", ["type"] = "explicit", }, }, @@ -9864,16 +9709,12 @@ return { }, ["AnyJewel"] = { ["max"] = 25, - ["min"] = 8, + ["min"] = 15, }, ["BaseJewel"] = { ["max"] = 25, ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, ["Sceptre"] = { ["max"] = 80, ["min"] = 36, @@ -9886,6 +9727,23 @@ return { ["type"] = "explicit", }, }, + ["1022759479"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1022759479", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cast Speed", + ["type"] = "explicit", + }, + }, ["1037193709"] = { ["1HMace"] = { ["max"] = 102, @@ -9935,6 +9793,23 @@ return { ["type"] = "explicit", }, }, + ["1039268420"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1039268420", + ["text"] = "Small Passive Skills in Radius also grant #% increased chance to Shock", + ["type"] = "explicit", + }, + }, ["1050105434"] = { ["1HWeapon"] = { ["max"] = 164, @@ -10042,16 +9917,12 @@ return { ["1062710370"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 3, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 10, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10060,44 +9931,61 @@ return { ["type"] = "explicit", }, }, - ["1104825894"] = { + ["1087108135"] = { ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["max"] = 4, + ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 5, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1104825894", - ["text"] = "#% faster Curse Activation", + ["id"] = "explicit.stat_1087108135", + ["text"] = "Small Passive Skills in Radius also grant #% increased Curse Duration", ["type"] = "explicit", }, }, - ["1120862500"] = { - ["Charm"] = { - ["max"] = 300, - ["min"] = 16, + ["1087531620"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1120862500", - ["text"] = "Recover # Mana when Used", + ["id"] = "explicit.stat_1087531620", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup", ["type"] = "explicit", }, }, - ["1135928777"] = { + ["1104825894"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 1, + ["max"] = 15, + ["min"] = 5, }, ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["max"] = 15, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1104825894", + ["text"] = "#% faster Curse Activation", + ["type"] = "explicit", + }, + }, + ["111835965"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, }, ["RadiusJewel"] = { ["max"] = 2, @@ -10106,45 +9994,144 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1135928777", - ["text"] = "#% increased Attack Speed with Crossbows", + ["id"] = "explicit.stat_111835965", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Quarterstaves", ["type"] = "explicit", }, }, - ["1165163804"] = { + ["1120862500"] = { + ["Charm"] = { + ["max"] = 300, + ["min"] = 16, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1120862500", + ["text"] = "Recover # Mana when Used", + ["type"] = "explicit", + }, + }, + ["1129429646"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1129429646", + ["text"] = "Small Passive Skills in Radius also grant #% increased Weapon Swap Speed", + ["type"] = "explicit", + }, + }, + ["1135928777"] = { ["AnyJewel"] = { ["max"] = 4, - ["min"] = 1, + ["min"] = 2, }, ["BaseJewel"] = { ["max"] = 4, ["min"] = 2, }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1135928777", + ["text"] = "#% increased Attack Speed with Crossbows", + ["type"] = "explicit", + }, + }, + ["1137305356"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["RadiusJewel"] = { ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1137305356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["1145481685"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1145481685", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Placement speed", + ["type"] = "explicit", + }, + }, + ["1160637284"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1160637284", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Warcries", + ["type"] = "explicit", + }, + }, + ["1165163804"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, ["tradeMod"] = { ["id"] = "explicit.stat_1165163804", ["text"] = "#% increased Attack Speed with Spears", ["type"] = "explicit", }, }, + ["1166140625"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1166140625", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Shock you inflict", + ["type"] = "explicit", + }, + }, ["1181419800"] = { ["AnyJewel"] = { ["max"] = 16, - ["min"] = 1, + ["min"] = 6, }, ["BaseJewel"] = { ["max"] = 16, ["min"] = 6, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10162,10 +10149,6 @@ return { ["max"] = 1, ["min"] = 1, }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10175,19 +10158,32 @@ return { }, ["usePositiveSign"] = true, }, + ["1185341308"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1185341308", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Regeneration rate", + ["type"] = "explicit", + }, + }, ["1200678966"] = { ["AnyJewel"] = { ["max"] = 6, - ["min"] = 2, + ["min"] = 4, }, ["BaseJewel"] = { ["max"] = 6, ["min"] = 4, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10237,16 +10233,12 @@ return { ["1238227257"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 3, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 10, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10348,6 +10340,57 @@ return { ["type"] = "explicit", }, }, + ["1266413530"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1266413530", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", + ["type"] = "explicit", + }, + }, + ["127081978"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_127081978", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Freeze Buildup with Quarterstaves", + ["type"] = "explicit", + }, + }, + ["1285594161"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1285594161", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating with Bows", + ["type"] = "explicit", + }, + }, ["1301765461"] = { ["Shield"] = { ["max"] = 3, @@ -10365,16 +10408,12 @@ return { ["1303248024"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 3, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10383,19 +10422,32 @@ return { ["type"] = "explicit", }, }, + ["1309799717"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1309799717", + ["text"] = "Small Passive Skills in Radius also grant #% increased Chaos Damage", + ["type"] = "explicit", + }, + }, ["1310194496"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10407,16 +10459,12 @@ return { ["1315743832"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 2, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10428,12 +10476,25 @@ return { ["1316278494"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 2, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1316278494", + ["text"] = "#% increased Warcry Speed", + ["type"] = "explicit", + }, + }, + ["1320662475"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["RadiusJewel"] = { ["max"] = 3, ["min"] = 2, @@ -10441,8 +10502,76 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1316278494", - ["text"] = "#% increased Warcry Speed", + ["id"] = "explicit.stat_1320662475", + ["text"] = "Small Passive Skills in Radius also grant #% increased Thorns damage", + ["type"] = "explicit", + }, + }, + ["1321104829"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1321104829", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Ailments you inflict", + ["type"] = "explicit", + }, + }, + ["1323216174"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1323216174", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Ignite, Shock and Chill on Enemies", + ["type"] = "explicit", + }, + }, + ["1337740333"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1337740333", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage", + ["type"] = "explicit", + }, + }, + ["1352561456"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1352561456", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus for Attack Damage", ["type"] = "explicit", }, }, @@ -10542,6 +10671,23 @@ return { }, ["usePositiveSign"] = true, }, + ["138421180"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_138421180", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus with Spears", + ["type"] = "explicit", + }, + }, ["1389153006"] = { ["Amulet"] = { ["max"] = 30, @@ -10558,7 +10704,7 @@ return { ["1389754388"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, @@ -10568,6 +10714,19 @@ return { ["max"] = 33, ["min"] = 4, }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1389754388", + ["text"] = "#% increased Charm Effect Duration", + ["type"] = "explicit", + }, + }, + ["139889694"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["RadiusJewel"] = { ["max"] = 2, ["min"] = 1, @@ -10575,24 +10734,20 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1389754388", - ["text"] = "#% increased Charm Effect Duration", + ["id"] = "explicit.stat_139889694", + ["text"] = "Small Passive Skills in Radius also grant #% increased Fire Damage", ["type"] = "explicit", }, }, ["1405298142"] = { ["AnyJewel"] = { ["max"] = 25, - ["min"] = 2, + ["min"] = 15, }, ["BaseJewel"] = { ["max"] = 25, ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10609,113 +10764,229 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1412217137", - ["text"] = "#% increased Flask Mana Recovery rate", + ["id"] = "explicit.stat_1412217137", + ["text"] = "#% increased Flask Mana Recovery rate", + ["type"] = "explicit", + }, + }, + ["1417267954"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1417267954", + ["text"] = "Small Passive Skills in Radius also grant #% increased Global Physical Damage", + ["type"] = "explicit", + }, + }, + ["1423639565"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["BaseJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1423639565", + ["text"] = "Minions have #% to all Elemental Resistances", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["1426522529"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1426522529", + ["text"] = "Small Passive Skills in Radius also grant #% increased Attack Damage", + ["type"] = "explicit", + }, + }, + ["1432756708"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1432756708", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", + }, + }, + ["1444556985"] = { + ["Amulet"] = { + ["max"] = 24, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1444556985", + ["text"] = "#% of Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, + ["145497481"] = { + ["AnyJewel"] = { + ["max"] = 32, + ["min"] = 18, + }, + ["BaseJewel"] = { + ["max"] = 32, + ["min"] = 18, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_145497481", + ["text"] = "#% increased Defences from Equipped Shield", ["type"] = "explicit", }, }, - ["1423639565"] = { + ["1459321413"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 10, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1423639565", - ["text"] = "Minions have #% to all Elemental Resistances", + ["id"] = "explicit.stat_1459321413", + ["text"] = "#% increased Bleeding Duration", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, - ["1444556985"] = { - ["Amulet"] = { - ["max"] = 24, - ["min"] = 10, - }, + ["147764878"] = { ["AnyJewel"] = { ["max"] = 3, - ["min"] = 1, + ["min"] = 2, }, - ["BaseJewel"] = { + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_147764878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Hits against Rare and Unique Enemies", + ["type"] = "explicit", + }, + }, + ["1494950893"] = { + ["AnyJewel"] = { ["max"] = 3, ["min"] = 2, }, ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1444556985", - ["text"] = "#% of Damage taken Recouped as Life", + ["id"] = "explicit.stat_1494950893", + ["text"] = "Small Passive Skills in Radius also grant Companions deal #% increased Damage", ["type"] = "explicit", }, }, - ["145497481"] = { + ["1495814176"] = { ["AnyJewel"] = { - ["max"] = 32, + ["max"] = 12, ["min"] = 8, }, - ["BaseJewel"] = { - ["max"] = 32, - ["min"] = 18, - }, ["RadiusJewel"] = { - ["max"] = 15, + ["max"] = 12, ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_145497481", - ["text"] = "#% increased Defences from Equipped Shield", + ["id"] = "explicit.stat_1495814176", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Threshold while Parrying", ["type"] = "explicit", }, }, - ["1459321413"] = { + ["1505023559"] = { ["AnyJewel"] = { - ["max"] = 10, + ["max"] = 7, ["min"] = 3, }, - ["BaseJewel"] = { + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1505023559", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Bleeding Duration", + ["type"] = "explicit", + }, + }, + ["1514844108"] = { + ["AnyJewel"] = { ["max"] = 10, ["min"] = 5, }, ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1459321413", - ["text"] = "#% increased Bleeding Duration", + ["id"] = "explicit.stat_1514844108", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Parried Debuff Duration", ["type"] = "explicit", }, }, ["153777645"] = { ["AnyJewel"] = { ["max"] = 12, - ["min"] = 3, + ["min"] = 8, }, ["BaseJewel"] = { ["max"] = 12, ["min"] = 8, }, - ["RadiusJewel"] = { - ["max"] = 6, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10750,19 +11021,32 @@ return { }, ["usePositiveSign"] = true, }, + ["1552666713"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1552666713", + ["text"] = "Small Passive Skills in Radius also grant #% increased Energy Shield Recharge Rate", + ["type"] = "explicit", + }, + }, ["1569101201"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 2, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10774,16 +11058,12 @@ return { ["1569159338"] = { ["AnyJewel"] = { ["max"] = 25, - ["min"] = 2, + ["min"] = 15, }, ["BaseJewel"] = { ["max"] = 25, ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10855,16 +11135,12 @@ return { ["1585769763"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 3, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 10, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10876,12 +11152,25 @@ return { ["1589917703"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1589917703", + ["text"] = "Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, + ["1590846356"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["RadiusJewel"] = { ["max"] = 2, ["min"] = 1, @@ -10889,24 +11178,20 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1589917703", - ["text"] = "Minions deal #% increased Damage", + ["id"] = "explicit.stat_1590846356", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Plant Skills", ["type"] = "explicit", }, }, ["1594812856"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 2, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10941,6 +11226,23 @@ return { }, ["usePositiveSign"] = true, }, + ["1602294220"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1602294220", + ["text"] = "Small Passive Skills in Radius also grant #% increased Warcry Speed", + ["type"] = "explicit", + }, + }, ["1604736568"] = { ["AnyJewel"] = { ["max"] = 2, @@ -10950,15 +11252,28 @@ return { ["max"] = 2, ["min"] = 1, }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1604736568", + ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", + ["type"] = "explicit", + }, + }, + ["1653682082"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["RadiusJewel"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1604736568", - ["text"] = "Recover #% of maximum Mana on Kill (Jewel)", + ["id"] = "explicit.stat_1653682082", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Stun Threshold equal to #% of maximum Energy Shield", ["type"] = "explicit", }, }, @@ -11025,16 +11340,12 @@ return { ["1697447343"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 5, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11046,16 +11357,12 @@ return { ["1697951953"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 2, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11067,16 +11374,12 @@ return { ["169946467"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11088,16 +11391,12 @@ return { ["1714971114"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 2, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11166,19 +11465,33 @@ return { ["type"] = "explicit", }, }, + ["1756380435"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1756380435", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, ["1772247089"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 3, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11187,19 +11500,32 @@ return { ["type"] = "explicit", }, }, + ["1773308808"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1773308808", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flask Effect Duration", + ["type"] = "explicit", + }, + }, ["1776411443"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11208,10 +11534,27 @@ return { ["type"] = "explicit", }, }, + ["1777421941"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1777421941", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Projectile Speed", + ["type"] = "explicit", + }, + }, ["1782086450"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 15, @@ -11225,15 +11568,28 @@ return { ["max"] = 55, ["min"] = 26, }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1782086450", + ["text"] = "#% faster start of Energy Shield Recharge", + ["type"] = "explicit", + }, + }, + ["179541474"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 5, + ["max"] = 3, + ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1782086450", - ["text"] = "#% faster start of Energy Shield Recharge", + ["id"] = "explicit.stat_179541474", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Effect of your Mark Skills", ["type"] = "explicit", }, }, @@ -11254,19 +11610,32 @@ return { ["type"] = "explicit", }, }, + ["1800303440"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1800303440", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to Pierce an Enemy", + ["type"] = "explicit", + }, + }, ["1805182458"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 2, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11278,16 +11647,12 @@ return { ["1829102168"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 3, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 10, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11296,10 +11661,27 @@ return { ["type"] = "explicit", }, }, + ["1834658952"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1834658952", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage against Enemies with Fully Broken Armour", + ["type"] = "explicit", + }, + }, ["1836676211"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 3, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 10, @@ -11309,10 +11691,6 @@ return { ["max"] = 40, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11324,12 +11702,43 @@ return { ["1839076647"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1839076647", + ["text"] = "#% increased Projectile Damage", + ["type"] = "explicit", + }, + }, + ["1846980580"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1846980580", + ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", + ["type"] = "explicit", + }, + ["usePositiveSign"] = true, + }, + ["1852184471"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["RadiusJewel"] = { ["max"] = 2, ["min"] = 1, @@ -11337,24 +11746,20 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1839076647", - ["text"] = "#% increased Projectile Damage", + ["id"] = "explicit.stat_1852184471", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Maces", ["type"] = "explicit", }, }, ["1852872083"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 2, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11366,16 +11771,12 @@ return { ["1854213750"] = { ["AnyJewel"] = { ["max"] = 25, - ["min"] = 6, + ["min"] = 15, }, ["BaseJewel"] = { ["max"] = 25, ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11387,16 +11788,12 @@ return { ["1869147066"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 8, + ["min"] = 15, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11488,19 +11885,49 @@ return { ["type"] = "explicit", }, }, + ["1892122971"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1892122971", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage if you have Consumed a Corpse Recently", + ["type"] = "explicit", + }, + }, + ["1896066427"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1896066427", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Cold Resistance", + ["type"] = "explicit", + }, + }, ["1911237468"] = { ["AnyJewel"] = { ["max"] = 25, - ["min"] = 8, + ["min"] = 15, }, ["BaseJewel"] = { ["max"] = 25, ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11558,6 +11985,23 @@ return { ["type"] = "explicit", }, }, + ["1944020877"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1944020877", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Pin Buildup", + ["type"] = "explicit", + }, + }, ["1978899297"] = { ["Shield"] = { ["max"] = 2, @@ -11572,6 +12016,23 @@ return { }, ["usePositiveSign"] = true, }, + ["1994296038"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1994296038", + ["text"] = "Small Passive Skills in Radius also grant #% increased Evasion Rating", + ["type"] = "explicit", + }, + }, ["1998951374"] = { ["1HWeapon"] = { ["max"] = 16, @@ -11621,16 +12082,12 @@ return { ["2011656677"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 3, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 10, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11648,10 +12105,6 @@ return { ["max"] = 2, ["min"] = 1, }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11660,6 +12113,57 @@ return { ["type"] = "explicit", }, }, + ["2056107438"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2056107438", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, + ["2066964205"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2066964205", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["2077117738"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2077117738", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + }, ["2081918629"] = { ["specialCaseData"] = { }, @@ -11706,31 +12210,61 @@ return { ["max"] = 28, ["min"] = 5, }, - ["Talisman"] = { - ["max"] = 28, - ["min"] = 5, + ["Talisman"] = { + ["max"] = 28, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_210067635", + ["text"] = "#% increased Attack Speed (Local)", + ["type"] = "explicit", + }, + }, + ["2106365538"] = { + ["Amulet"] = { + ["max"] = 50, + ["min"] = 10, + }, + ["AnyJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2106365538", + ["text"] = "#% increased Evasion Rating", + ["type"] = "explicit", + }, + }, + ["21071013"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_210067635", - ["text"] = "#% increased Attack Speed (Local)", + ["id"] = "explicit.stat_21071013", + ["text"] = "Herald Skills deal #% increased Damage", ["type"] = "explicit", }, }, - ["2106365538"] = { - ["Amulet"] = { - ["max"] = 50, - ["min"] = 10, - }, + ["2107703111"] = { ["AnyJewel"] = { - ["max"] = 20, + ["max"] = 3, ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 20, - ["min"] = 10, - }, ["RadiusJewel"] = { ["max"] = 3, ["min"] = 2, @@ -11738,45 +12272,37 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2106365538", - ["text"] = "#% increased Evasion Rating", + ["id"] = "explicit.stat_2107703111", + ["text"] = "Small Passive Skills in Radius also grant Offerings have #% increased Maximum Life", ["type"] = "explicit", }, }, - ["21071013"] = { + ["2108821127"] = { ["AnyJewel"] = { - ["max"] = 25, + ["max"] = 3, ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, ["RadiusJewel"] = { - ["max"] = 4, + ["max"] = 3, ["min"] = 2, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_21071013", - ["text"] = "Herald Skills deal #% increased Damage", + ["id"] = "explicit.stat_2108821127", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Damage", ["type"] = "explicit", }, }, ["2112395885"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 2, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11788,16 +12314,12 @@ return { ["2118708619"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 2, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11815,6 +12337,23 @@ return { ["type"] = "explicit", }, }, + ["2131720304"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2131720304", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage when Hit by an Enemy", + ["type"] = "explicit", + }, + }, ["2144192055"] = { ["Ring"] = { ["max"] = 203, @@ -11829,6 +12368,23 @@ return { }, ["usePositiveSign"] = true, }, + ["2149603090"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2149603090", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Cooldown Recovery Rate", + ["type"] = "explicit", + }, + }, ["2160282525"] = { ["Boots"] = { ["max"] = 60, @@ -11871,16 +12427,12 @@ return { ["2174054121"] = { ["AnyJewel"] = { ["max"] = 7, - ["min"] = 1, + ["min"] = 3, }, ["BaseJewel"] = { ["max"] = 7, ["min"] = 3, }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11892,7 +12444,7 @@ return { ["2194114101"] = { ["AnyJewel"] = { ["max"] = 16, - ["min"] = 3, + ["min"] = 6, }, ["BaseJewel"] = { ["max"] = 16, @@ -11902,6 +12454,36 @@ return { ["max"] = 38, ["min"] = 10, }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2194114101", + ["text"] = "#% increased Critical Hit Chance for Attacks", + ["type"] = "explicit", + }, + }, + ["2202308025"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2202308025", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Use Speed", + ["type"] = "explicit", + }, + }, + ["221701169"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["RadiusJewel"] = { ["max"] = 7, ["min"] = 3, @@ -11909,24 +12491,20 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2194114101", - ["text"] = "#% increased Critical Hit Chance for Attacks", + ["id"] = "explicit.stat_221701169", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Poison Duration", ["type"] = "explicit", }, }, ["2222186378"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11955,7 +12533,7 @@ return { }, ["AnyJewel"] = { ["max"] = 15, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, @@ -11965,10 +12543,6 @@ return { ["max"] = 89, ["min"] = 25, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["Ring"] = { ["max"] = 30, ["min"] = 3, @@ -12002,10 +12576,6 @@ return { ["max"] = 35, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12040,19 +12610,49 @@ return { }, ["usePositiveSign"] = true, }, + ["2256120736"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2256120736", + ["text"] = "Notable Passive Skills in Radius also grant Debuffs on you expire #% faster", + ["type"] = "explicit", + }, + }, + ["2272980012"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2272980012", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Duration of Damaging Ailments on Enemies", + ["type"] = "explicit", + }, + }, ["2301718443"] = { ["AnyJewel"] = { ["max"] = 25, - ["min"] = 2, + ["min"] = 15, }, ["BaseJewel"] = { ["max"] = 25, ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12061,10 +12661,27 @@ return { ["type"] = "explicit", }, }, + ["2320654813"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2320654813", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Charm Charges gained", + ["type"] = "explicit", + }, + }, ["2321178454"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 5, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, @@ -12074,10 +12691,6 @@ return { ["max"] = 26, ["min"] = 12, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12086,10 +12699,27 @@ return { ["type"] = "explicit", }, }, + ["2334956771"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2334956771", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "explicit", + }, + }, ["2339757871"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 2, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, @@ -12111,10 +12741,6 @@ return { ["max"] = 45, ["min"] = 26, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["Shield"] = { ["max"] = 55, ["min"] = 26, @@ -12130,16 +12756,12 @@ return { ["234296660"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 2, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12148,70 +12770,113 @@ return { ["type"] = "explicit", }, }, - ["2347036682"] = { - ["1HWeapon"] = { - ["max"] = 30.5, - ["min"] = 2, - }, - ["Sceptre"] = { - ["max"] = 30.5, - ["min"] = 2, + ["2347036682"] = { + ["1HWeapon"] = { + ["max"] = 30.5, + ["min"] = 2, + }, + ["Sceptre"] = { + ["max"] = 30.5, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2347036682", + ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", + ["type"] = "explicit", + }, + }, + ["2353576063"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["BaseJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2353576063", + ["text"] = "#% increased Curse Magnitudes", + ["type"] = "explicit", + }, + }, + ["2359002191"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2359002191", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + }, + ["2365392475"] = { + ["Charm"] = { + ["max"] = 350, + ["min"] = 8, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2347036682", - ["text"] = "Allies in your Presence deal # to # added Attack Cold Damage", + ["id"] = "explicit.stat_2365392475", + ["text"] = "Recover # Life when Used", ["type"] = "explicit", }, }, - ["2353576063"] = { + ["2374711847"] = { ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 1, - }, - ["BaseJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["max"] = 12, + ["min"] = 6, }, ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = 12, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2353576063", - ["text"] = "#% increased Curse Magnitudes", + ["id"] = "explicit.stat_2374711847", + ["text"] = "Notable Passive Skills in Radius also grant Offering Skills have #% increased Duration", ["type"] = "explicit", }, }, - ["2365392475"] = { - ["Charm"] = { - ["max"] = 350, - ["min"] = 8, + ["2392824305"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 6, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2365392475", - ["text"] = "Recover # Life when Used", + ["id"] = "explicit.stat_2392824305", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup with Maces", ["type"] = "explicit", }, }, ["239367161"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 5, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12233,15 +12898,45 @@ return { ["type"] = "explicit", }, }, + ["2421151933"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2421151933", + ["text"] = "Small Passive Skills in Radius also grant #% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", + ["type"] = "explicit", + }, + }, ["2440073079"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2440073079", + ["text"] = "#% increased Damage while Shapeshifted", + ["type"] = "explicit", + }, + }, + ["2442527254"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["RadiusJewel"] = { ["max"] = 2, ["min"] = 1, @@ -12249,8 +12944,8 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2440073079", - ["text"] = "#% increased Damage while Shapeshifted", + ["id"] = "explicit.stat_2442527254", + ["text"] = "Small Passive Skills in Radius also grant #% increased Cold Damage", ["type"] = "explicit", }, }, @@ -12286,16 +12981,12 @@ return { ["2456523742"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 5, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12322,19 +13013,32 @@ return { }, ["usePositiveSign"] = true, }, + ["2466785537"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2466785537", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Spell Damage Bonus", + ["type"] = "explicit", + }, + }, ["2480498143"] = { ["AnyJewel"] = { ["max"] = 6, - ["min"] = 2, + ["min"] = 4, }, ["BaseJewel"] = { ["max"] = 6, ["min"] = 4, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12363,16 +13067,12 @@ return { }, ["AnyJewel"] = { ["max"] = 20, - ["min"] = 2, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12384,16 +13084,12 @@ return { ["2487305362"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 3, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12499,16 +13195,12 @@ return { ["2518900926"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12520,21 +13212,51 @@ return { ["2527686725"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 10, }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "explicit", + }, + }, + ["2534359663"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2534359663", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["253641217"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, ["RadiusJewel"] = { ["max"] = 7, - ["min"] = 5, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2527686725", - ["text"] = "#% increased Magnitude of Shock you inflict", + ["id"] = "explicit.stat_253641217", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Ignite Magnitude", ["type"] = "explicit", }, }, @@ -12568,6 +13290,41 @@ return { ["type"] = "explicit", }, }, + ["255840549"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_255840549", + ["text"] = "Small Passive Skills in Radius also grant #% increased Hazard Damage", + ["type"] = "explicit", + }, + }, + ["2580617872"] = { + ["AnyJewel"] = { + ["max"] = -2, + ["min"] = -5, + }, + ["RadiusJewel"] = { + ["max"] = -2, + ["min"] = -5, + }, + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2580617872", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Slowing Potency of Debuffs on You", + ["type"] = "explicit", + }, + }, ["2582079000"] = { ["specialCaseData"] = { ["overrideModLinePlural"] = "+# Charm Slots", @@ -12582,16 +13339,12 @@ return { ["2594634307"] = { ["AnyJewel"] = { ["max"] = 32, - ["min"] = 3, + ["min"] = 18, }, ["BaseJewel"] = { ["max"] = 32, ["min"] = 18, }, - ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12600,19 +13353,32 @@ return { ["type"] = "explicit", }, }, + ["2610562860"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2610562860", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Blind Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, ["2637470878"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 5, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12621,6 +13387,23 @@ return { ["type"] = "explicit", }, }, + ["2638756573"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2638756573", + ["text"] = "Small Passive Skills in Radius also grant Companions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, ["2639966148"] = { ["specialCaseData"] = { }, @@ -12633,12 +13416,25 @@ return { ["2653955271"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 10, ["min"] = 5, }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2653955271", + ["text"] = "Damage Penetrates #% Fire Resistance", + ["type"] = "explicit", + }, + }, + ["266564538"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["RadiusJewel"] = { ["max"] = 2, ["min"] = 1, @@ -12646,8 +13442,8 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2653955271", - ["text"] = "Damage Penetrates #% Fire Resistance", + ["id"] = "explicit.stat_266564538", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while Shapeshifted", ["type"] = "explicit", }, }, @@ -12660,6 +13456,15 @@ return { ["type"] = "explicit", }, }, + ["2675129731"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2675129731", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Warcry Buff Effect", + ["type"] = "explicit", + }, + }, ["2676834156"] = { ["Charm"] = { ["max"] = 500, @@ -12668,8 +13473,25 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2676834156", - ["text"] = "Also grants # Guard", + ["id"] = "explicit.stat_2676834156", + ["text"] = "Also grants # Guard", + ["type"] = "explicit", + }, + }, + ["2690740379"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2690740379", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Duration", ["type"] = "explicit", }, }, @@ -12726,16 +13548,12 @@ return { ["2696027455"] = { ["AnyJewel"] = { ["max"] = 16, - ["min"] = 1, + ["min"] = 6, }, ["BaseJewel"] = { ["max"] = 16, ["min"] = 6, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12744,6 +13562,23 @@ return { ["type"] = "explicit", }, }, + ["2704905000"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2704905000", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Spells", + ["type"] = "explicit", + }, + }, ["2709367754"] = { ["AnyJewel"] = { ["max"] = 1, @@ -12753,6 +13588,19 @@ return { ["max"] = 1, ["min"] = 1, }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2709367754", + ["text"] = "Gain # Rage on Melee Hit", + ["type"] = "explicit", + }, + }, + ["2709646369"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["RadiusJewel"] = { ["max"] = 1, ["min"] = 1, @@ -12760,24 +13608,20 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2709367754", - ["text"] = "Gain # Rage on Melee Hit", + ["id"] = "explicit.stat_2709646369", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage is taken from Mana before Life", ["type"] = "explicit", }, }, ["2720982137"] = { ["AnyJewel"] = { ["max"] = 25, - ["min"] = 3, + ["min"] = 15, }, ["BaseJewel"] = { ["max"] = 25, ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12786,6 +13630,23 @@ return { ["type"] = "explicit", }, }, + ["2726713579"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2726713579", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Life on Kill", + ["type"] = "explicit", + }, + }, ["274716455"] = { ["1HWeapon"] = { ["max"] = 39, @@ -12797,7 +13658,7 @@ return { }, ["AnyJewel"] = { ["max"] = 20, - ["min"] = 5, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, @@ -12807,10 +13668,6 @@ return { ["max"] = 34, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["Staff"] = { ["max"] = 59, ["min"] = 15, @@ -12873,6 +13730,40 @@ return { ["type"] = "explicit", }, }, + ["2768899959"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2768899959", + ["text"] = "Small Passive Skills in Radius also grant #% increased Lightning Damage", + ["type"] = "explicit", + }, + }, + ["2770044702"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2770044702", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Curse Magnitudes", + ["type"] = "explicit", + }, + }, ["2797971005"] = { ["Gloves"] = { ["max"] = 5, @@ -12889,16 +13780,12 @@ return { ["280731498"] = { ["AnyJewel"] = { ["max"] = 6, - ["min"] = 2, + ["min"] = 4, }, ["BaseJewel"] = { ["max"] = 6, ["min"] = 4, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12907,40 +13794,83 @@ return { ["type"] = "explicit", }, }, + ["2809428780"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2809428780", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Spears", + ["type"] = "explicit", + }, + }, + ["2822644689"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2822644689", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed", + ["type"] = "explicit", + }, + }, ["2839066308"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2839066308", + ["text"] = "#% increased amount of Mana Leeched", + ["type"] = "explicit", + }, + }, + ["2840989393"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["RadiusJewel"] = { - ["max"] = 2, + ["max"] = 1, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_2839066308", - ["text"] = "#% increased amount of Mana Leeched", + ["id"] = "explicit.stat_2840989393", + ["text"] = "Small Passive Skills in Radius also grant #% chance to Poison on Hit", ["type"] = "explicit", }, }, ["2843214518"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12949,6 +13879,23 @@ return { ["type"] = "explicit", }, }, + ["2849546516"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2849546516", + ["text"] = "Notable Passive Skills in Radius also grant Meta Skills gain #% increased Energy", + ["type"] = "explicit", + }, + }, ["2854751904"] = { ["1HWeapon"] = { ["max"] = 37.5, @@ -12973,16 +13920,12 @@ return { }, ["AnyJewel"] = { ["max"] = 20, - ["min"] = 2, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13012,6 +13955,23 @@ return { ["type"] = "explicit", }, }, + ["288364275"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_288364275", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["type"] = "explicit", + }, + }, ["2891184298"] = { ["1HWeapon"] = { ["max"] = 35, @@ -13027,7 +13987,7 @@ return { }, ["AnyJewel"] = { ["max"] = 4, - ["min"] = 1, + ["min"] = 2, }, ["BaseJewel"] = { ["max"] = 4, @@ -13037,10 +13997,6 @@ return { ["max"] = 32, ["min"] = 9, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["Ring"] = { ["max"] = 24, ["min"] = 9, @@ -13100,6 +14056,40 @@ return { }, ["usePositiveSign"] = true, }, + ["2907381231"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2907381231", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Glory generation for Banner Skills", + ["type"] = "explicit", + }, + }, + ["2912416697"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2912416697", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Blind Effect", + ["type"] = "explicit", + }, + }, ["2923486259"] = { ["Amulet"] = { ["max"] = 27, @@ -13157,16 +14147,12 @@ return { }, ["AnyJewel"] = { ["max"] = 20, - ["min"] = 2, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["Staff"] = { ["max"] = 100, ["min"] = 51, @@ -13183,19 +14169,32 @@ return { ["type"] = "explicit", }, }, + ["2954360902"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2954360902", + ["text"] = "Small Passive Skills in Radius also grant Minions deal #% increased Damage", + ["type"] = "explicit", + }, + }, ["2957407601"] = { ["AnyJewel"] = { ["max"] = 25, - ["min"] = 6, + ["min"] = 15, }, ["BaseJewel"] = { ["max"] = 25, ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13214,16 +14213,12 @@ return { ["min"] = 51, }, ["AnyJewel"] = { - ["max"] = 20, - ["min"] = 2, - }, - ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["BaseJewel"] = { + ["max"] = 20, + ["min"] = 10, }, ["Staff"] = { ["max"] = 100, @@ -13241,6 +14236,23 @@ return { ["type"] = "explicit", }, }, + ["2969557004"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2969557004", + ["text"] = "Notable Passive Skills in Radius also grant Gain # Rage on Melee Hit", + ["type"] = "explicit", + }, + }, ["2970621759"] = { ["Gloves"] = { ["max"] = 30, @@ -13269,7 +14281,7 @@ return { }, ["AnyJewel"] = { ["max"] = 15, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, @@ -13279,10 +14291,6 @@ return { ["max"] = 89, ["min"] = 25, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["Staff"] = { ["max"] = 238, ["min"] = 50, @@ -13299,19 +14307,32 @@ return { ["type"] = "explicit", }, }, + ["2976476845"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_2976476845", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Knockback Distance", + ["type"] = "explicit", + }, + }, ["3003542304"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13329,10 +14350,6 @@ return { ["max"] = 1, ["min"] = 1, }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13421,16 +14438,12 @@ return { ["3028809864"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 2, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13560,6 +14573,23 @@ return { ["type"] = "explicit", }, }, + ["30438393"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_30438393", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% additional Physical Damage Reduction", + ["type"] = "explicit", + }, + }, ["3057012405"] = { ["1HWeapon"] = { ["max"] = 39, @@ -13577,19 +14607,32 @@ return { ["type"] = "explicit", }, }, + ["3065378291"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3065378291", + ["text"] = "Small Passive Skills in Radius also grant Herald Skills deal #% increased Damage", + ["type"] = "explicit", + }, + }, ["3067892458"] = { ["AnyJewel"] = { ["max"] = 18, - ["min"] = 2, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 18, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13598,15 +14641,45 @@ return { ["type"] = "explicit", }, }, + ["3088348485"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3088348485", + ["text"] = "Small Passive Skills in Radius also grant #% increased Charm Effect Duration", + ["type"] = "explicit", + }, + }, ["3091578504"] = { ["AnyJewel"] = { ["max"] = 4, - ["min"] = 1, + ["min"] = 2, }, ["BaseJewel"] = { ["max"] = 4, ["min"] = 2, }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3091578504", + ["text"] = "Minions have #% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + }, + ["3106718406"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["RadiusJewel"] = { ["max"] = 2, ["min"] = 1, @@ -13614,24 +14687,37 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3091578504", - ["text"] = "Minions have #% increased Attack and Cast Speed", + ["id"] = "explicit.stat_3106718406", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Attack and Cast Speed", + ["type"] = "explicit", + }, + }, + ["3113764475"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3113764475", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Effect Duration", ["type"] = "explicit", }, }, ["3119612865"] = { ["AnyJewel"] = { ["max"] = 16, - ["min"] = 1, + ["min"] = 6, }, ["BaseJewel"] = { ["max"] = 16, ["min"] = 6, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13643,16 +14729,12 @@ return { ["3141070085"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13670,10 +14752,6 @@ return { ["max"] = 1, ["min"] = 1, }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13698,16 +14776,12 @@ return { ["3166958180"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 3, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13726,19 +14800,49 @@ return { }, ["usePositiveSign"] = true, }, + ["3171212276"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3171212276", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Mana Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["3173882956"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3173882956", + ["text"] = "Notable Passive Skills in Radius also grant Damaging Ailments deal damage #% faster", + ["type"] = "explicit", + }, + }, ["3174700878"] = { ["AnyJewel"] = { ["max"] = 50, - ["min"] = 15, + ["min"] = 30, }, ["BaseJewel"] = { ["max"] = 50, ["min"] = 30, }, - ["RadiusJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13755,68 +14859,138 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3175163625", - ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["id"] = "explicit.stat_3175163625", + ["text"] = "#% increased Quantity of Gold Dropped by Slain Enemies", + ["type"] = "explicit", + }, + }, + ["318092306"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_318092306", + ["text"] = "Small Passive Skills in Radius also grant Attack Hits apply Incision", + ["type"] = "explicit", + }, + }, + ["318953428"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["BaseJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_318953428", + ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["type"] = "explicit", + }, + }, + ["3192728503"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["BaseJewel"] = { + ["max"] = 15, + ["min"] = 10, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3192728503", + ["text"] = "#% increased Crossbow Reload Speed", + ["type"] = "explicit", + }, + }, + ["3196823591"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3196823591", + ["text"] = "#% increased Charges gained", + ["type"] = "explicit", + }, + }, + ["3222402650"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3222402650", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Damage", ["type"] = "explicit", }, }, - ["318953428"] = { + ["3225608889"] = { ["AnyJewel"] = { - ["max"] = 7, + ["max"] = 2, ["min"] = 1, }, - ["BaseJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["RadiusJewel"] = { - ["max"] = 1, + ["max"] = 2, ["min"] = 1, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_318953428", - ["text"] = "#% chance to Blind Enemies on Hit with Attacks", + ["id"] = "explicit.stat_3225608889", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", ["type"] = "explicit", }, + ["usePositiveSign"] = true, }, - ["3192728503"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 5, - }, - ["BaseJewel"] = { - ["max"] = 15, - ["min"] = 10, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, + ["3233599707"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3192728503", - ["text"] = "#% increased Crossbow Reload Speed", + ["id"] = "explicit.stat_3233599707", + ["text"] = "#% increased Weapon Swap Speed", ["type"] = "explicit", }, }, - ["3196823591"] = { + ["3243034867"] = { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3196823591", - ["text"] = "#% increased Charges gained", + ["id"] = "explicit.stat_3243034867", + ["text"] = "Notable Passive Skills in Radius also grant Aura Skills have #% increased Magnitudes", ["type"] = "explicit", }, }, - ["3233599707"] = { + ["3256879910"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3233599707", - ["text"] = "#% increased Weapon Swap Speed", + ["id"] = "explicit.stat_3256879910", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Regeneration Rate", ["type"] = "explicit", }, }, @@ -13979,16 +15153,12 @@ return { ["3283482523"] = { ["AnyJewel"] = { ["max"] = 4, - ["min"] = 1, + ["min"] = 2, }, ["BaseJewel"] = { ["max"] = 4, ["min"] = 2, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14082,7 +15252,7 @@ return { }, ["AnyJewel"] = { ["max"] = 15, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, @@ -14092,10 +15262,6 @@ return { ["max"] = 89, ["min"] = 25, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["Ring"] = { ["max"] = 30, ["min"] = 3, @@ -14125,10 +15291,6 @@ return { ["max"] = 3, ["min"] = 1, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14392,16 +15554,12 @@ return { ["3374165039"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 2, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14413,16 +15571,12 @@ return { ["3377888098"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 3, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 10, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14431,19 +15585,83 @@ return { ["type"] = "explicit", }, }, + ["3386297724"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3386297724", + ["text"] = "Notable Passive Skills in Radius also grant #% of Skill Mana Costs Converted to Life Costs", + ["type"] = "explicit", + }, + }, + ["3391917254"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3391917254", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect", + ["type"] = "explicit", + }, + }, + ["3394832998"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3394832998", + ["text"] = "Notable Passive Skills in Radius also grant #% faster start of Energy Shield Recharge", + ["type"] = "explicit", + }, + }, + ["3395186672"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3395186672", + ["text"] = "Small Passive Skills in Radius also grant Empowered Attacks deal #% increased Damage", + ["type"] = "explicit", + }, + }, ["3398301358"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14455,16 +15673,12 @@ return { ["3401186585"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 5, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14473,19 +15687,32 @@ return { ["type"] = "explicit", }, }, + ["3409275777"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3409275777", + ["text"] = "Small Passive Skills in Radius also grant #% increased Elemental Ailment Threshold", + ["type"] = "explicit", + }, + }, ["3417711605"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 10, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14494,19 +15721,32 @@ return { ["type"] = "explicit", }, }, + ["3419203492"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["RadiusJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3419203492", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Energy Shield from Equipped Focus", + ["type"] = "explicit", + }, + }, ["3473929743"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 5, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14548,16 +15788,12 @@ return { ["3485067555"] = { ["AnyJewel"] = { ["max"] = 25, - ["min"] = 6, + ["min"] = 15, }, ["BaseJewel"] = { ["max"] = 25, ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14580,6 +15816,23 @@ return { }, ["usePositiveSign"] = true, }, + ["3513818125"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3513818125", + ["text"] = "Small Passive Skills in Radius also grant #% increased Shock Duration", + ["type"] = "explicit", + }, + }, ["3523867985"] = { ["Boots"] = { ["max"] = 110, @@ -14608,16 +15861,12 @@ return { ["3544800472"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 2, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14633,7 +15882,7 @@ return { }, ["AnyJewel"] = { ["max"] = 20, - ["min"] = 5, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, @@ -14643,10 +15892,6 @@ return { ["max"] = 34, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14655,10 +15900,27 @@ return { ["type"] = "explicit", }, }, + ["3579898587"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3579898587", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Skill Speed while Shapeshifted", + ["type"] = "explicit", + }, + }, ["3585532255"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 3, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, @@ -14668,10 +15930,6 @@ return { ["max"] = 40, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14683,16 +15941,12 @@ return { ["3590792340"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 5, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14704,21 +15958,34 @@ return { ["3596695232"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 2, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3596695232", + ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["type"] = "explicit", + }, + }, + ["3628935286"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["max"] = 10, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3596695232", - ["text"] = "#% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", + ["id"] = "explicit.stat_3628935286", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Hit Chance", ["type"] = "explicit", }, }, @@ -14808,14 +16075,44 @@ return { ["type"] = "explicit", }, }, - ["3668351662"] = { + ["3641543553"] = { ["AnyJewel"] = { - ["max"] = 25, + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3641543553", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Bows", + ["type"] = "explicit", + }, + }, + ["3665922113"] = { + ["AnyJewel"] = { + ["max"] = 3, ["min"] = 2, }, - ["BaseJewel"] = { - ["max"] = 25, - ["min"] = 15, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3665922113", + ["text"] = "Small Passive Skills in Radius also grant #% increased maximum Energy Shield", + ["type"] = "explicit", + }, + }, + ["3666476747"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, }, ["RadiusJewel"] = { ["max"] = 3, @@ -14823,12 +16120,46 @@ return { }, ["specialCaseData"] = { }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3666476747", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Life Leeched", + ["type"] = "explicit", + }, + }, + ["3668351662"] = { + ["AnyJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["BaseJewel"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, ["tradeMod"] = { ["id"] = "explicit.stat_3668351662", ["text"] = "#% increased Shock Duration", ["type"] = "explicit", }, }, + ["3669820740"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3669820740", + ["text"] = "Notable Passive Skills in Radius also grant #% of Damage taken Recouped as Life", + ["type"] = "explicit", + }, + }, ["3676141501"] = { ["AnyJewel"] = { ["max"] = 1, @@ -14933,10 +16264,27 @@ return { ["type"] = "explicit", }, }, + ["3700202631"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3700202631", + ["text"] = "Small Passive Skills in Radius also grant #% increased amount of Mana Leeched", + ["type"] = "explicit", + }, + }, ["3714003708"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 5, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, @@ -14946,10 +16294,6 @@ return { ["max"] = 39, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14961,16 +16305,12 @@ return { ["3741323227"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 10, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14988,10 +16328,27 @@ return { ["type"] = "explicit", }, }, + ["3752589831"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3752589831", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage while you have an active Charm", + ["type"] = "explicit", + }, + }, ["3759663284"] = { ["AnyJewel"] = { ["max"] = 8, - ["min"] = 2, + ["min"] = 4, }, ["BaseJewel"] = { ["max"] = 8, @@ -15001,10 +16358,6 @@ return { ["max"] = 46, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15016,16 +16369,12 @@ return { ["3759735052"] = { ["AnyJewel"] = { ["max"] = 4, - ["min"] = 1, + ["min"] = 2, }, ["BaseJewel"] = { ["max"] = 4, ["min"] = 2, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15047,19 +16396,32 @@ return { ["type"] = "explicit", }, }, + ["3774951878"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3774951878", + ["text"] = "Small Passive Skills in Radius also grant #% increased Mana Recovery from Flasks", + ["type"] = "explicit", + }, + }, ["3780644166"] = { ["AnyJewel"] = { ["max"] = 32, - ["min"] = 2, + ["min"] = 18, }, ["BaseJewel"] = { ["max"] = 32, ["min"] = 18, }, - ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15071,16 +16433,12 @@ return { ["3787460122"] = { ["AnyJewel"] = { ["max"] = 25, - ["min"] = 2, + ["min"] = 15, }, ["BaseJewel"] = { ["max"] = 25, ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15089,19 +16447,32 @@ return { ["type"] = "explicit", }, }, + ["378796798"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_378796798", + ["text"] = "Small Passive Skills in Radius also grant Minions have #% increased maximum Life", + ["type"] = "explicit", + }, + }, ["3791899485"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 3, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15113,16 +16484,12 @@ return { ["3811191316"] = { ["AnyJewel"] = { ["max"] = 8, - ["min"] = 3, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 8, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15131,19 +16498,32 @@ return { ["type"] = "explicit", }, }, + ["3821543413"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3821543413", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Block chance", + ["type"] = "explicit", + }, + }, ["3824372849"] = { ["AnyJewel"] = { ["max"] = 25, - ["min"] = 2, + ["min"] = 15, }, ["BaseJewel"] = { ["max"] = 25, ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15164,16 +16544,12 @@ return { ["3837707023"] = { ["AnyJewel"] = { ["max"] = 13, - ["min"] = 1, + ["min"] = 7, }, ["BaseJewel"] = { ["max"] = 13, ["min"] = 7, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15204,12 +16580,59 @@ return { ["3851254963"] = { ["AnyJewel"] = { ["max"] = 18, - ["min"] = 2, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 18, ["min"] = 10, }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3851254963", + ["text"] = "#% increased Totem Damage", + ["type"] = "explicit", + }, + }, + ["3855016469"] = { + ["Body Armour"] = { + ["max"] = 50, + ["min"] = 40, + }, + ["Shield"] = { + ["max"] = 54, + ["min"] = 21, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3855016469", + ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["type"] = "explicit", + }, + }, + ["3856744003"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3856744003", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Crossbow Reload Speed", + ["type"] = "explicit", + }, + }, + ["3858398337"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, ["RadiusJewel"] = { ["max"] = 3, ["min"] = 2, @@ -15217,25 +16640,42 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3851254963", - ["text"] = "#% increased Totem Damage", + ["id"] = "explicit.stat_3858398337", + ["text"] = "Small Passive Skills in Radius also grant #% increased Armour", + ["type"] = "explicit", + }, + }, + ["3859848445"] = { + ["AnyJewel"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 6, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3859848445", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Area of Effect of Curses", ["type"] = "explicit", }, }, - ["3855016469"] = { - ["Body Armour"] = { - ["max"] = 50, - ["min"] = 40, + ["3865605585"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, }, - ["Shield"] = { - ["max"] = 54, - ["min"] = 21, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_3855016469", - ["text"] = "Hits against you have #% reduced Critical Damage Bonus", + ["id"] = "explicit.stat_3865605585", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Critical Hit Chance for Attacks", ["type"] = "explicit", }, }, @@ -15298,6 +16738,23 @@ return { ["type"] = "explicit", }, }, + ["391602279"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_391602279", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Bleeding you inflict", + ["type"] = "explicit", + }, + }, ["3917489142"] = { ["Amulet"] = { ["max"] = 19, @@ -15327,6 +16784,40 @@ return { ["type"] = "explicit", }, }, + ["3936121440"] = { + ["AnyJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 5, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3936121440", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Withered Magnitude", + ["type"] = "explicit", + }, + }, + ["394473632"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_394473632", + ["text"] = "Small Passive Skills in Radius also grant #% increased Flammability Magnitude", + ["type"] = "explicit", + }, + }, ["3962278098"] = { ["1HWeapon"] = { ["max"] = 119, @@ -15338,7 +16829,7 @@ return { }, ["AnyJewel"] = { ["max"] = 15, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, @@ -15348,10 +16839,6 @@ return { ["max"] = 89, ["min"] = 25, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["Ring"] = { ["max"] = 30, ["min"] = 3, @@ -15375,16 +16862,12 @@ return { ["3973629633"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 3, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 10, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15431,16 +16914,12 @@ return { ["4009879772"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 5, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15560,19 +17039,32 @@ return { ["type"] = "explicit", }, }, + ["4032352472"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4032352472", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Presence Area of Effect", + ["type"] = "explicit", + }, + }, ["4045894391"] = { ["AnyJewel"] = { ["max"] = 16, - ["min"] = 1, + ["min"] = 6, }, ["BaseJewel"] = { ["max"] = 16, ["min"] = 6, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15713,12 +17205,25 @@ return { ["4081947835"] = { ["AnyJewel"] = { ["max"] = 5, - ["min"] = 1, + ["min"] = 3, }, ["BaseJewel"] = { ["max"] = 5, ["min"] = 3, }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4081947835", + ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["type"] = "explicit", + }, + }, + ["4089835882"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, ["RadiusJewel"] = { ["max"] = 2, ["min"] = 1, @@ -15726,8 +17231,25 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4081947835", - ["text"] = "Projectiles have #% chance to Chain an additional time from terrain", + ["id"] = "explicit.stat_4089835882", + ["text"] = "Small Passive Skills in Radius also grant Break #% increased Armour", + ["type"] = "explicit", + }, + }, + ["4092130601"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4092130601", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Damaging Ailments you inflict with Critical Hits", ["type"] = "explicit", }, }, @@ -15774,6 +17296,23 @@ return { ["type"] = "explicit", }, }, + ["412709880"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_412709880", + ["text"] = "Notable Passive Skills in Radius also grant #% increased chance to inflict Ailments", + ["type"] = "explicit", + }, + }, ["4129825612"] = { ["Body Armour"] = { ["max"] = 15, @@ -15800,19 +17339,32 @@ return { ["type"] = "explicit", }, }, + ["4142814612"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4142814612", + ["text"] = "Small Passive Skills in Radius also grant Banner Skills have #% increased Area of Effect", + ["type"] = "explicit", + }, + }, ["4147897060"] = { ["AnyJewel"] = { ["max"] = 7, - ["min"] = 1, + ["min"] = 3, }, ["BaseJewel"] = { ["max"] = 7, ["min"] = 3, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15824,16 +17376,12 @@ return { ["4159248054"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 3, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15845,16 +17393,12 @@ return { ["416040624"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15863,19 +17407,66 @@ return { ["type"] = "explicit", }, }, + ["4162678661"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4162678661", + ["text"] = "Small Passive Skills in Radius also grant Mark Skills have #% increased Skill Effect Duration", + ["type"] = "explicit", + }, + }, + ["4173554949"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4173554949", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Stun Buildup", + ["type"] = "explicit", + }, + }, + ["4180952808"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4180952808", + ["text"] = "Notable Passive Skills in Radius also grant #% increased bonuses gained from Equipped Quiver", + ["type"] = "explicit", + }, + }, ["4188894176"] = { ["AnyJewel"] = { ["max"] = 16, - ["min"] = 2, + ["min"] = 6, }, ["BaseJewel"] = { ["max"] = 16, ["min"] = 6, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15939,6 +17530,15 @@ return { }, ["usePositiveSign"] = true, }, + ["4225700219"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4225700219", + ["text"] = "Notable Passive Skills in Radius also grant #% chance to gain Volatility on Kill", + ["type"] = "explicit", + }, + }, ["4226189338"] = { ["1HWeapon"] = { ["max"] = 5, @@ -15985,37 +17585,63 @@ return { ["4236566306"] = { ["AnyJewel"] = { ["max"] = 8, - ["min"] = 2, + ["min"] = 4, + }, + ["BaseJewel"] = { + ["max"] = 8, + ["min"] = 4, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4236566306", + ["text"] = "Meta Skills gain #% increased Energy", + ["type"] = "explicit", + }, + }, + ["4258000627"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_4258000627", + ["text"] = "Small Passive Skills in Radius also grant Dazes on Hit", + ["type"] = "explicit", }, - ["BaseJewel"] = { - ["max"] = 8, - ["min"] = 4, + }, + ["4258720395"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 5, }, ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 2, + ["max"] = 7, + ["min"] = 5, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_4236566306", - ["text"] = "Meta Skills gain #% increased Energy", + ["id"] = "explicit.stat_4258720395", + ["text"] = "Notable Passive Skills in Radius also grant Projectiles have #% chance for an additional Projectile when Forking", ["type"] = "explicit", }, }, ["427684353"] = { ["AnyJewel"] = { ["max"] = 16, - ["min"] = 2, + ["min"] = 6, }, ["BaseJewel"] = { ["max"] = 16, ["min"] = 6, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16027,16 +17653,12 @@ return { ["429143663"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 2, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16048,16 +17670,12 @@ return { ["440490623"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 5, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16066,19 +17684,32 @@ return { ["type"] = "explicit", }, }, + ["442393998"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_442393998", + ["text"] = "Small Passive Skills in Radius also grant #% increased Totem Life", + ["type"] = "explicit", + }, + }, ["44972811"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 3, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 10, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16087,19 +17718,32 @@ return { ["type"] = "explicit", }, }, + ["455816363"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_455816363", + ["text"] = "Small Passive Skills in Radius also grant #% increased Projectile Damage", + ["type"] = "explicit", + }, + }, ["458438597"] = { ["AnyJewel"] = { ["max"] = 4, - ["min"] = 1, + ["min"] = 2, }, ["BaseJewel"] = { ["max"] = 4, ["min"] = 2, }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16108,6 +17752,23 @@ return { ["type"] = "explicit", }, }, + ["462424929"] = { + ["AnyJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["RadiusJewel"] = { + ["max"] = 7, + ["min"] = 3, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_462424929", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Magnitude of Poison you inflict", + ["type"] = "explicit", + }, + }, ["472520716"] = { ["Amulet"] = { ["max"] = 24, @@ -16132,16 +17793,12 @@ return { }, ["AnyJewel"] = { ["max"] = 20, - ["min"] = 5, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["Staff"] = { ["max"] = 80, ["min"] = 31, @@ -16158,15 +17815,62 @@ return { ["type"] = "explicit", }, }, + ["473917671"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_473917671", + ["text"] = "Small Passive Skills in Radius also grant Triggered Spells deal #% increased Spell Damage", + ["type"] = "explicit", + }, + }, + ["484792219"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_484792219", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold", + ["type"] = "explicit", + }, + }, ["491450213"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 5, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_491450213", + ["text"] = "Minions have #% increased Critical Hit Chance", + ["type"] = "explicit", + }, + }, + ["504915064"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, ["RadiusJewel"] = { ["max"] = 10, ["min"] = 5, @@ -16174,8 +17878,25 @@ return { ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_491450213", - ["text"] = "Minions have #% increased Critical Hit Chance", + ["id"] = "explicit.stat_504915064", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Armour Break Duration", + ["type"] = "explicit", + }, + }, + ["517664839"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_517664839", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Crossbows", ["type"] = "explicit", }, }, @@ -16242,6 +17963,23 @@ return { ["type"] = "explicit", }, }, + ["525523040"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_525523040", + ["text"] = "Notable Passive Skills in Radius also grant Recover #% of maximum Mana on Kill", + ["type"] = "explicit", + }, + }, ["53045048"] = { ["Boots"] = { ["max"] = 142, @@ -16272,19 +18010,32 @@ return { }, ["usePositiveSign"] = true, }, + ["533892981"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_533892981", + ["text"] = "Small Passive Skills in Radius also grant #% increased Accuracy Rating", + ["type"] = "explicit", + }, + }, ["538241406"] = { ["AnyJewel"] = { ["max"] = 7, - ["min"] = 2, + ["min"] = 3, }, ["BaseJewel"] = { ["max"] = 7, ["min"] = 3, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16345,16 +18096,12 @@ return { ["565784293"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 3, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16370,7 +18117,7 @@ return { }, ["AnyJewel"] = { ["max"] = 15, - ["min"] = 3, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, @@ -16380,10 +18127,6 @@ return { ["max"] = 34, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16418,19 +18161,49 @@ return { }, ["usePositiveSign"] = true, }, + ["593241812"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_593241812", + ["text"] = "Notable Passive Skills in Radius also grant Minions have #% increased Critical Damage Bonus", + ["type"] = "explicit", + }, + }, + ["61644361"] = { + ["AnyJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["RadiusJewel"] = { + ["max"] = 12, + ["min"] = 6, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_61644361", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Chill Duration on Enemies", + ["type"] = "explicit", + }, + }, ["624954515"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 10, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16442,16 +18215,12 @@ return { ["627767961"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 2, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16473,6 +18242,23 @@ return { ["type"] = "explicit", }, }, + ["654207792"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_654207792", + ["text"] = "Small Passive Skills in Radius also grant #% increased Stun Threshold if you haven't been Stunned Recently", + ["type"] = "explicit", + }, + }, ["656461285"] = { ["Amulet"] = { ["max"] = 10, @@ -16547,16 +18333,12 @@ return { ["680068163"] = { ["AnyJewel"] = { ["max"] = 16, - ["min"] = 1, + ["min"] = 6, }, ["BaseJewel"] = { ["max"] = 16, ["min"] = 6, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16568,7 +18350,7 @@ return { ["681332047"] = { ["AnyJewel"] = { ["max"] = 4, - ["min"] = 1, + ["min"] = 2, }, ["BaseJewel"] = { ["max"] = 4, @@ -16582,10 +18364,6 @@ return { ["max"] = 16, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16597,16 +18375,12 @@ return { ["686254215"] = { ["AnyJewel"] = { ["max"] = 20, - ["min"] = 2, + ["min"] = 10, }, ["BaseJewel"] = { ["max"] = 20, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16665,6 +18439,23 @@ return { }, ["usePositiveSign"] = true, }, + ["693237939"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_693237939", + ["text"] = "Small Passive Skills in Radius also grant Gain additional Ailment Threshold equal to #% of maximum Energy Shield", + ["type"] = "explicit", + }, + }, ["700317374"] = { ["LifeFlask"] = { ["max"] = 80, @@ -16751,16 +18542,12 @@ return { ["712554801"] = { ["AnyJewel"] = { ["max"] = 8, - ["min"] = 2, + ["min"] = 4, }, ["BaseJewel"] = { ["max"] = 8, ["min"] = 4, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16769,6 +18556,40 @@ return { ["type"] = "explicit", }, }, + ["713216632"] = { + ["AnyJewel"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["RadiusJewel"] = { + ["max"] = 15, + ["min"] = 8, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_713216632", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Defences from Equipped Shield", + ["type"] = "explicit", + }, + }, + ["715957346"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_715957346", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Crossbows", + ["type"] = "explicit", + }, + }, ["734614379"] = { ["Amulet"] = { ["max"] = 10, @@ -16793,7 +18614,7 @@ return { }, ["AnyJewel"] = { ["max"] = 12, - ["min"] = 1, + ["min"] = 6, }, ["BaseJewel"] = { ["max"] = 12, @@ -16803,10 +18624,6 @@ return { ["max"] = 89, ["min"] = 25, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["Ring"] = { ["max"] = 30, ["min"] = 3, @@ -16838,7 +18655,7 @@ return { }, ["AnyJewel"] = { ["max"] = 15, - ["min"] = 3, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, @@ -16848,10 +18665,6 @@ return { ["max"] = 59, ["min"] = 27, }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["Staff"] = { ["max"] = 109, ["min"] = 40, @@ -16916,16 +18729,12 @@ return { }, ["AnyJewel"] = { ["max"] = 15, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["Sceptre"] = { ["max"] = 50, ["min"] = 21, @@ -16953,7 +18762,7 @@ return { }, ["AnyJewel"] = { ["max"] = 15, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, @@ -16963,10 +18772,6 @@ return { ["max"] = 69, ["min"] = 10, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["Ring"] = { ["max"] = 69, ["min"] = 10, @@ -17032,19 +18837,24 @@ return { ["type"] = "explicit", }, }, + ["793875384"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_793875384", + ["text"] = "Small Passive Skills in Radius also grant #% increased Minion Accuracy Rating", + ["type"] = "explicit", + }, + }, ["795138349"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 10, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17100,16 +18910,12 @@ return { ["818778753"] = { ["AnyJewel"] = { ["max"] = 10, - ["min"] = 1, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 10, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17170,16 +18976,12 @@ return { ["821241191"] = { ["AnyJewel"] = { ["max"] = 15, - ["min"] = 2, + ["min"] = 5, }, ["BaseJewel"] = { ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17188,6 +18990,23 @@ return { ["type"] = "explicit", }, }, + ["821948283"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_821948283", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Quarterstaves", + ["type"] = "explicit", + }, + }, ["828533480"] = { ["specialCaseData"] = { }, @@ -17197,6 +19016,40 @@ return { ["type"] = "explicit", }, }, + ["830345042"] = { + ["AnyJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 4, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_830345042", + ["text"] = "Small Passive Skills in Radius also grant #% increased Freeze Threshold", + ["type"] = "explicit", + }, + }, + ["844449513"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_844449513", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Movement Speed", + ["type"] = "explicit", + }, + }, ["849987426"] = { ["1HWeapon"] = { ["max"] = 37, @@ -17214,19 +19067,32 @@ return { ["type"] = "explicit", }, }, + ["868556494"] = { + ["AnyJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 2, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_868556494", + ["text"] = "Small Passive Skills in Radius also grant Damage Penetrates #% Lightning Resistance", + ["type"] = "explicit", + }, + }, ["872504239"] = { ["AnyJewel"] = { ["max"] = 25, - ["min"] = 6, + ["min"] = 15, }, ["BaseJewel"] = { ["max"] = 25, ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17277,16 +19143,12 @@ return { ["918325986"] = { ["AnyJewel"] = { ["max"] = 4, - ["min"] = 1, + ["min"] = 2, }, ["BaseJewel"] = { ["max"] = 4, ["min"] = 2, }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17347,17 +19209,13 @@ return { }, ["924253255"] = { ["AnyJewel"] = { - ["max"] = 5, + ["max"] = -5, ["min"] = -10, }, ["BaseJewel"] = { ["max"] = -5, ["min"] = -10, }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 2, - }, ["invertOnNegative"] = true, ["specialCaseData"] = { }, @@ -17367,6 +19225,74 @@ return { ["type"] = "explicit", }, }, + ["942519401"] = { + ["AnyJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["RadiusJewel"] = { + ["max"] = 10, + ["min"] = 5, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_942519401", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Life Flask Charges gained", + ["type"] = "explicit", + }, + }, + ["944643028"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_944643028", + ["text"] = "Small Passive Skills in Radius also grant #% chance to inflict Bleeding on Hit", + ["type"] = "explicit", + }, + }, + ["945774314"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_945774314", + ["text"] = "Small Passive Skills in Radius also grant #% increased Damage with Bows", + ["type"] = "explicit", + }, + }, + ["980177976"] = { + ["AnyJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["RadiusJewel"] = { + ["max"] = 3, + ["min"] = 2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_980177976", + ["text"] = "Small Passive Skills in Radius also grant #% increased Life Recovery from Flasks", + ["type"] = "explicit", + }, + }, ["983749596"] = { ["Amulet"] = { ["max"] = 8, @@ -18242,20 +20168,6 @@ return { ["type"] = "implicit", }, }, - ["3489782002"] = { - ["Amulet"] = { - ["max"] = 30, - ["min"] = 20, - }, - ["specialCaseData"] = { - }, - ["tradeMod"] = { - ["id"] = "implicit.stat_3489782002", - ["text"] = "# to maximum Energy Shield", - ["type"] = "implicit", - }, - ["usePositiveSign"] = true, - }, ["3544800472"] = { ["Chest"] = { ["max"] = 40, @@ -20048,7 +21960,7 @@ return { }, }, ["2481353198"] = { - ["Chest"] = { + ["Gloves"] = { ["max"] = 10, ["min"] = 10, }, @@ -21537,6 +23449,10 @@ return { ["max"] = 20, ["min"] = 20, }, + ["Gloves"] = { + ["max"] = 20, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { From 7cf398e0ef2c487ae3662ead5e08083e5f30a19a Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Tue, 21 Apr 2026 09:17:26 +0300 Subject: [PATCH 17/42] Improve rate limit countdown to prevent simplegraphic suspension problems, and to show it on non-429 rate limit. (429 issue solved on GGG's side) --- src/Classes/TradeQuery.lua | 25 +++++++++++++++++-------- src/Classes/TradeQueryRateLimiter.lua | 2 -- src/Classes/TradeQueryRequests.lua | 7 +++++++ 3 files changed, 24 insertions(+), 10 deletions(-) diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index 8634279a11..b3ec228ae7 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -57,18 +57,27 @@ local TradeQueryClass = newClass("TradeQuery", function(self, itemsTab) self.tradeQueryRequests = new("TradeQueryRequests") local function onRateLimit(backoff) self.backoffFinish = get_time() + backoff + self.countDown = coroutine.create(function() + while self.backoffFinish do + local now = get_time() + if self.backoffFinish < (now + 0.5) then + self.backoffFinish = nil + self:SetNotice(self.controls.pbNotice, "") + return + end + local msg = s_format("Rate limited. Retrying after %s seconds...", self.backoffFinish - now) + self:SetNotice(self.controls.pbNotice, colorCodes.WARNING..msg) + coroutine.yield() + end + end) end main.onFrameFuncs["TradeQueryRequests"] = function() self.tradeQueryRequests:ProcessQueue(onRateLimit) - if self.backoffFinish then - local now = get_time() - if self.backoffFinish < now then - self.backoffFinish = nil - self:SetNotice(self.controls.pbNotice, "") - return + if self.countDown then + coroutine.resume(self.countDown) + if coroutine.status(self.countDown) == "dead" then + self.countDown = nil end - local msg = s_format("Rate limited. Retrying after %s seconds...", self.backoffFinish - now) - self:SetNotice(self.controls.pbNotice, colorCodes.WARNING..msg) end end if not main.api then diff --git a/src/Classes/TradeQueryRateLimiter.lua b/src/Classes/TradeQueryRateLimiter.lua index 5a9c675ee4..54d2db18ae 100644 --- a/src/Classes/TradeQueryRateLimiter.lua +++ b/src/Classes/TradeQueryRateLimiter.lua @@ -75,11 +75,9 @@ function TradeQueryRateLimiterClass:ParsePolicy(headerString, policy) local policies = {} local headers = self:ParseHeader(headerString) local policyName = headers["x-rate-limit-policy"] or policy - ConPrintf("policy: %s, headers: %s", policy, headerString) policies[policyName] = {} local retryAfter = headers["retry-after"] if retryAfter then - ConPrintf("retry after: %d", retryAfter) policies[policyName].retryAfter = os.time() + retryAfter end local ruleNames = {} diff --git a/src/Classes/TradeQueryRequests.lua b/src/Classes/TradeQueryRequests.lua index 3376b046b8..fd4b568f82 100644 --- a/src/Classes/TradeQueryRequests.lua +++ b/src/Classes/TradeQueryRequests.lua @@ -26,6 +26,13 @@ function TradeQueryRequestsClass:ProcessQueue(onRateLimit) local policy = self.rateLimiter:GetPolicyName(key) local now = os.time() local timeNext = self.rateLimiter:NextRequestTime(policy, now) + local timeLeft = timeNext - now + -- relay wait info to caller when actually waiting, and not just + -- getting a magic poe2 release date number + if onRateLimit and timeLeft > 1 and timeNext ~= 1956528000 then + ConPrintf(string.format("%d - %d = %d", timeNext, now, timeLeft)) + onRateLimit(timeLeft) + end if not (queue[1].retryTime and now < queue[1].retryTime) then if now >= timeNext then local request = table.remove(queue, 1) From 105ad477b7bff3530a949615aa24948d3198377e Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Tue, 21 Apr 2026 09:53:52 +0300 Subject: [PATCH 18/42] Fix debug print causing crash, and remove extra debug print --- src/Classes/TradeQueryRequests.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Classes/TradeQueryRequests.lua b/src/Classes/TradeQueryRequests.lua index fd4b568f82..5b0cbb36bf 100644 --- a/src/Classes/TradeQueryRequests.lua +++ b/src/Classes/TradeQueryRequests.lua @@ -30,7 +30,6 @@ function TradeQueryRequestsClass:ProcessQueue(onRateLimit) -- relay wait info to caller when actually waiting, and not just -- getting a magic poe2 release date number if onRateLimit and timeLeft > 1 and timeNext ~= 1956528000 then - ConPrintf(string.format("%d - %d = %d", timeNext, now, timeLeft)) onRateLimit(timeLeft) end if not (queue[1].retryTime and now < queue[1].retryTime) then @@ -234,7 +233,7 @@ function TradeQueryRequestsClass:PerformSearch(realm, league, query, callback) errMsg = "[ " .. response.error.code .. ": " .. response.error.message .. " ]" end else - ConPrintf("Found 0 results for " .. self.hostName .. "api/trade2/search/" .. league .. "/" .. response.id) + ConPrintf("Found 0 results for %sapi/trade2/search/%s/%s", self.hostName, league, response.id) errMsg = "No Matching Results Found" end return callback(response, errMsg) From d818c6925f18e1b35b35a4ca7a5ac2ca6ad9a7c0 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Tue, 21 Apr 2026 10:05:03 +0300 Subject: [PATCH 19/42] disable wiping trader controls to fix crash when it is closed and a search tries to add results to controls --- src/Classes/TradeQuery.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index b3ec228ae7..a1ef59a1c7 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -553,7 +553,10 @@ Highest Weight - Displays the order retrieved from trade]] main:ClosePopup() -- there's a case where if you have a socket(s) allocated, open TradeQuery, close it, dealloc, then open TradeQuery again -- the deallocated socket controls were still showing, so this will remove all dynamically created controls from items - wipeItemControls() + + -- later note: this is disabled because it causes the trader to crash if + -- it's closed mid-search + -- wipeItemControls() end) self.controls.updateCurrencyConversion = new("ButtonControl", {"BOTTOMLEFT", nil, "BOTTOMLEFT"}, {pane_margins_horizontal, -pane_margins_vertical, 240, row_height}, "Get Currency Conversion Rates", function() From 53b411d9966e06f54652d8c74a19a927919f977b Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Tue, 21 Apr 2026 10:13:27 +0300 Subject: [PATCH 20/42] Add note about doing weird filter requirements (e.g. adorned) --- src/Classes/TradeQuery.lua | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index a1ef59a1c7..99ed6db79f 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -984,7 +984,10 @@ function TradeQueryClass:PriceItemRowDisplay(row_idx, top_pane_alignment_ref, ro end) controls["bestButton"..row_idx].shown = function() return not self.resultTbl[row_idx] end controls["bestButton"..row_idx].enabled = function() return self.pbLeague end - controls["bestButton"..row_idx].tooltipText = "Creates a weighted search to find the highest Stat Value items for this slot." + controls["bestButton"..row_idx].tooltipText = [[Creates a weighted search to find the highest Stat Value items for this slot. +Note that even if you are authenticated, you can click this button again to show the search link. +If you have additional requirements that the trade tool doesn't cover (e.g. Adorned Magic jewels), +you can add them, copy the link here, and press "Price Item" to evaluate the items.]] local pbURL controls["uri"..row_idx] = new("EditControl", { "TOPLEFT", controls["bestButton"..row_idx], "TOPRIGHT"}, {8, 0, 514, row_height}, nil, nil, "^%C\t\n", nil, function(buf) local subpath = buf:match(self.hostName .. "trade2/search/(.+)$") or "" From e8f676c6ac80a3659cb8f4359887efd8a32e5882 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Tue, 21 Apr 2026 10:54:50 +0300 Subject: [PATCH 21/42] remove whisper for instant buyout items --- src/Classes/TradeQuery.lua | 6 ++++-- src/Classes/TradeQueryRequests.lua | 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index 99ed6db79f..143bd71652 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -1116,7 +1116,9 @@ you can add them, copy the link here, and press "Price Item" to evaluate the ite local price = self.totalPrice[row_idx] and self.totalPrice[row_idx].amount .. " " .. self.totalPrice[row_idx].currency - if itemResult.whisper then + -- we also check the price type so we can prefer instant buyout over + -- whisper + if itemResult.whisper and (itemResult.priceType ~= "~b/o") then return price and "Whisper for " .. price or "Whisper" else return price and "Search for " .. price or "Search" @@ -1124,7 +1126,7 @@ you can add them, copy the link here, and press "Price Item" to evaluate the ite end, function() local itemResult = self.itemIndexTbl[row_idx] and self.resultTbl[row_idx][self.itemIndexTbl[row_idx]] - if itemResult.whisper then + if itemResult.whisper and (itemResult.priceType ~= "~b/o") then Copy(itemResult.whisper) else local exactQuery = dkjson.decode(self.lastQueries[row_idx]) diff --git a/src/Classes/TradeQueryRequests.lua b/src/Classes/TradeQueryRequests.lua index 5b0cbb36bf..f063cd2ee9 100644 --- a/src/Classes/TradeQueryRequests.lua +++ b/src/Classes/TradeQueryRequests.lua @@ -433,6 +433,7 @@ function TradeQueryRequestsClass:FetchResultBlock(url, callback) table.insert(items, { amount = trade_entry.listing.price.amount, currency = trade_entry.listing.price.currency, + priceType = trade_entry.listing.price.type, item_string = table.concat(rawLines, "\n"), whisper = trade_entry.listing.whisper, trader = trade_entry.listing.account.name, From 40bca91e69d12a90b6317045f0ebd6d394737fbc Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Tue, 21 Apr 2026 11:42:13 +0300 Subject: [PATCH 22/42] make cspell happy --- src/Export/Scripts/soulcores.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Export/Scripts/soulcores.lua b/src/Export/Scripts/soulcores.lua index 186d600a1b..e543d31a26 100644 --- a/src/Export/Scripts/soulcores.lua +++ b/src/Export/Scripts/soulcores.lua @@ -98,11 +98,11 @@ directiveTable.base = function(state, args, out) for _, stat in ipairs(stats) do if stat:find("^Bonded:") then -- continue - -- range stat: output a single tradehash + -- range stat: output a single trade hash elseif stat:find("%d+ to %d+") then local tradeHash = murmurHash2(table.concat(statHashes), 0x02312233) table.insert(tradeHashes, tradeHash) - -- otherwise output separate tradehashes + -- otherwise output separate trade hashes else for _, statHash in ipairs(statHashes) do local tradeHash = murmurHash2(statHash, 0x02312233) From cb98f5bb47c62d5c5912563401e33ea9cf3cb749 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Wed, 22 Apr 2026 16:00:17 +0300 Subject: [PATCH 23/42] Fix database radius jewels being nonfunctional --- src/Data/Rares.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Data/Rares.lua b/src/Data/Rares.lua index 0436aa5682..780ab8dee9 100644 --- a/src/Data/Rares.lua +++ b/src/Data/Rares.lua @@ -933,14 +933,17 @@ Crafted: true [[ Radius Jewel Time-Lost Ruby +Radius: Small Crafted: true ]],[[ Radius Jewel Time-Lost Emerald +Radius: Small Crafted: true ]],[[ Radius Jewel Time-Lost Sapphire +Radius: Small Crafted: true ]], -- Flasks From fdb052e6aca8853d7842f23000982f9ffdd82754 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Thu, 23 Apr 2026 20:44:18 +0300 Subject: [PATCH 24/42] Fix currency conversion button not being updated after reopening trader panel --- src/Classes/TradeQuery.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index 143bd71652..fd8e33ebec 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -563,6 +563,7 @@ Highest Weight - Displays the order retrieved from trade]] self:PullPoENinjaCurrencyConversion(self.pbLeague) end) self.controls.pbNotice = new("LabelControl", {"BOTTOMRIGHT", nil, "BOTTOMRIGHT"}, {-row_height - pane_margins_vertical - row_vertical_padding, -pane_margins_vertical, 300, row_height}, "") + self:SetCurrencyConversionButton() -- used in PopupDialog:Draw() local function scrollBarFunc() From 8856622202619160f61722288fa715239b553920 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Fri, 24 Apr 2026 00:35:41 +0300 Subject: [PATCH 25/42] Avoid useless search in "search for" button --- src/Classes/TradeQuery.lua | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index fd8e33ebec..1f0871e046 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -1143,13 +1143,11 @@ you can add them, copy the link here, and press "Price Item" to evaluate the ite exactQuery.query.filters.trade_filters.filters.account = { input = itemResult.trader } local exactQueryStr = dkjson.encode(exactQuery) - - self.tradeQueryRequests:SearchWithQuery(self.pbRealm, self.pbLeague, exactQueryStr, function(_, _) - end, {callbackQueryId = function(queryId) - local url = self.hostName.."trade2/search/"..self.pbLeague.."/"..queryId - Copy(url) - OpenURL(url) - end}) + + local encodedUrl = s_format("https://www.pathofexile.com/trade2/search/%s?q=%s", self.pbLeague, urlEncode(exactQueryStr)) + + Copy(encodedUrl) + OpenURL(encodedUrl) end end) From 536f2a6826efa46cec9959583d03cc5b3f1350cb Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Fri, 24 Apr 2026 10:58:33 +0300 Subject: [PATCH 26/42] fix api error on invalid token --- spec/System/TestTradeQueryRequests_spec.lua | 36 +++++++++++++++++++++ src/Classes/TradeQueryRequests.lua | 10 ++---- 2 files changed, 39 insertions(+), 7 deletions(-) diff --git a/spec/System/TestTradeQueryRequests_spec.lua b/spec/System/TestTradeQueryRequests_spec.lua index 873b5102d5..309521fdaa 100644 --- a/spec/System/TestTradeQueryRequests_spec.lua +++ b/spec/System/TestTradeQueryRequests_spec.lua @@ -65,6 +65,42 @@ describe("TradeQueryRequests", function() launch = orig_launch end) + -- Pass: Does not crash on 401, and passes error message + -- Fail: Crash, or returned error is wrong + it("does not crash on 401", function() + local json = '"{"error":"invalid_token","error_description":"The access token provided is invalid or has expired"}"' + local header = [[HTTP/1.1 401 Unauthorized +Date: Fri, 24 Apr 2026 07:30:38 GMT +Content-Type: application/json +Transfer-Encoding: chunked +Connection: keep-alive +Server: cloudflare +WWW-Authenticate: Bearer realm="pathofexile:production", error="invalid_token", error_description="The access token provided is invalid or has expired" +Cache-Control: no-store +Strict-Transport-Security: max-age=63115200; includeSubDomains; preload]] + local orig_launch = launch + launch = { + DownloadPage = function(url, onComplete, opts) + onComplete({ body = json, header = header }, nil) + end + } + table.insert(requests.requestQueue.search, { + url = "test", + callback = function(body, msg) + assert.are.equal(body, json) + assert.truthy(msg:find("Response code: 401")) + end, + retryTime = nil + }) + local function mock_next_time(self, policy, time) + return time - 1 + end + mock_limiter.NextRequestTime = mock_next_time + requests:ProcessQueue() + assert.are.equal(#requests.requestQueue.search, 0) + launch = orig_launch + end) + -- Pass: Retries with increasing backoff up to cap, preventing infinite loops -- Fail: No backoff or uncapped, indicating retry bug, risking API bans it("retries on 429 with exponential backoff", function() diff --git a/src/Classes/TradeQueryRequests.lua b/src/Classes/TradeQueryRequests.lua index f063cd2ee9..2eadedbc0e 100644 --- a/src/Classes/TradeQueryRequests.lua +++ b/src/Classes/TradeQueryRequests.lua @@ -54,13 +54,9 @@ function TradeQueryRequestsClass:ProcessQueue(onRateLimit) end return end - -- if limit rules don't return account then the auth token is invalid. - if response.header:match("[xX]%-[rR]ate%-[lL]imit%-[rR]ules: (.-)\n"):match("Account") == nil and main.api.authToken then - if errMsg then - errMsg = errMsg .. "\nAuthorization is invalid. Please Re-Log and reset" - else - errMsg = "Authorization is invalid. Please Re-Log and reset" - end + if errMsg == "Response code: 401" and response.body:find("invalid_token") then + errMsg = errMsg .. "\nAuthorization is invalid. Please Re-Log and reset" + main.api:ResetDetails() end request.callback(response.body, errMsg, unpack(request.callbackParams or {})) end From 4bda188163a9fcdffa30df0e647991fe2092e7bb Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Sat, 25 Apr 2026 11:45:10 +0300 Subject: [PATCH 27/42] disable reuseaddr --- runtime/lua/socket.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/lua/socket.lua b/runtime/lua/socket.lua index d1c0b16492..dc79842a9c 100644 --- a/runtime/lua/socket.lua +++ b/runtime/lua/socket.lua @@ -37,7 +37,7 @@ function _M.bind(host, port, backlog) sock, err = socket.tcp6() end if not sock then return nil, err end - sock:setoption("reuseaddr", true) + -- sock:setoption("reuseaddr", true) res, err = sock:bind(alt.addr, port) if not res then sock:close() From 332b22edd0b4828797762dc51f6f7142d7c783ee Mon Sep 17 00:00:00 2001 From: Wires77 Date: Sun, 3 May 2026 13:48:55 -0500 Subject: [PATCH 28/42] Rework OAuth server launch code to avoid shared port usage --- src/LaunchServer.lua | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/src/LaunchServer.lua b/src/LaunchServer.lua index 10152a181d..f5125d5855 100644 --- a/src/LaunchServer.lua +++ b/src/LaunchServer.lua @@ -1,7 +1,27 @@ -- Start a server local url = ... -local socket = require("socket") -local server = assert(socket.bind("*", 49082) or socket.bind("*", 49083) or socket.bind("*", 49084)) +local luaSocket = require("socket") +-- localhost redirects to 127.0.0.1 AKA IPv4. luaSocket.bind() will use IPv6 if something is already running on the IPv4 host +local server = luaSocket.tcp4() +local function bindSocket() + local res, err + -- `reuseaddr` being true here would allow other applications to reuse the same port + server:setoption("reuseaddr", false) + -- Bind to localhost explicitly instead of all interfaces because LuaSocket doesn't recognize something running on localhost as conflicting with `*` or `0.0.0.0` + res, err = server:bind("localhost", 49082) or server:bind("localhost", 49083) or server:bind("localhost", 49084) + if not res then + server:close() + else + res, err = server:listen(1) + if not res then + server:close() + else + return server + end + end + return nil, err +end +assert(bindSocket()) local host, port = server:getsockname() ConPrintf("Server started on %s:%s", host, port) From 259cfc4ea9497269edff18408eb63e15d21092bb Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Mon, 4 May 2026 18:23:40 +0300 Subject: [PATCH 29/42] Remove error code on login and fix hanging item slot controls in tradequery --- src/Classes/TradeQuery.lua | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index 1f0871e046..2995c910f0 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -484,6 +484,8 @@ Highest Weight - Displays the order retrieved from trade]] main.lastRefreshToken = main.api.refreshToken main.tokenExpiry = main.api.tokenExpiry main:SaveSettings() + + TradeQueryClass:SetNotice(self.controls.pbNotice, "") else self.charImportStatus = colorCodes.WARNING.."Not authenticated" end @@ -531,6 +533,16 @@ Highest Weight - Displays the order retrieved from trade]] self.controls["name"..row_count].shown = function() return hideRowFunc(self, row_count) end + + -- fix case where the row count is reduced from the last time the popup was + -- opened, which would leave extra row controls in the menu + for k, v in pairs(self.controls) do + local number = k:match("(%d+)") + if number and tonumber(number) > row_count then + self.controls[k] = nil + end + end + row_count = row_count + 2 local effective_row_count = row_count - ((scrollBarShown and #slotTables >= 19) and #slotTables-19 or 0) + 2 + 2 -- Two top menu rows, two bottom rows, slots after #19 overlap the other controls at the bottom of the pane @@ -541,22 +553,9 @@ Highest Weight - Displays the order retrieved from trade]] self.controls.scrollBar = new("ScrollBarControl", {"TOPRIGHT", self.controls["StatWeightMultipliersButton"],"TOPRIGHT"}, {0, 25, 18, 0}, 50, "VERTICAL", false) self.controls.scrollBar.shown = function() return scrollBarShown end - local function wipeItemControls() - for index, _ in pairs(self.controls) do - if index:match("%d") then - self.controls[index] = nil - end - end - end self.controls.fullPrice = new("LabelControl", {"BOTTOM", nil, "BOTTOM"}, {0, -row_height - pane_margins_vertical - row_vertical_padding, pane_width - 2 * pane_margins_horizontal, row_height}, "") self.controls.close = new("ButtonControl", {"BOTTOM", nil, "BOTTOM"}, {0, -pane_margins_vertical, 90, row_height}, "Done", function() main:ClosePopup() - -- there's a case where if you have a socket(s) allocated, open TradeQuery, close it, dealloc, then open TradeQuery again - -- the deallocated socket controls were still showing, so this will remove all dynamically created controls from items - - -- later note: this is disabled because it causes the trader to crash if - -- it's closed mid-search - -- wipeItemControls() end) self.controls.updateCurrencyConversion = new("ButtonControl", {"BOTTOMLEFT", nil, "BOTTOMLEFT"}, {pane_margins_horizontal, -pane_margins_vertical, 240, row_height}, "Get Currency Conversion Rates", function() From 19dc20ab676b1ec7a6e9e6f9b053019f0ddff552 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Thu, 14 May 2026 03:12:47 +0300 Subject: [PATCH 30/42] Fix QueryMods.lua generation. Change soulcores.lua to export trade hashes in a similar format as previous mod export changes. --- src/Classes/TradeQueryGenerator.lua | 45 +- src/Data/ModItemExclusive.lua | 4863 --------------------------- src/Data/ModJewel.lua | 361 -- src/Data/ModRunes.lua | 518 +-- src/Data/ModVeiled.lua | 349 -- src/Data/QueryMods.lua | 1737 +++------- src/Export/Scripts/soulcores.lua | 46 +- 7 files changed, 711 insertions(+), 7208 deletions(-) diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index fedd1196dd..b723a54d89 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -183,9 +183,28 @@ function TradeQueryGeneratorClass.WeightedRatioOutputs(baseOutput, newOutput, st return meanStatDiff end + function TradeQueryGeneratorClass:ProcessMod(mod, tradeQueryStatsParsed, itemCategoriesMask, itemCategoriesOverride) - - for index, modLine in ipairs(mod) do +-- processes mods from the data exports to a format that is more useful for +-- generating weights. + +-- this function generally uses the .tradeHashes field of each exported mod, +-- which contains a map from the trade hash to the mod lines/stats + +-- at a high level, this function matches each stat / mod line to an entry in +-- https://www.pathofexile.com/api/trade2/data/stats via the trade hash. that +-- entry is then used to determine if the mod is inverted, i.e. that the mod +-- here is x increased by y, while the trade site has x decreased by -y. the +-- function also records the minimum and maximum values of each stat, so we can +-- later test for a midpoint of those values to generate a weight + for tradeHash, modLines in pairs(mod.tradeHashes) do + -- the mod export sometimes splits stats to multiple lines. they should + -- still get parsed correctly if we combine them, and that makes it + -- simpler to process them + if not modLines then + ConPrintf("") + end + local modLine = table.concat(modLines, " ") if modLine:find("Grants Level") or modLine:find("inflict Decay") then -- skip mods that grant skills / decay, as they will often be overwhelmingly powerful but don't actually fit into the build goto nextModLine end @@ -214,8 +233,11 @@ function TradeQueryGeneratorClass:ProcessMod(mod, tradeQueryStatsParsed, itemCat -- iterate trade mod category to find mod with matching text. local function getTradeMod() local entry - local tradeHashStr = tostring(mod.tradeHash) + local tradeHashStr = tostring(tradeHash) for _, v in ipairs(tradeQueryStatsParsed.result[tradeStatCategoryIndices[modType]].entries) do + if _ == 33 then + ConPrintf("") + end -- prefix removed local ids = v.id:gsub(".+..stat_", "").."|" -- split by non-integer @@ -247,7 +269,7 @@ function TradeQueryGeneratorClass:ProcessMod(mod, tradeQueryStatsParsed, itemCat local tradeMod = nil local invert - local uniqueIndex = tostring(mod.tradeHash) + local uniqueIndex = tostring(tradeHash) if self.modData[modType][uniqueIndex] == nil then if tradeMod == nil then @@ -306,7 +328,7 @@ function TradeQueryGeneratorClass:ProcessMod(mod, tradeQueryStatsParsed, itemCat end if #tokens ~= 0 and #tokens ~= 2 and #tokens ~= 4 then - logToFile("Unexpected # of tokens found for mod: %s", mod[index]) + logToFile("Unexpected # of tokens found for mod: %s", modLine) goto nextModLine end @@ -461,7 +483,7 @@ function TradeQueryGeneratorClass:InitMods() for name, runeMods in pairsSortByKey(data.itemMods.Runes) do for slotType, mods in pairs(runeMods) do for i, modLine in ipairs(mods) do - local mod = {modLine, tradeHash = mods.tradeHashes[i], type = "Rune"} + local mod = {modLine, tradeHashes = mods.tradeHashes, type = "Rune"} if slotType == "weapon" then self:ProcessMod(mod, tradeQueryStatsParsed, regularItemMask, { ["1HWeapon"] = true, ["2HWeapon"] = true, ["1HMace"] = true, ["Claw"] = true, ["Quarterstaff"] = true, ["Bow"] = true, ["2HMace"] = true, ["Crossbow"] = true, ["Spear"] = true, ["Flail"] = true, ["Talisman"] = true }) elseif slotType == "armour" then @@ -493,7 +515,16 @@ function TradeQueryGeneratorClass:InitMods() end local queryModsFile = io.open(queryModFilePath, 'w') - queryModsFile:write("-- This file is automatically generated, do not edit!\n-- Stat data (c) Grinding Gear Games\n\n") + queryModsFile:write([[-- This file is automatically generated, do not edit! +-- Stat data (c) Grinding Gear Games + +-- This file contains categories of stats, mapped from trade hash to details +-- relevant for generating search weights Note that the trade site requires a +-- prefix of e.g. explicit.stat_{hash}. See +-- https://www.pathofexile.com/api/trade2/data/stats for a list of all trade +-- site stats. + +]]) queryModsFile:write("return " .. stringify(self.modData)) queryModsFile:close() end diff --git a/src/Data/ModItemExclusive.lua b/src/Data/ModItemExclusive.lua index 3af7c0948b..70794c1e5c 100644 --- a/src/Data/ModItemExclusive.lua +++ b/src/Data/ModItemExclusive.lua @@ -4865,4867 +4865,4 @@ return { ["CorruptionUpgradePhysicalDamageOverTimeTaken"] = { affix = "", "(20-30)% reduced Physical Damage taken over time", statOrder = { 4599 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical" }, tradeHashes = { [511024200] = { "(20-30)% reduced Physical Damage taken over time" }, } }, ["CorruptionUpgradeGlobalChanceToBlindOnHit"] = { affix = "", "(30-50)% Global chance to Blind Enemies on Hit", statOrder = { 2592 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2221570601] = { "(30-50)% Global chance to Blind Enemies on Hit" }, } }, ["CorruptionUpgradeAdditionalFissureChance"] = { affix = "", "Skills which create Fissures have a (20-40)% chance to create an additional Fissure", statOrder = { 9296 }, level = 1, group = "AdditionalFissureChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [2544540062] = { "Skills which create Fissures have a (20-40)% chance to create an additional Fissure" }, } }, - ["LocalBaseEvasionRatingAndEnergyShieldPerLevelImplicit"] = { affix = "[DNT-UNUSED] Hand Wraps", "DNT-UNUSED +5 to Evasion Rating per level", statOrder = { 7161 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 939934080, }, - ["UniqueNearbyAlliesAddedChaosDamage1"] = { affix = "", "Allies in your Presence deal (13-17) to (25-37) added Attack Chaos Damage", statOrder = { 886 }, level = 82, group = "AlliesInPresenceAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 262946222, }, - ["UniqueChanceForExertedAttackToNoteReduceCount1"] = { affix = "", "Skills which Empower an Attack have (10-20)% chance to not count that Attack", statOrder = { 5028 }, level = 1, group = "SkillsExertAttacksDoNotCountChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2538411280, }, - ["UniqueGlobalColdSpellGemsLevel1"] = { affix = "", "+(5-7) to Level of all Cold Spell Skills", statOrder = { 925 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, }, - ["UniqueAttackCriticalStrikeChance1UNUSED"] = { affix = "", "(20-40)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 2194114101, }, - ["UniqueAttackCriticalStrikeMultiplier1UNUSED"] = { affix = "", "(20-40)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 3714003708, }, - ["UniqueArmourAppliesToDeflection1"] = { affix = "", "Gain Deflection Rating equal to 20% of Armour", statOrder = { 965 }, level = 1, group = "ArmourAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1752419596, }, - ["UniqueEvasionAppliesToDeflection1"] = { affix = "", "Gain Deflection Rating equal to (20-30)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 3033371881, }, - ["UniqueEvasionAppliesToDeflection2"] = { affix = "", "Gain Deflection Rating equal to (40-60)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 3033371881, }, - ["UniqueEvasionAppliesToDeflection3"] = { affix = "", "Gain Deflection Rating equal to (20-30)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 3033371881, }, - ["UniqueEvasionAppliesToDeflection4"] = { affix = "", "Gain Deflection Rating equal to (40-60)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 3033371881, }, - ["UniqueEvasionAppliesToDeflection5"] = { affix = "", "Gain Deflection Rating equal to (24-32)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 3033371881, }, - ["UniqueDeflectDamagePrevented1"] = { affix = "", "-(12-6)% to amount of Damage Prevented by Deflection", statOrder = { 4541 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3552135623, }, - ["UniqueAdditionalAmmo1"] = { affix = "", "Loads an additional bolt", statOrder = { 943 }, level = 1, group = "AdditionalAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1039380318, }, - ["UniqueFlaskIncreasedRecoverySpeed1"] = { affix = "", "50% reduced Recovery rate", statOrder = { 913 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 173226756, }, - ["UniqueFlaskRecoveryAmount1"] = { affix = "", "(70-80)% reduced Amount Recovered", statOrder = { 905 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 700317374, }, - ["QuiverImplicitPhysicalDamage1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, }, - ["QuiverImplicitFireDamage1"] = { affix = "", "Adds 3 to 5 Fire damage to Attacks", statOrder = { 844 }, level = 11, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, }, - ["QuiverImplicitLifeGainPerTarget1"] = { affix = "", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 21, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, }, - ["QuiverImplicitIncreasedAccuracy1"] = { affix = "", "(20-30)% increased Accuracy Rating", statOrder = { 1268 }, level = 30, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 624954515, }, - ["QuiverImplicitStunThresholdReduction1"] = { affix = "", "(25-40)% increased Stun Buildup", statOrder = { 984 }, level = 40, group = "StunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 239367161, }, - ["QuiverImplicitChanceToPoison1"] = { affix = "", "(20-30)% chance to Poison on Hit with Attacks", statOrder = { 2791 }, level = 49, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3954735777, }, - ["QuiverImplicitChanceToBleed1"] = { affix = "", "Attacks have (20-30)% chance to cause Bleeding", statOrder = { 2159 }, level = 56, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3204820200, }, - ["QuiverImplicitIncreasedAttackSpeed1"] = { affix = "", "(7-10)% increased Attack Speed", statOrder = { 941 }, level = 64, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, - ["QuiverImplicitArrowAdditionalPierce1"] = { affix = "", "100% chance to Pierce an Enemy", statOrder = { 1001 }, level = 69, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2321178454, }, - ["QuiverImplicitArrowSpeed1"] = { affix = "", "(20-30)% increased Arrow Speed", statOrder = { 1479 }, level = 75, group = "ArrowSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1207554355, }, - ["QuiverImplicitCriticalStrikeChance1"] = { affix = "", "(20-30)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 80, group = "AttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 2194114101, }, - ["AmuletImplicitLifeRegeneration1"] = { affix = "", "(2-4) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["AmuletImplicitManaRegeneration1"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["AmuletImplicitStrength1"] = { affix = "", "+(10-15) to Strength", statOrder = { 947 }, level = 10, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["AmuletImplicitDexterity1"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 948 }, level = 10, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["AmuletImplicitIntelligence1"] = { affix = "", "+(10-15) to Intelligence", statOrder = { 949 }, level = 10, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["AmuletImplicitEnergyShield1"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 867 }, level = 18, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, }, - ["AmuletImplicitIncreasedLife1"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 869 }, level = 23, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["AmuletImplicitAllAttributes1"] = { affix = "", "+(5-7) to all Attributes", statOrder = { 946 }, level = 31, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["AmuletImplicitBaseSpirit1"] = { affix = "", "+(10-15) to Spirit", statOrder = { 874 }, level = 38, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, - ["AmuletImplicitItemFoundRarityIncrease1"] = { affix = "", "(12-20)% increased Rarity of Items found", statOrder = { 916 }, level = 44, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["AmuletImplicitAllElementalResistances"] = { affix = "", "+(7-10)% to all Elemental Resistances", statOrder = { 957 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["AmuletImplicitPrefixSuffixAllowed1"] = { affix = "", "+1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, }, - ["AmuletImplicitPrefixSuffixAllowed2"] = { affix = "", "-1 Prefix Modifier allowed", "+1 Suffix Modifier allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, }, - ["AmuletImplicitPrefixSuffixAllowed3"] = { affix = "", "+2 Prefix Modifiers allowed", "-2 Suffix Modifiers allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, }, - ["AmuletImplicitPrefixSuffixAllowed4"] = { affix = "", "-2 Prefix Modifiers allowed", "+2 Suffix Modifiers allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, }, - ["AmuletImplicitPrefixSuffixAllowed5"] = { affix = "", "-1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, }, - ["RingImplicitPhysicalDamage1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, }, - ["RingImplicitIncreasedMana1"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["RingImplicitFireResistance1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 10, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["RingImplicitColdResistance1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 15, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["RingImplicitLightningResistance1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 960 }, level = 20, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["RingImplicitChaosResistance1"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 961 }, level = 25, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["RingImplicitIncreasedAccuracy1"] = { affix = "", "+(120-160) to Accuracy Rating", statOrder = { 862 }, level = 33, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, - ["RingImplicitIncreasedCastSpeed1"] = { affix = "", "(7-10)% increased Cast Speed", statOrder = { 942 }, level = 40, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["RingImplicitAllResistances1"] = { affix = "", "+(7-10)% to all Elemental Resistances", statOrder = { 957 }, level = 44, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["RingImplicitItemFoundRarityIncrease1"] = { affix = "", "(6-15)% increased Rarity of Items found", statOrder = { 916 }, level = 50, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["RingImplicitAdditionalSkillSlots1"] = { affix = "", "Grants 1 additional Skill Slot", statOrder = { 55 }, level = 56, group = "AdditionalSkillSlots", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 958696139, }, - ["RingImplicitMaximumQualityOverride1"] = { affix = "", "Maximum Quality is 40%", statOrder = { 7328 }, level = 50, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 275498888, }, - ["RingImplicitPrefixSuffixAllowed1"] = { affix = "", "+1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, }, - ["RingImplicitPrefixSuffixAllowed2"] = { affix = "", "-1 Prefix Modifier allowed", "+1 Suffix Modifier allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, }, - ["RingImplicitPrefixSuffixAllowed3"] = { affix = "", "+2 Prefix Modifiers allowed", "-2 Suffix Modifiers allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, }, - ["RingImplicitPrefixSuffixAllowed4"] = { affix = "", "-2 Prefix Modifiers allowed", "+2 Suffix Modifiers allowed", statOrder = { 16, 17 }, level = 1, group = "PrefixSuffixAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2843000346, }, - ["BeltImplicitFlaskLifeRecovery1"] = { affix = "", "(20-30)% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, }, - ["BeltImplicitFlaskManaRecovery1"] = { affix = "", "(20-30)% increased Mana Recovery from Flasks", statOrder = { 1720 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, }, - ["BeltImplicitIncreasedFlaskChargesGained1"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6216 }, level = 18, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, }, - ["BeltImplicitIncreasedCharmDuration1"] = { affix = "", "(15-20)% increased Charm Effect Duration", statOrder = { 878 }, level = 25, group = "BeltIncreasedCharmDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1389754388, }, - ["BeltImplicitPhysicalDamageReductionRating1"] = { affix = "", "+(100-140) to Armour", statOrder = { 863 }, level = 31, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 809229260, }, - ["BeltImplicitReducedCharmChargesUsed1"] = { affix = "", "(10-15)% reduced Charm Charges used", statOrder = { 5229 }, level = 39, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1570770415, }, - ["BeltImplicitReducedFlaskChargesUsed1"] = { affix = "", "(10-15)% reduced Flask Charges used", statOrder = { 982 }, level = 50, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 644456512, }, - ["BeltImplicitIncreasedCharmChargesGained1"] = { affix = "", "(20-30)% increased Charm Charges gained", statOrder = { 5227 }, level = 55, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3585532255, }, - ["BeltImplicitIncreasedStunThreshold1"] = { affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2878 }, level = 63, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 680068163, }, - ["BeltImplicitInstantFlaskRecoveryPercent1"] = { affix = "", "20% of Flask Recovery applied Instantly", statOrder = { 6222 }, level = 69, group = "InstantFlaskRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 462041840, }, - ["BeltImplicitFlaskPassiveChargeGain1"] = { affix = "", "Flasks gain 0.17 charges per Second", statOrder = { 6447 }, level = 78, group = "AllFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 731781020, }, - ["BeltImplicitCharmSlots1"] = { affix = "", "Has 1 Charm Slot", statOrder = { 4630 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1416292992, }, - ["BeltImplicitCharmSlots2"] = { affix = "", "Has (1-2) Charm Slot", statOrder = { 4630 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1416292992, }, - ["BeltImplicitCharmSlots3"] = { affix = "", "Has (1-3) Charm Slot", statOrder = { 4630 }, level = 1, group = "CharmSlots", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1416292992, }, - ["CharmImplicitUseOnFreeze1"] = { affix = "", "Used when you become Frozen", statOrder = { 680 }, level = 1, group = "FlaskUseOnAffectedByFreeze", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1691862754, }, - ["CharmImplicitUseOnBleed1"] = { affix = "", "Used when you start Bleeding", statOrder = { 678 }, level = 1, group = "FlaskUseOnAffectedByBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3676540188, }, - ["CharmImplicitUseOnPoison1"] = { affix = "", "Used when you become Poisoned", statOrder = { 682 }, level = 1, group = "FlaskUseOnAffectedByPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1412682799, }, - ["CharmImplicitUseOnIgnite1"] = { affix = "", "Used when you become Ignited", statOrder = { 681 }, level = 1, group = "FlaskUseOnAffectedByIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 585126960, }, - ["CharmImplicitUseOnShock1"] = { affix = "", "Used when you become Shocked", statOrder = { 683 }, level = 1, group = "FlaskUseOnAffectedByShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3699444296, }, - ["CharmImplicitUseOnStun1"] = { affix = "", "Used when you become Stunned", statOrder = { 696 }, level = 1, group = "FlaskUseOnAffectedByStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1810482573, }, - ["CharmImplicitUseOnSlow1"] = { affix = "", "Used when you are affected by a Slow", statOrder = { 684 }, level = 1, group = "FlaskUseOnAffectedBySlow", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2778646494, }, - ["CharmImplicitUseOnFireDamage1"] = { affix = "", "Used when you take Fire damage from a Hit", statOrder = { 688 }, level = 1, group = "FlaskUseOnTakingFireDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3854901951, }, - ["CharmImplicitUseOnColdDamage1"] = { affix = "", "Used when you take Cold damage from a Hit", statOrder = { 686 }, level = 1, group = "FlaskUseOnTakingColdDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2994271459, }, - ["CharmImplicitUseOnLightningDamage1"] = { affix = "", "Used when you take Lightning damage from a Hit", statOrder = { 695 }, level = 1, group = "FlaskUseOnTakingLightningDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2016937536, }, - ["CharmImplicitUseOnChaosDamage1"] = { affix = "", "Used when you take Chaos damage from a Hit", statOrder = { 685 }, level = 1, group = "FlaskUseOnTakingChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3310778564, }, - ["CharmImplicitUseOnRareUniqueKill1"] = { affix = "", "Used when you kill a Rare or Unique enemy", statOrder = { 694 }, level = 1, group = "FlaskUseOnKillingRareUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4010341289, }, - ["CharmImplicitUseOnCurse1"] = { affix = "", "Used when you become Cursed", statOrder = { 676 }, level = 1, group = "FlaskUseOnAffectedByCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4146282829, }, - ["BodyArmourImplicitIncreasedStunThreshold1"] = { affix = "", "(30-40)% increased Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 680068163, }, - ["BodyArmourImplicitLifeRegenerationPercent1"] = { affix = "", "Regenerate (1.5-2.5)% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, - ["BodyArmourImplicitIncreasedAilmentThreshold1"] = { affix = "", "(30-40)% increased Elemental Ailment Threshold", statOrder = { 4147 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3544800472, }, - ["BodyArmourImplicitSlowPotency1"] = { affix = "", "(20-30)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 924253255, }, - ["BodyArmourImplicitEnergyShieldDelay1"] = { affix = "", "(40-50)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, }, - ["BodyArmourImplicitManaRegeneration1"] = { affix = "", "(40-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["BodyArmourImplicitIncreasedLife1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["BodyArmourImplicitFireResistance1"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["BodyArmourImplicitColdResistance1"] = { affix = "", "+(20-25)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["BodyArmourImplicitLightningResistance1"] = { affix = "", "+(20-25)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["BodyArmourImplicitMaximumElementalResistance1"] = { affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 952 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1978899297, }, - ["BodyArmourImplicitIncreasedSpirit1"] = { affix = "", "+(20-30) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, - ["BodyArmourImplicitChaosResistance1"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["BodyArmourImplicitMovementVelocity1"] = { affix = "", "5% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["BodyArmourImplicitReducedCriticalStrikeDamageTaken1"] = { affix = "", "Hits against you have (15-25)% reduced Critical Damage Bonus", statOrder = { 950 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3855016469, }, - ["BodyArmourImplicitMovementVelocityPenaltyWhilePerformingAction1"] = { affix = "", "(10-20)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 8594 }, level = 1, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2590797182, }, - ["BodyArmourImplicitDamageRemovedFromManaBeforeLife1"] = { affix = "", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 458438597, }, - ["BodyArmourImplicitArmourAppliesToElementalDamage1"] = { affix = "", "+(15-25)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "armour", "defences", "elemental" }, tradeHash = 3362812763, }, - ["BodyArmourImplicitLifeRecoupForJewel1"] = { affix = "", "(8-14)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "LifeRecoupForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1444556985, }, - ["BodyArmourImplicitSelfStatusAilmentDuration1"] = { affix = "", "(10-15)% reduced Elemental Ailment Duration on you", statOrder = { 1549 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 1745952865, }, - ["BodyArmourImplicitLevelOfAllCorruptedSkillGems1"] = { affix = "", "+1 to Level of all Corrupted Skill Gems", statOrder = { 5388 }, level = 1, group = "GlobalCorruptedSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 2251279027, }, - ["SwordImplicitLifeLeechLocal1"] = { affix = "", "Leeches 6% of Physical Damage as Life", statOrder = { 972 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, }, - ["SwordImplicitItemFoundRarity1"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["SwordImplicitSpellDamage1"] = { affix = "", "(40-60)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, - ["AxeImplicitRageOnHit1"] = { affix = "", "Grants 1 Rage on Hit", statOrder = { 7239 }, level = 1, group = "LocalRageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1725749947, }, - ["AxeImplicitAccuracyUnaffectedByDistance1"] = { affix = "", "Has no Accuracy Penalty from Range", statOrder = { 7436 }, level = 1, group = "LocalAccuracyUnaffectedDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1050883682, }, - ["AxeImplicitManaGainedFromEnemyDeath1"] = { affix = "", "Gain (28-35) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, - ["AxeImplicitDamageTaken1"] = { affix = "", "10% increased Damage taken", statOrder = { 1888 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3691641145, }, - ["AxeImplicitCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 7186 }, level = 1, group = "LocalCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1574531783, }, - ["AxeImplicitLifeGainedFromEnemyDeath1"] = { affix = "", "Gain (34-43) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, - ["AxeImplicitLocalChanceToBleed1"] = { affix = "", "(15-25)% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, - ["AxeImplicitCannotBeThrown1"] = { affix = "", "Cannot use Projectile Attacks", statOrder = { 7172 }, level = 1, group = "CannotBeThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1961849903, }, - ["MaceImplicitCriticalMultiplier1"] = { affix = "", "+(5-10)% to Critical Damage Bonus", statOrder = { 918 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, }, - ["MaceImplicitLocalDazeBuildup1"] = { affix = "", "40% chance to Daze on Hit", statOrder = { 7439 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2933846633, }, - ["MaceImplicitStunDamageIncrease1"] = { affix = "", "Causes (20-40)% increased Stun Buildup", statOrder = { 985 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 791928121, }, - ["MaceImplicitStunDamageIncrease2"] = { affix = "", "Causes (30-50)% increased Stun Buildup", statOrder = { 985 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 791928121, }, - ["MaceImplicitAlwaysHit1"] = { affix = "", "Always Hits", statOrder = { 1704 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 4126210832, }, - ["MaceImplicitSplashDamage1"] = { affix = "", "Strikes deal Splash Damage", statOrder = { 1067 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3675300253, }, - ["MaceImplicitEnemiesExplodeOnCrit1"] = { affix = "", "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage", statOrder = { 7235 }, level = 1, group = "EnemiesExplodeOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1541903247, }, - ["MaceImplicitLocalCrushOnHit1"] = { affix = "", "Crushes Enemies on Hit", statOrder = { 7184 }, level = 1, group = "LocalCrushOnHit", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 1503146834, }, - ["MaceImplicitWarcryExert1"] = { affix = "", "Warcries Empower an additional Attack", statOrder = { 9887 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1434716233, }, - ["TalismanImplicitFireDamageAndFlammability1"] = { affix = "", "(50-80)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "WeaponImplicitDamageIsFireAndFlammability", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 804511626, }, - ["TalismanImplicitMinionDamage1"] = { affix = "", "Minions deal (30-50)% increased Damage", statOrder = { 1646 }, level = 1, group = "WeaponImplicitMinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 1589917703, }, - ["TalismanImplicitRageOnMeleeHit1"] = { affix = "", "Gain (2-4) Rage on Melee Hit", statOrder = { 6431 }, level = 1, group = "WeaponImplicitRageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2709367754, }, - ["TalismanImplicitLightningDamageAndShockMagnitude1"] = { affix = "", "(15-25)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "WeaponImplicitDamageIsLightningAndShockMagnitude", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 91591709, }, - ["TalismanImplicitMaximumRage1"] = { affix = "", "+(8-12) to Maximum Rage", statOrder = { 9032 }, level = 1, group = "WeaponImplicitMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1181501418, }, - ["TalismanImplicitMarkEffect1"] = { affix = "", "(10-20)% increased Effect of your Mark Skills", statOrder = { 2268 }, level = 1, group = "WeaponImplicitMarkEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 712554801, }, - ["TalismanImplicitAdditionalBlock1"] = { affix = "", "+(10-15)% to Block chance", statOrder = { 2130 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, }, - ["SpearImplicitLocalChanceToMaim1"] = { affix = "", "(15-25)% chance to Maim on Hit", statOrder = { 7320 }, level = 1, group = "LocalChanceToMaim", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2763429652, }, - ["SpearImplicitLocalProjectileSpeed1"] = { affix = "", "(25-35)% increased Projectile Speed with this Weapon", statOrder = { 7335 }, level = 1, group = "LocalIncreasedProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 535217483, }, - ["SpearImplicitDeflectDamagePrevented1"] = { affix = "", "Prevent +(3-7)% of Damage from Deflected Hits", statOrder = { 4541 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3552135623, }, - ["SpearImplicitWeaponRange1"] = { affix = "", "25% increased Melee Strike Range with this weapon", statOrder = { 7131 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 548198834, }, - ["SpearImplicitFasterBleed1"] = { affix = "", "Bleeding you inflict deals Damage (10-20)% faster", statOrder = { 6123 }, level = 1, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHash = 3828375170, }, - ["ClawImplicitLifeGainPerTargetLocal1"] = { affix = "", "Grants 8 Life per Enemy Hit", statOrder = { 974 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHash = 821021828, }, - ["ClawImplicitLocalChanceToBlind1"] = { affix = "", "(15-25)% chance to Blind Enemies on hit", statOrder = { 1937 }, level = 1, group = "BlindingHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2301191210, }, - ["ClawImplicitLocalChanceToPoison1"] = { affix = "", "(15-25)% chance to Poison on Hit with this weapon", statOrder = { 7334 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, }, - ["ClawImplicitManaGainPerTargetLocal1"] = { affix = "", "Grants 8 Mana per Enemy Hit", statOrder = { 1434 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 640052854, }, - ["DaggerImplicitManaLeechLocal1"] = { affix = "", "Leeches 4% of Physical Damage as Mana", statOrder = { 978 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 669069897, }, - ["DaggerImplicitSpellLifeCostPercent1"] = { affix = "", "25% of Spell Mana Cost Converted to Life Cost", statOrder = { 9436 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 3544050945, }, - ["DaggerImplicitBreakArmour1"] = { affix = "", "Breaks (400-500) Armour on Critical Hit", statOrder = { 7146 }, level = 1, group = "LocalBreakArmourOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4270348114, }, - ["FlailImplicitRollCritTwice1"] = { affix = "", "Bifurcates Critical Hits", statOrder = { 1292 }, level = 1, group = "RollCriticalChanceTwice", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1451444093, }, - ["FlailImplicitIgnoreBlock1"] = { affix = "", "Unblockable", statOrder = { 7155 }, level = 1, group = "LocalIgnoreBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1137147997, }, - ["QuarterstaffWeaponRange1"] = { affix = "", "16% increased Melee Strike Range with this weapon", statOrder = { 7131 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 548198834, }, - ["QuarterstaffImplicitAdditionalBlock1"] = { affix = "", "+(12-18)% to Block chance", statOrder = { 2130 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, }, - ["QuarterstaffImplicitDazeChance1"] = { affix = "", "(20-50)% chance to Daze on Hit", statOrder = { 7439 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2933846633, }, - ["BowImplicitLocalChanceToChain1"] = { affix = "", "(20-30)% chance to Chain an additional time", statOrder = { 7134 }, level = 1, group = "LocalAdditionalChainChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1028592286, }, - ["BowImplicitAdditionalArrows1"] = { affix = "", "+50% Surpassing chance to fire an additional Arrow", statOrder = { 5137 }, level = 1, group = "AdditionalArrowChanceCanExceed100%", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2463230181, }, - ["BowImplicitProjectileAttackRange1"] = { affix = "", "50% reduced Projectile Range", statOrder = { 8966 }, level = 1, group = "LocalIncreasedProjectileAttackRange", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3398402065, }, - ["CrossbowImplicitBoltSpeed1"] = { affix = "", "(20-30)% increased Bolt Speed", statOrder = { 1480 }, level = 1, group = "BoltSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1803308202, }, - ["CrossbowImplicitAdditionalAmmo1"] = { affix = "", "Loads an additional bolt", statOrder = { 943 }, level = 1, group = "AdditionalAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1039380318, }, - ["CrossbowImplicitGrenadeProjectiles1"] = { affix = "", "Grenade Skills Fire an additional Projectile", statOrder = { 6501 }, level = 1, group = "GrenadeProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1980802737, }, - ["CrossbowImplicitChanceToPierce1"] = { affix = "", "(20-30)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 1, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2321178454, }, - ["CrossbowImplicitAdditionalBallistaTotem1"] = { affix = "", "+1 to maximum number of Summoned Ballista Totems", statOrder = { 4058 }, level = 1, group = "AdditionalBallistaTotem", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1823942939, }, - ["TrapImplicitCooldownRecovery1"] = { affix = "", "(20-30)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 3044 }, level = 1, group = "TrapCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3417757416, }, - ["BucklerImplicitStunThreshold1"] = { affix = "", "+16 to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, - ["UniqueJewelRadiusMana"] = { affix = "", "1% increased maximum Mana", statOrder = { 872 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, nodeType = 1, tradeHash = 1247628870, }, - ["UniqueJewelRadiusLife"] = { affix = "", "1% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, nodeType = 1, tradeHash = 1809641701, }, - ["UniqueJewelRadiusIncreasedLife"] = { affix = "", "+8 to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, nodeType = 1, tradeHash = 1316656343, }, - ["UniqueJewelRadiusIncreasedMana"] = { affix = "", "+8 to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, nodeType = 1, tradeHash = 1294464552, }, - ["UniqueJewelRadiusIgniteDurationOnSelf"] = { affix = "", "(4-6)% reduced Ignite Duration on you", statOrder = { 996 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, nodeType = 1, tradeHash = 3474941090, }, - ["UniqueJewelRadiusFreezeDurationOnSelf"] = { affix = "", "(4-6)% reduced Freeze Duration on you", statOrder = { 998 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, nodeType = 1, tradeHash = 860443350, }, - ["UniqueJewelRadiusShockDurationOnSelf"] = { affix = "", "(4-6)% reduced Shock duration on you", statOrder = { 999 }, level = 1, group = "ReducedShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 1, tradeHash = 1627878766, }, - ["UniqueJewelRadiusFireResistance"] = { affix = "", "+(2-4)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, nodeType = 1, tradeHash = 2948688907, }, - ["UniqueJewelRadiusColdResistance"] = { affix = "", "+(2-4)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, nodeType = 1, tradeHash = 2884937919, }, - ["UniqueJewelRadiusLightningResistance"] = { affix = "", "+(2-4)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, nodeType = 1, tradeHash = 3994876825, }, - ["UniqueJewelRadiusChaosResistance"] = { affix = "", "+(2-3)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, nodeType = 1, tradeHash = 2264240911, }, - ["UniqueJewelRadiusMaxFireResistance"] = { affix = "", "+1% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, nodeType = 2, tradeHash = 4151994709, }, - ["UniqueJewelRadiusMaxColdResistance"] = { affix = "", "+1% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, nodeType = 2, tradeHash = 1862508014, }, - ["UniqueJewelRadiusMaxLightningResistance"] = { affix = "", "+1% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, nodeType = 2, tradeHash = 2217513089, }, - ["UniqueJewelRadiusMaxChaosResistance"] = { affix = "", "+1% to Maximum Chaos Resistance", statOrder = { 956 }, level = 1, group = "MaximumChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, nodeType = 2, tradeHash = 1731760476, }, - ["UniqueJewelRadiusPercentStrenth"] = { affix = "", "(2-3)% increased Strength", statOrder = { 1080 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, nodeType = 2, tradeHash = 1842384813, }, - ["UniqueJewelRadiusPercentIntelligence"] = { affix = "", "(2-3)% increased Intelligence", statOrder = { 1082 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, nodeType = 2, tradeHash = 40618390, }, - ["UniqueJewelRadiusPercentDexterity"] = { affix = "", "(2-3)% increased Dexterity", statOrder = { 1081 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, nodeType = 2, tradeHash = 2717786748, }, - ["UniqueJewelRadiusSpirit"] = { affix = "", "+(8-12) to Spirit", statOrder = { 873 }, level = 1, group = "JewelSpirit", weightKey = { }, weightVal = { }, modTags = { }, nodeType = 2, tradeHash = 3991877392, }, - ["UniqueJewelRadiusDamageAsFire"] = { affix = "", "Gain (2-4)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 2, tradeHash = 338620903, }, - ["UniqueJewelRadiusDamageAsCold"] = { affix = "", "Gain (2-4)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 2, tradeHash = 833138896, }, - ["UniqueJewelRadiusDamageAsLightning"] = { affix = "", "Gain (2-4)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 2, tradeHash = 852470634, }, - ["UniqueJewelRadiusDamageAsChaos"] = { affix = "", "Gain (2-4)% of Damage as Extra Chaos Damage", statOrder = { 1602 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, nodeType = 2, tradeHash = 2603051299, }, - ["UniqueStrength1"] = { affix = "", "+(30-50) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength2"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength3"] = { affix = "", "+(10-15) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength4"] = { affix = "", "-(20-10) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength5"] = { affix = "", "+(5-15) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength6"] = { affix = "", "+(40-50) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength7"] = { affix = "", "+(20-40) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength8"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength9"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength10"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength11"] = { affix = "", "+(5-10) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength12"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength13"] = { affix = "", "+(10-15) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength14"] = { affix = "", "+(0-10) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength15"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength16"] = { affix = "", "+(10-15) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength17"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength18"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength19"] = { affix = "", "+10 to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength20"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength21"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength22"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength23"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength24"] = { affix = "", "+(15-25) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength25"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength26"] = { affix = "", "+(10-15) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength27"] = { affix = "", "+(10-15) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength28"] = { affix = "", "+(10-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength29"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength30"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength31"] = { affix = "", "+(10-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength32"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength33"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength34"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength35"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength36"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength37"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength38"] = { affix = "", "+(15-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength39"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength40"] = { affix = "", "+(8-15) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength41"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength42"] = { affix = "", "+10 to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength43"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 82, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength44"] = { affix = "", "+(25-40) to Strength", statOrder = { 947 }, level = 82, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength45"] = { affix = "", "+(20-30) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength46"] = { affix = "", "+(30-40) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueStrength47"] = { affix = "", "+(15-20) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["UniqueDexterity1"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity2"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity3"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity4"] = { affix = "", "+10 to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity5"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity6"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity7"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity8"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity9"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity10"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity11"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity12"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity13"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity14"] = { affix = "", "+(0-10) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity15"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity16"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity17"] = { affix = "", "+10 to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity18"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity19"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity20"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity21"] = { affix = "", "+5 to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity22"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity23"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity24"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity25"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity26"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity27"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity28"] = { affix = "", "+(5-15) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity29"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity30"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity31"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity32"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity33"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity34"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity35"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity36"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity37"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity38"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity39"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity40"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity41"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity42"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity43"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueDexterity44"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 948 }, level = 82, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["UniqueIntelligence1"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence2"] = { affix = "", "+(10-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence3"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence4"] = { affix = "", "+(5-15) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence5"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence6"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence7"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence8"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence9"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence10"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence11"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence12"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence13"] = { affix = "", "+(10-15) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence14"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence15"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence16"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence17"] = { affix = "", "+(0-10) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence18"] = { affix = "", "+(10-15) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence19"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence20"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence21"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence22"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence23"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence24"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence25"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence26"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence27"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence28"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence29"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence30"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence31"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence32"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence33"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence34"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence35"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence36"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence37"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence38"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence39"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence40"] = { affix = "", "+15 to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence41"] = { affix = "", "+10 to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence42"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 82, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence43"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence44"] = { affix = "", "+(8-15) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence45"] = { affix = "", "+(8-15) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueIntelligence46"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["UniqueAllAttributes1"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["UniqueAllAttributes2"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["UniqueAllAttributes3"] = { affix = "", "+(50-100) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["UniqueAllAttributes4"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["UniqueAllAttributes5"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["UniqueAllAttributes6"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["UniqueAllAttributes7"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["UniqueAllAttributes8"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["UniqueAllAttributes9"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["UniqueAllAttributes10"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["UniqueAllAttributes11"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["UniqueAllAttributes12"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["UniqueAllAttributes13"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["UniqueAllAttributes14"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["UniqueAllAttributes15"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["UniqueAllAttributes16"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["UniqueAllAttributes17"] = { affix = "", "+(7-13) to all Attributes", statOrder = { 946 }, level = 82, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["UniqueAllAttributes18"] = { affix = "", "+(7-13) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["UniqueFireResist1"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist2"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist3"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist4"] = { affix = "", "-(20-10)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist5"] = { affix = "", "+(5-10)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist6"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist7"] = { affix = "", "+(5-15)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist8"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist9"] = { affix = "", "-10% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist10"] = { affix = "", "+(15-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist11"] = { affix = "", "+(0-10)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist12"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist13"] = { affix = "", "+20% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist14"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist15"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist16"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist17"] = { affix = "", "-(15-10)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist18"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist19"] = { affix = "", "-10% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist20"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist21"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist22"] = { affix = "", "+(-30-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist23"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist24"] = { affix = "", "+(-40-40)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist25"] = { affix = "", "+(50-100)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist26"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist27"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist28"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist29"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist30"] = { affix = "", "+(25-35)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist31"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist32"] = { affix = "", "+(5-15)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist33"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist34"] = { affix = "", "+(10-15)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueFireResist35"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["UniqueColdResist1"] = { affix = "", "-(20-10)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist2"] = { affix = "", "+50% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist3"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist4"] = { affix = "", "+(5-10)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist5"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist6"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist7"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist8"] = { affix = "", "+(30-50)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist9"] = { affix = "", "+(5-15)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist10"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist11"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist12"] = { affix = "", "+(10-15)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist13"] = { affix = "", "+(0-10)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist14"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist15"] = { affix = "", "+40% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist16"] = { affix = "", "+(50-75)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist17"] = { affix = "", "+(25-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist18"] = { affix = "", "+(5-10)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist19"] = { affix = "", "+(-30-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist20"] = { affix = "", "+(-40-40)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist21"] = { affix = "", "+(50-100)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist22"] = { affix = "", "-(15-10)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist23"] = { affix = "", "-10% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist24"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist25"] = { affix = "", "+(10-15)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist26"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist27"] = { affix = "", "-15% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist28"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist29"] = { affix = "", "+(25-35)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist30"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist31"] = { affix = "", "+(25-35)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist32"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist33"] = { affix = "", "+(5-15)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueColdResist34"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["UniqueLightningResist1"] = { affix = "", "+(5-10)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist2"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist3"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist4"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist5"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist6"] = { affix = "", "+(30-50)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist7"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist8"] = { affix = "", "+(15-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist9"] = { affix = "", "+(0-10)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist10"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist11"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist12"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist13"] = { affix = "", "-(40-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist14"] = { affix = "", "+(10-15)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist15"] = { affix = "", "+(10-15)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist16"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist17"] = { affix = "", "+(-30-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist18"] = { affix = "", "+(-40-40)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist19"] = { affix = "", "+(50-100)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist20"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist21"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist22"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist23"] = { affix = "", "+(30-50)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist24"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist25"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist26"] = { affix = "", "+(25-35)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist27"] = { affix = "", "+(5-15)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist28"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueLightningResist29"] = { affix = "", "+(1-33)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueAllResistances1"] = { affix = "", "+(25-35)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances2"] = { affix = "", "+(5-15)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances3"] = { affix = "", "-20% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances4"] = { affix = "", "-10% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances5"] = { affix = "", "+(5-15)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances6"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances7"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances8"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances9"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances10"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances11"] = { affix = "", "-30% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances12"] = { affix = "", "-(20-5)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances13"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances14"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances15"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances16"] = { affix = "", "+(5-40)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances17"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances18"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances19"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances20"] = { affix = "", "+(30-40)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances21"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances22"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances23"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances24"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances25"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances26"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueAllResistances27"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["UniqueChaosResist1"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist2"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist3"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist4"] = { affix = "", "+(29-37)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist5"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist6"] = { affix = "", "+(7-17)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist7"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist8"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist9"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist10"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist11"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist12"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist13"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist14"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist15"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist16"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist17"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist18"] = { affix = "", "-(23-3)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist19"] = { affix = "", "-17% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist20"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist21"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist22"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist23"] = { affix = "", "+13% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist24"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist25"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist26"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist27"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist28"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist29"] = { affix = "", "+(7-13)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist30"] = { affix = "", "+(23-29)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist31"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist32"] = { affix = "", "+(23-29)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist33"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist34"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueChaosResist35"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueIncreasedLife1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife2"] = { affix = "", "+1500 to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife3"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife4"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife5"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife6"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife7"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife8"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife9"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife10"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife11"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife12"] = { affix = "", "+100 to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife13"] = { affix = "", "+(40-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife14"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife15"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife16"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife17"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife18"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife19"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife20"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife21"] = { affix = "", "+(0-30) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife22"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife23"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife24"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife25"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife26"] = { affix = "", "+300 to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife27"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife28"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife29"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife30"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife31"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife32"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife33"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife34"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife35"] = { affix = "", "+100 to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife36"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife37"] = { affix = "", "+(50-150) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife38"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife39"] = { affix = "", "+(0-80) to maximum Life", statOrder = { 869 }, level = 81, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife40"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife41"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife42"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife43"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife44"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife45"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife46"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife47"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife48"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife49"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife50"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife51"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife52"] = { affix = "", "+(25-35) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife53"] = { affix = "", "+(80-120) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife54"] = { affix = "", "+100 to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife55"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueIncreasedLife56"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["UniqueMaximumLifeIncrease1"] = { affix = "", "(20-30)% reduced maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, }, - ["UniqueMaximumLifeIncrease2"] = { affix = "", "50% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, }, - ["UniqueMaximumLifeIncrease3"] = { affix = "", "20% reduced maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, }, - ["UniqueMaximumLifeIncrease4"] = { affix = "", "(10-15)% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, }, - ["UniqueMaximumLifeIncrease5"] = { affix = "", "20% reduced maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, }, - ["UniqueMaximumLifeIncrease6"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 870 }, level = 71, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, }, - ["UniqueMaximumLifeIncrease7"] = { affix = "", "(10-20)% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, }, - ["UniqueMaximumLifeIncrease8"] = { affix = "", "(10-20)% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, }, - ["UniqueIncreasedMana1"] = { affix = "", "+(10-20) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana2"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana3"] = { affix = "", "+(50-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana4"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana5"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana6"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana7"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana8"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana9"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana10"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana11"] = { affix = "", "+(0-20) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana12"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana13"] = { affix = "", "+(50-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana14"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana15"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana16"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana17"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana18"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana19"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana20"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana21"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana22"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana23"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana24"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana25"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana26"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana27"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana28"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana29"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana30"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana31"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana32"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana33"] = { affix = "", "+(50-150) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana34"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana35"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana36"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana37"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana38"] = { affix = "", "+(50-80) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana39"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana40"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana41"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana42"] = { affix = "", "+(60-90) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana43"] = { affix = "", "+(70-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana44"] = { affix = "", "+(60-80) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana45"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana46"] = { affix = "", "+(35-45) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana47"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana48"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana49"] = { affix = "", "+(80-120) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana50"] = { affix = "", "+(50-80) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana51"] = { affix = "", "+(50-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueIncreasedMana52"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 871 }, level = 82, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["UniqueMaximumManaIncrease1"] = { affix = "", "(10-15)% increased maximum Mana", statOrder = { 872 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2748665614, }, - ["UniqueMaximumManaIncrease2"] = { affix = "", "25% reduced maximum Mana", statOrder = { 872 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2748665614, }, - ["UniqueMaximumManaIncrease3"] = { affix = "", "(10-15)% reduced maximum Mana", statOrder = { 872 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2748665614, }, - ["UniqueMaximumManaIncrease4"] = { affix = "", "25% reduced maximum Mana", statOrder = { 872 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2748665614, }, - ["UniqueIncreasedPhysicalDamageReductionRating1"] = { affix = "", "+(100-150) to Armour", statOrder = { 863 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 809229260, }, - ["UniqueIncreasedPhysicalDamageReductionRating2"] = { affix = "", "+(100-150) to Armour", statOrder = { 863 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 809229260, }, - ["UniqueIncreasedPhysicalDamageReductionRating3"] = { affix = "", "+(100-150) to Armour", statOrder = { 863 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 809229260, }, - ["UniqueIncreasedPhysicalDamageReductionRating4"] = { affix = "", "+(150-200) to Armour", statOrder = { 863 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 809229260, }, - ["UniqueIncreasedEvasionRating1"] = { affix = "", "+(75-125) to Evasion Rating", statOrder = { 865 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, }, - ["UniqueIncreasedEvasionRating2"] = { affix = "", "+(40-50) to Evasion Rating", statOrder = { 865 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, }, - ["UniqueIncreasedEvasionRating3"] = { affix = "", "+(100-150) to Evasion Rating", statOrder = { 865 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, }, - ["UniqueIncreasedEvasionRating4"] = { affix = "", "+100 to Evasion Rating", statOrder = { 865 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, }, - ["UniqueIncreasedEvasionRating5"] = { affix = "", "+(300-600) to Evasion Rating", statOrder = { 865 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2144192055, }, - ["UniqueIncreasedEnergyShield1"] = { affix = "", "+(50-100) to maximum Energy Shield", statOrder = { 867 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, }, - ["UniqueIncreasedEnergyShield2"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 867 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, }, - ["UniqueIncreasedEnergyShield3"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 867 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, }, - ["UniqueIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(25-50)% increased Armour", statOrder = { 864 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 2866361420, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRating1"] = { affix = "", "+(0-40) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 3484657501, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRating2"] = { affix = "", "+(40-60) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 3484657501, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRating3"] = { affix = "", "+(15-25) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 3484657501, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRating4"] = { affix = "", "+(50-70) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 3484657501, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRating5"] = { affix = "", "+20 to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 3484657501, }, - ["UniqueLocalIncreasedEvasionRating1"] = { affix = "", "+(30-50) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, }, - ["UniqueLocalIncreasedEvasionRating2"] = { affix = "", "+(50-70) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, }, - ["UniqueLocalIncreasedEvasionRating3"] = { affix = "", "+(0-30) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, }, - ["UniqueLocalIncreasedEvasionRating4"] = { affix = "", "+(15-25) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, }, - ["UniqueLocalIncreasedEvasionRating5"] = { affix = "", "+(20-30) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, }, - ["UniqueLocalIncreasedEvasionRating6"] = { affix = "", "+(20-30) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 53045048, }, - ["UniqueLocalIncreasedEnergyShield1"] = { affix = "", "+(10-20) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, - ["UniqueLocalIncreasedEnergyShield2"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, - ["UniqueLocalIncreasedEnergyShield3"] = { affix = "", "+100 to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, - ["UniqueLocalIncreasedEnergyShield4"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, - ["UniqueLocalIncreasedEnergyShield5"] = { affix = "", "+(0-20) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, - ["UniqueLocalIncreasedEnergyShield6"] = { affix = "", "+(10-20) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, - ["UniqueLocalIncreasedEnergyShield7"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, - ["UniqueLocalIncreasedEnergyShield8"] = { affix = "", "+(80-120) to maximum Energy Shield", statOrder = { 833 }, level = 66, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, - ["UniqueLocalIncreasedEnergyShield9"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 833 }, level = 80, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, - ["UniqueLocalIncreasedEnergyShield10"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, - ["UniqueLocalIncreasedEnergyShield11"] = { affix = "", "+20 to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, - ["UniqueLocalIncreasedEnergyShield12"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, - ["UniqueLocalIncreasedEnergyShield13"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, - ["UniqueLocalIncreasedEnergyShield14"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, - ["UniqueLocalIncreasedEnergyShield15"] = { affix = "", "+(60-100) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, - ["UniqueLocalIncreasedEnergyShield16"] = { affix = "", "+(100-200) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, - ["UniqueLocalIncreasedEnergyShield17"] = { affix = "", "+(75-150) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, - ["UniqueLocalIncreasedEnergyShield18"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4052037485, }, - ["UniqueLocalBaseEvasionRatingAndEnergyShield1"] = { affix = "", "+(60-100) to Evasion Rating", "+(30-50) to maximum Energy Shield", statOrder = { 832, 833 }, level = 70, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, }, - ["UniqueLocalBaseEvasionRatingAndEnergyShield2"] = { affix = "", "+(20-25) to Evasion Rating", "+(10-15) to maximum Energy Shield", statOrder = { 832, 833 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 687065605, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(60-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent2"] = { affix = "", "(100-150)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent3"] = { affix = "", "(700-800)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent4"] = { affix = "", "(50-80)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent5"] = { affix = "", "(30-60)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent6"] = { affix = "", "(60-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent7"] = { affix = "", "(50-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent8"] = { affix = "", "(50-80)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent9"] = { affix = "", "(30-50)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent10"] = { affix = "", "(50-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent11"] = { affix = "", "(80-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent12"] = { affix = "", "(400-500)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent13"] = { affix = "", "(50-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent14"] = { affix = "", "(50-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent15"] = { affix = "", "(100-150)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent16"] = { affix = "", "(100-150)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent17"] = { affix = "", "(60-80)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent18"] = { affix = "", "(100-150)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent19"] = { affix = "", "(120-160)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent20"] = { affix = "", "(150-200)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent21"] = { affix = "", "(60-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent22"] = { affix = "", "(60-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent23"] = { affix = "", "(300-400)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent24"] = { affix = "", "(200-300)% increased Armour", statOrder = { 834 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent25"] = { affix = "", "(60-120)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent26"] = { affix = "", "(80-120)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent27"] = { affix = "", "(60-100)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent28"] = { affix = "", "(100-150)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent29"] = { affix = "", "(80-120)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedPhysicalDamageReductionRatingPercent30"] = { affix = "", "(150-200)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueLocalIncreasedEvasionRatingPercent1"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent2"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent3"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent4"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent5"] = { affix = "", "50% reduced Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent6"] = { affix = "", "(30-50)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent7"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent8"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent9"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent10"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent11"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent12"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent13"] = { affix = "", "(100-140)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent14"] = { affix = "", "(40-60)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent15"] = { affix = "", "(80-120)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent16"] = { affix = "", "(150-200)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent17"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent18"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent19"] = { affix = "", "(250-300)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent20"] = { affix = "", "(50-100)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent21"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent22"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent23"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent24"] = { affix = "", "(70-100)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent25"] = { affix = "", "(100-300)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent26"] = { affix = "", "(100-200)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent27"] = { affix = "", "(50-150)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent28"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent29"] = { affix = "", "(50-80)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent30"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent31"] = { affix = "", "(50-70)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent32"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent33"] = { affix = "", "(200-250)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEvasionRatingPercent34"] = { affix = "", "(80-120)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueLocalIncreasedEnergyShieldPercent1"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent2"] = { affix = "", "(50-80)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent3"] = { affix = "", "(50-70)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent4"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent5"] = { affix = "", "(40-60)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent6"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent7"] = { affix = "", "(30-50)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent8"] = { affix = "", "(50-80)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent9"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent10"] = { affix = "", "(50-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent11"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent12"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent13"] = { affix = "", "(100-200)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent14"] = { affix = "", "(50-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent15"] = { affix = "", "(50-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent16"] = { affix = "", "(100-140)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent17"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent18"] = { affix = "", "(120-160)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent19"] = { affix = "", "(50-70)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent20"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent21"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent22"] = { affix = "", "(70-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent23"] = { affix = "", "(100-140)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent24"] = { affix = "", "(80-120)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent25"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent26"] = { affix = "", "(100-140)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedEnergyShieldPercent27"] = { affix = "", "(150-200)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueLocalIncreasedArmourAndEvasion1"] = { affix = "", "(40-60)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion2"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion3"] = { affix = "", "(30-50)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion4"] = { affix = "", "(80-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion5"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion6"] = { affix = "", "(50-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion7"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion8"] = { affix = "", "(50-80)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion9"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion10"] = { affix = "", "(20-30)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion11"] = { affix = "", "(60-80)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion12"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion13"] = { affix = "", "(50-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion14"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion15"] = { affix = "", "(50-70)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion16"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion17"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion18"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion19"] = { affix = "", "(50-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion20"] = { affix = "", "(60-80)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion21"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion22"] = { affix = "", "(200-300)% increased Armour and Evasion", statOrder = { 837 }, level = 66, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion23"] = { affix = "", "(200-300)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion24"] = { affix = "", "(300-450)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion25"] = { affix = "", "50% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion26"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion27"] = { affix = "", "(600-800)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion28"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion29"] = { affix = "", "(100-200)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion30"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEvasion31"] = { affix = "", "(80-100)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueLocalIncreasedArmourAndEnergyShield1"] = { affix = "", "(30-60)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield2"] = { affix = "", "(30-50)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield3"] = { affix = "", "(30-50)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield4"] = { affix = "", "(40-60)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield5"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield6"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield7"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield8"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield9"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield10"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield11"] = { affix = "", "(50-100)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield12"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield13"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield14"] = { affix = "", "(60-100)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield15"] = { affix = "", "(60-100)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield16"] = { affix = "", "(333-666)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield17"] = { affix = "", "(150-250)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield18"] = { affix = "", "(70-130)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield19"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield20"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield21"] = { affix = "", "(200-300)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield22"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield23"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield24"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedArmourAndEnergyShield25"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueLocalIncreasedEvasionAndEnergyShield1"] = { affix = "", "(30-50)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, - ["UniqueLocalIncreasedEvasionAndEnergyShield2"] = { affix = "", "(30-60)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, - ["UniqueLocalIncreasedEvasionAndEnergyShield3"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, - ["UniqueLocalIncreasedEvasionAndEnergyShield4"] = { affix = "", "(30-50)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, - ["UniqueLocalIncreasedEvasionAndEnergyShield5"] = { affix = "", "(50-80)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, - ["UniqueLocalIncreasedEvasionAndEnergyShield6"] = { affix = "", "(30-50)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, - ["UniqueLocalIncreasedEvasionAndEnergyShield7"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, - ["UniqueLocalIncreasedEvasionAndEnergyShield8"] = { affix = "", "(40-60)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, - ["UniqueLocalIncreasedEvasionAndEnergyShield9"] = { affix = "", "(60-80)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, - ["UniqueLocalIncreasedEvasionAndEnergyShield10"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, - ["UniqueLocalIncreasedEvasionAndEnergyShield11"] = { affix = "", "(60-80)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, - ["UniqueLocalIncreasedEvasionAndEnergyShield12"] = { affix = "", "(400-500)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 70, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, - ["UniqueLocalIncreasedEvasionAndEnergyShield13"] = { affix = "", "(60-120)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, - ["UniqueLocalIncreasedEvasionAndEnergyShield14"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, - ["UniqueLocalIncreasedEvasionAndEnergyShield15"] = { affix = "", "(60-100)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, - ["UniqueLocalIncreasedEvasionAndEnergyShield16"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, - ["UniqueLocalIncreasedEvasionAndEnergyShield17"] = { affix = "", "(50-70)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, - ["UniqueLocalIncreasedEvasionAndEnergyShield18"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, - ["UniqueLocalIncreasedEvasionAndEnergyShield19"] = { affix = "", "(1-111)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, - ["UniqueLocalArmourAndEvasionAndEnergyShield1"] = { affix = "", "(300-400)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHash = 3523867985, }, - ["UniqueLocalArmourAndEvasionAndEnergyShield2"] = { affix = "", "(150-200)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHash = 3523867985, }, - ["UniqueLocalArmourAndEvasionAndEnergyShield3"] = { affix = "", "(100-150)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHash = 3523867985, }, - ["UniqueLocalArmourAndEvasionAndEnergyShield4"] = { affix = "", "(100-150)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHash = 3523867985, }, - ["UniqueReducedLocalAttributeRequirements1"] = { affix = "", "25% reduced Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, }, - ["UniqueReducedLocalAttributeRequirements2"] = { affix = "", "25% reduced Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, }, - ["UniqueReducedLocalAttributeRequirements3"] = { affix = "", "50% increased Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, }, - ["UniqueReducedLocalAttributeRequirements4"] = { affix = "", "50% increased Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, }, - ["UniqueReducedLocalAttributeRequirements5"] = { affix = "", "100% increased Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, }, - ["UniqueStunThreshold1"] = { affix = "", "+(40-60) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, - ["UniqueStunThreshold2"] = { affix = "", "+(30-50) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, - ["UniqueStunThreshold3"] = { affix = "", "+(200-300) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, - ["UniqueStunThreshold4"] = { affix = "", "+(75-150) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, - ["UniqueStunThreshold5"] = { affix = "", "+(50-70) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, - ["UniqueStunThreshold6"] = { affix = "", "+(60-100) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, - ["UniqueStunThreshold7"] = { affix = "", "+(60-80) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, - ["UniqueStunThreshold8"] = { affix = "", "+(60-80) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, - ["UniqueStunThreshold9"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, - ["UniqueStunThreshold10"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, - ["UniqueStunThreshold11"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, - ["UniqueStunThreshold12"] = { affix = "", "+(150-200) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, - ["UniqueStunThreshold13"] = { affix = "", "+2500 to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, - ["UniqueStunThreshold14"] = { affix = "", "+(60-100) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, - ["UniqueStunThreshold15"] = { affix = "", "+(60-80) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, - ["UniqueStunThreshold16"] = { affix = "", "+(60-80) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, - ["UniqueStunThreshold17"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, - ["UniqueStunThreshold18"] = { affix = "", "+(100-150) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, - ["UniqueStunThreshold19"] = { affix = "", "+(150-200) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, - ["UniqueStunThreshold20"] = { affix = "", "+(200-300) to Stun Threshold", statOrder = { 994 }, level = 1, group = "StunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 915769802, }, - ["UniqueMovementVelocity1"] = { affix = "", "10% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity2"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity3"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity4"] = { affix = "", "10% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity5"] = { affix = "", "15% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity6"] = { affix = "", "10% reduced Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity7"] = { affix = "", "10% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity8"] = { affix = "", "20% reduced Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity9"] = { affix = "", "10% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity10"] = { affix = "", "(15-25)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity11"] = { affix = "", "20% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity12"] = { affix = "", "20% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity13"] = { affix = "", "15% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity14"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity15"] = { affix = "", "20% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity16"] = { affix = "", "15% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity17"] = { affix = "", "(15-20)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity18"] = { affix = "", "10% reduced Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity19"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity20"] = { affix = "", "20% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity21"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity22"] = { affix = "", "(15-30)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity23"] = { affix = "", "10% reduced Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity24"] = { affix = "", "10% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity25"] = { affix = "", "(5-15)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity26"] = { affix = "", "5% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity27"] = { affix = "", "30% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueMovementVelocity28"] = { affix = "", "15% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["UniqueCannotSprint1"] = { affix = "", "You cannot Sprint", statOrder = { 4948 }, level = 1, group = "CannotSprint", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1536107934, }, - ["UniqueAttackerTakesDamage1"] = { affix = "", "(4-5) to (8-10) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, }, - ["UniqueAttackerTakesDamage2"] = { affix = "", "(3-5) to (6-10) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, }, - ["UniqueAttackerTakesDamage3"] = { affix = "", "(15-20) to (25-30) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, }, - ["UniqueAttackerTakesDamage4"] = { affix = "", "(10-15) to (20-25) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, }, - ["UniqueAttackerTakesDamage5"] = { affix = "", "(10-15) to (20-25) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, }, - ["UniqueAttackerTakesDamage6"] = { affix = "", "(25-30) to (35-40) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, }, - ["UniqueAttackerTakesDamage7"] = { affix = "", "(24-35) to (35-53) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, }, - ["UniqueAttackerTakesDamage8"] = { affix = "", "(20-31) to (31-49) Physical Thorns damage", statOrder = { 9653 }, level = 1, group = "ThornsPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2881298780, }, - ["UniqueAddedPhysicalDamage1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, }, - ["UniqueAddedPhysicalDamage2"] = { affix = "", "Adds (3-5) to (8-10) Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, }, - ["UniqueAddedPhysicalDamage3"] = { affix = "", "Adds (2-3) to (5-6) Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, }, - ["UniqueAddedPhysicalDamage4"] = { affix = "", "Adds (6-10) to (12-16) Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, }, - ["UniqueAddedPhysicalDamage5"] = { affix = "", "Adds (7-11) to (14-20) Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, }, - ["UniqueAddedPhysicalDamage6"] = { affix = "", "Adds (6-10) to (13-17) Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, }, - ["UniqueAddedPhysicalDamage7"] = { affix = "", "Adds (5-7) to (9-13) Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, }, - ["UniqueAddedPhysicalDamage8"] = { affix = "", "Adds (5-7) to (9-13) Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3032590688, }, - ["UniqueAddedFireDamage1"] = { affix = "", "Adds (3-5) to (6-9) Fire damage to Attacks", statOrder = { 844 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 1573130764, }, - ["UniqueAddedColdDamage1"] = { affix = "", "Adds (3-5) to (6-8) Cold damage to Attacks", statOrder = { 845 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, }, - ["UniqueAddedColdDamage2"] = { affix = "", "Adds (3-4) to (5-8) Cold damage to Attacks", statOrder = { 845 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, }, - ["UniqueAddedColdDamage3"] = { affix = "", "Adds (13-20) to (21-31) Cold damage to Attacks", statOrder = { 845 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 4067062424, }, - ["UniqueAddedLightningDamage1"] = { affix = "", "Adds 1 to (30-50) Lightning damage to Attacks", statOrder = { 846 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, }, - ["UniqueAddedLightningDamage2UNUSED"] = { affix = "", "Adds 1 to (60-100) Lightning damage to Attacks", statOrder = { 846 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, }, - ["UniqueAddedLightningDamage3"] = { affix = "", "Adds 1 to (30-50) Lightning damage to Attacks", statOrder = { 846 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1754445556, }, - ["UniqueAddedChaosDamage1"] = { affix = "", "Adds (4-6) to (8-10) Chaos Damage to Attacks", statOrder = { 1225 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 674553446, }, - ["UniqueAddedChaosDamage2"] = { affix = "", "Adds (13-19) to (20-30) Chaos Damage to Attacks", statOrder = { 1225 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 674553446, }, - ["UniqueAddedChaosDamage3"] = { affix = "", "Adds (5-8) to (10-12) Chaos Damage to Attacks", statOrder = { 1225 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 674553446, }, - ["UniqueAddedChaosDamage4"] = { affix = "", "Adds (35-44) to (50-62) Chaos Damage to Attacks", statOrder = { 1225 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 674553446, }, - ["UniqueLocalAddedPhysicalDamage1"] = { affix = "", "Adds (4-6) to (7-10) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage2"] = { affix = "", "Adds (8-12) to (16-18) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage3"] = { affix = "", "Adds (2-3) to (6-8) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage4"] = { affix = "", "Adds (8-12) to (16-20) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage5"] = { affix = "", "Adds (10-14) to (16-20) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage6"] = { affix = "", "Adds (4-6) to (8-10) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage7"] = { affix = "", "Adds (5-7) to (10-12) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage8"] = { affix = "", "Adds (12-15) to (22-25) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage9"] = { affix = "", "Adds (18-22) to (24-28) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage10"] = { affix = "", "Adds (13-15) to (22-25) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage11"] = { affix = "", "Adds (16-20) to (23-27) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage12"] = { affix = "", "Adds (58-65) to (102-110) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage13"] = { affix = "", "Adds (30-36) to (75-81) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage14"] = { affix = "", "Adds (40-48) to (65-72) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage15"] = { affix = "", "Adds (25-35) to (40-50) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage16"] = { affix = "", "Adds (11-15) to (18-24) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage17"] = { affix = "", "Adds (39-48) to (69-79) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage18"] = { affix = "", "Adds (21-26) to (25-31) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage19"] = { affix = "", "Adds (13-17) to (22-28) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage20"] = { affix = "", "Adds (14-26) to (27-32) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage21"] = { affix = "", "Adds (14-18) to (30-36) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage22"] = { affix = "", "Adds (10-15) to (21-26) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage23"] = { affix = "", "Adds (40-52) to (71-82) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage24"] = { affix = "", "Adds (14-21) to (25-37) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage25"] = { affix = "", "Adds (23-30) to (35-55) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage26"] = { affix = "", "Adds (35-47) to (53-79) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedPhysicalDamage27"] = { affix = "", "Adds (16-20) to (23-27) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueLocalAddedFireDamage1"] = { affix = "", "Adds (33-41) to (47-53) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, }, - ["UniqueLocalAddedFireDamage2"] = { affix = "", "Adds (4-6) to (8-10) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, }, - ["UniqueLocalAddedFireDamage3"] = { affix = "", "Adds (25-32) to (40-50) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, }, - ["UniqueLocalAddedFireDamage4"] = { affix = "", "Adds (15-21) to (26-32) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, }, - ["UniqueLocalAddedFireDamage5"] = { affix = "", "Adds (76-98) to (126-193) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, }, - ["UniqueLocalAddedFireDamage6"] = { affix = "", "Adds (71-93) to (107-168) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, }, - ["UniqueLocalAddedFireDamage7"] = { affix = "", "Adds (503-589) to (647-713) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, }, - ["UniqueLocalAddedFireDamage8"] = { affix = "", "Adds (83-97) to (123-153) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, }, - ["UniqueLocalAddedColdDamage1"] = { affix = "", "Adds (8-10) to (15-18) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, }, - ["UniqueLocalAddedColdDamage2"] = { affix = "", "Adds (8-12) to (16-20) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, }, - ["UniqueLocalAddedColdDamage3"] = { affix = "", "Adds (12-16) to (22-25) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, }, - ["UniqueLocalAddedColdDamage4"] = { affix = "", "Adds (8-10) to (13-15) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, }, - ["UniqueLocalAddedColdDamage5"] = { affix = "", "Adds (6-9) to (10-15) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, }, - ["UniqueLocalAddedColdDamage6"] = { affix = "", "Adds (13-18) to (24-29) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, }, - ["UniqueLocalAddedColdDamage7"] = { affix = "", "Adds (24-31) to (36-46) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, }, - ["UniqueLocalAddedLightningDamage1"] = { affix = "", "Adds 1 to (80-120) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, - ["UniqueLocalAddedLightningDamage2"] = { affix = "", "Adds 1 to (40-45) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, - ["UniqueLocalAddedLightningDamage3"] = { affix = "", "Adds 1 to (50-55) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, - ["UniqueLocalAddedLightningDamage4"] = { affix = "", "Adds 1 to (60-80) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, - ["UniqueLocalAddedLightningDamage5"] = { affix = "", "Adds 1 to (19-29) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, - ["UniqueLocalAddedLightningDamage6"] = { affix = "", "Adds 1 to (300-500) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, - ["UniqueLocalAddedLightningDamage7"] = { affix = "", "Adds 1 to (133-247) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, - ["UniqueLocalAddedLightningDamage8"] = { affix = "", "Adds 1 to (193-207) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, - ["UniqueLocalAddedLightningDamage9"] = { affix = "", "Adds (1-5) to (66-90) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, - ["UniqueLocalAddedLightningDamage10"] = { affix = "", "Adds 1 to (110-115) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, - ["UniqueLocalChaosDamage1"] = { affix = "", "Adds (25-36) to (44-55) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, - ["UniqueLocalChaosDamage2"] = { affix = "", "Adds (167-201) to (267-333) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, - ["UniqueNearbyAlliesAddedFireDamage1"] = { affix = "", "Allies in your Presence deal (15-23) to (28-35) added Attack Fire Damage", statOrder = { 883 }, level = 82, group = "AlliesInPresenceAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 849987426, }, - ["UniqueNearbyAlliesAddedColdDamage1"] = { affix = "", "Allies in your Presence deal (15-23) to (28-35) added Attack Cold Damage", statOrder = { 884 }, level = 82, group = "AlliesInPresenceAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2347036682, }, - ["UniqueNearbyAlliesAddedLightningDamage1"] = { affix = "", "Allies in your Presence deal 1 to (56-70) added Attack Lightning Damage", statOrder = { 885 }, level = 82, group = "AlliesInPresenceAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2854751904, }, - ["UniqueIncreasedPhysicalDamagePercent1"] = { affix = "", "(10-20)% increased Global Physical Damage", statOrder = { 1122 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1310194496, }, - ["UniqueLocalIncreasedPhysicalDamagePercent1"] = { affix = "", "(200-300)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, - ["UniqueLocalIncreasedPhysicalDamagePercent2"] = { affix = "", "(100-150)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, - ["UniqueLocalIncreasedPhysicalDamagePercent3"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, - ["UniqueLocalIncreasedPhysicalDamagePercent4"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, - ["UniqueLocalIncreasedPhysicalDamagePercent5"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, - ["UniqueLocalIncreasedPhysicalDamagePercent6"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, - ["UniqueLocalIncreasedPhysicalDamagePercent7"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, - ["UniqueLocalIncreasedPhysicalDamagePercent8"] = { affix = "", "(100-150)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, - ["UniqueLocalIncreasedPhysicalDamagePercent9"] = { affix = "", "(300-350)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, - ["UniqueLocalIncreasedPhysicalDamagePercent10"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, - ["UniqueLocalIncreasedPhysicalDamagePercent11"] = { affix = "", "(250-350)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, - ["UniqueLocalIncreasedPhysicalDamagePercent12"] = { affix = "", "(150-200)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, - ["UniqueLocalIncreasedPhysicalDamagePercent13"] = { affix = "", "(120-150)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, - ["UniqueLocalIncreasedPhysicalDamagePercent14"] = { affix = "", "(150-240)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, - ["UniqueLocalIncreasedPhysicalDamagePercent16"] = { affix = "", "(600-700)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, - ["UniqueLocalIncreasedPhysicalDamagePercent17"] = { affix = "", "(70-100)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, - ["UniqueLocalIncreasedPhysicalDamagePercent18"] = { affix = "", "(90-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, - ["UniqueLocalIncreasedPhysicalDamagePercent19"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, - ["UniqueLocalIncreasedPhysicalDamagePercent20"] = { affix = "", "(100-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, - ["UniqueNearbyAlliesAllDamage1"] = { affix = "", "Allies in your Presence deal 50% increased Damage", statOrder = { 881 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1798257884, }, - ["UniqueSpellDamageOnWeapon1"] = { affix = "", "(20-40)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, - ["UniqueSpellDamageOnWeapon2"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, - ["UniqueSpellDamageOnWeapon3"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, - ["UniqueSpellDamageOnWeapon4"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, - ["UniqueSpellDamageOnWeapon5"] = { affix = "", "(40-50)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, - ["UniqueSpellDamageOnWeapon6"] = { affix = "", "(60-100)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, - ["UniqueSpellDamageOnWeapon7"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, - ["UniqueSpellDamageOnWeapon8"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, - ["UniqueSpellDamageOnWeapon9"] = { affix = "", "(20-40)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, - ["UniqueSpellDamageOnWeapon10"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, - ["UniqueSpellDamageOnWeapon11"] = { affix = "", "(80-120)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, - ["UniqueFireDamageOnWeapon1"] = { affix = "", "(80-120)% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamageWeaponPrefix", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, }, - ["UniqueColdDamageOnWeapon1"] = { affix = "", "(80-120)% increased Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamageWeaponPrefix", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, }, - ["UniqueLightningDamageOnWeapon1"] = { affix = "", "(80-120)% increased Lightning Damage", statOrder = { 857 }, level = 1, group = "LightningDamageWeaponPrefix", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, }, - ["UniqueGlobalSpellGemsLevel1"] = { affix = "", "+(1-3) to Level of all Spell Skills", statOrder = { 922 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHash = 124131830, }, - ["UniqueGlobalSpellGemsLevel2"] = { affix = "", "+3 to Level of all Spell Skills", statOrder = { 922 }, level = 82, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, tradeHash = 124131830, }, - ["UniqueGlobalFireGemLevel1"] = { affix = "", "+(1-4) to Level of all Fire Skills", statOrder = { 6165 }, level = 1, group = "GlobalFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, tradeHash = 599749213, }, - ["UniqueGlobalLightningGemLevel1"] = { affix = "", "+1 to Level of all Lightning Skills", statOrder = { 7097 }, level = 1, group = "GlobalLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHash = 1147690586, }, - ["UniqueGlobalLightningGemLevel2"] = { affix = "", "+(2-4) to Level of all Lightning Skills", statOrder = { 7097 }, level = 1, group = "GlobalLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, tradeHash = 1147690586, }, - ["UniqueGlobalElementalGemLevel1"] = { affix = "", "+(2-4) to Level of all Elemental Skills", statOrder = { 5899 }, level = 1, group = "GlobalElementalGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 2901213448, }, - ["UniqueGlobalMinionSpellSkillGemLevel1"] = { affix = "", "+(1-2) to Level of all Minion Skills", statOrder = { 931 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHash = 2162097452, }, - ["UniqueGlobalMinionSpellSkillGemLevel2"] = { affix = "", "+(2-3) to Level of all Minion Skills", statOrder = { 931 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, tradeHash = 2162097452, }, - ["UniqueGlobalCurseGemLevel1"] = { affix = "", "+(1-2) to Level of all Curse Skills", statOrder = { 5540 }, level = 1, group = "GlobalCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 805298720, }, - ["UniqueGlobalIncreaseMeleeSkillGemLevel1"] = { affix = "", "+(2-3) to Level of all Melee Skills", statOrder = { 928 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 9187492, }, - ["UniqueLifeRegeneration1"] = { affix = "", "(10-20) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueLifeRegeneration2"] = { affix = "", "(7-12) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueLifeRegeneration3"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueLifeRegeneration4"] = { affix = "", "(3-6) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueLifeRegeneration5"] = { affix = "", "(0-6) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueLifeRegeneration6"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueLifeRegeneration7"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueLifeRegeneration8"] = { affix = "", "(20-25) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueLifeRegeneration9"] = { affix = "", "(3.1-6) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueLifeRegeneration10"] = { affix = "", "(15-25) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueLifeRegeneration11"] = { affix = "", "(3-5) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueLifeRegeneration12"] = { affix = "", "(6-10) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueLifeRegeneration13"] = { affix = "", "(3-6) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueLifeRegeneration14"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueLifeRegeneration15"] = { affix = "", "(3-5) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueLifeRegeneration16"] = { affix = "", "(30-60) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueLifeRegeneration17"] = { affix = "", "(10-20) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueLifeRegeneration18"] = { affix = "", "(10-15) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueLifeRegeneration19"] = { affix = "", "(8-12) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueLifeRegeneration20"] = { affix = "", "(8-12) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueLifeRegeneration21"] = { affix = "", "(5-10) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueLifeRegeneration22"] = { affix = "", "(25-35) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueLifeRegeneration23"] = { affix = "", "(15-30) Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueLifeRegeneration24"] = { affix = "", "5 Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["UniqueManaRegeneration1"] = { affix = "", "(10-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration2"] = { affix = "", "(15-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration3"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration4"] = { affix = "", "100% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration5"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration6"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration7"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration8"] = { affix = "", "(50-100)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration9"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration10"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration11"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration12"] = { affix = "", "50% reduced Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration13"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration14"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration15"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration16"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration17"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration18"] = { affix = "", "(25-35)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 40, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration19"] = { affix = "", "(25-35)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 40, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration20"] = { affix = "", "25% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration21"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration22"] = { affix = "", "(40-60)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration23"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration24"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration25"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration26"] = { affix = "", "(15-25)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration27"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration28"] = { affix = "", "40% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration29"] = { affix = "", "50% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration30"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueManaRegeneration31"] = { affix = "", "(-30-30)% reduced Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["UniqueLifeLeech1"] = { affix = "", "Leech 5% of Physical Attack Damage as Life", statOrder = { 971 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 2557965901, }, - ["UniqueLifeLeechLocal1"] = { affix = "", "Leeches (5-8)% of Physical Damage as Life", statOrder = { 972 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, }, - ["UniqueLifeLeechLocal2"] = { affix = "", "Leeches 10% of Physical Damage as Life", statOrder = { 972 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, }, - ["UniqueLifeLeechLocal3"] = { affix = "", "Leeches (10-20)% of Physical Damage as Life", statOrder = { 972 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, }, - ["UniqueManaLeechLocal1"] = { affix = "", "Leeches (4-7)% of Physical Damage as Mana", statOrder = { 978 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 669069897, }, - ["UniqueLifeGainedFromEnemyDeath1"] = { affix = "", "Gain 3 Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, - ["UniqueLifeGainedFromEnemyDeath2"] = { affix = "", "Gain 10 Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, - ["UniqueLifeGainedFromEnemyDeath3"] = { affix = "", "Gain (7-10) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, - ["UniqueLifeGainedFromEnemyDeath4"] = { affix = "", "Gain (20-30) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, - ["UniqueLifeGainedFromEnemyDeath5"] = { affix = "", "Gain (20-30) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, - ["UniqueLifeGainedFromEnemyDeath6"] = { affix = "", "Gain (10-20) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, - ["UniqueLifeGainedFromEnemyDeath7"] = { affix = "", "Gain (10-15) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, - ["UniqueLifeGainedFromEnemyDeath8"] = { affix = "", "Gain 30 Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, - ["UniqueLifeGainedFromEnemyDeath9"] = { affix = "", "Gain (5-10) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, - ["UniqueLifeGainedFromEnemyDeath10"] = { affix = "", "Lose 10 Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, - ["UniqueLifeGainedFromEnemyDeath11"] = { affix = "", "Gain (30-50) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3695891184, }, - ["UniqueManaGainedFromEnemyDeath1"] = { affix = "", "Lose 3 Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, - ["UniqueManaGainedFromEnemyDeath2"] = { affix = "", "Gain (1-10) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, - ["UniqueManaGainedFromEnemyDeath3"] = { affix = "", "Gain 10 Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, - ["UniqueManaGainedFromEnemyDeath4"] = { affix = "", "Gain (4-6) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, - ["UniqueManaGainedFromEnemyDeath5"] = { affix = "", "Gain (20-30) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, - ["UniqueManaGainedFromEnemyDeath6"] = { affix = "", "Gain (12-18) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, - ["UniqueManaGainedFromEnemyDeath7"] = { affix = "", "Gain 5 Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, - ["UniqueManaGainedFromEnemyDeath8"] = { affix = "", "Gain (25-35) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, - ["UniqueManaGainedFromEnemyDeath9"] = { affix = "", "Gain (10-15) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, - ["UniqueManaGainedFromEnemyDeath10"] = { affix = "", "Gain (25-35) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, - ["UniqueManaGainedFromEnemyDeath11"] = { affix = "", "Gain (10-15) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1368271171, }, - ["UniqueLifeGainPerTarget1"] = { affix = "", "Gain 25 Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, }, - ["UniqueLifeGainPerTarget2"] = { affix = "", "Gain 5 Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, }, - ["UniqueManaGainPerTarget1"] = { affix = "", "Gain 15 Mana per Enemy Hit with Attacks", statOrder = { 1433 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 820939409, }, - ["UniqueIncreasedAttackSpeed1"] = { affix = "", "(4-6)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, - ["UniqueIncreasedAttackSpeed2"] = { affix = "", "(4-8)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, - ["UniqueIncreasedAttackSpeed3"] = { affix = "", "5% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, - ["UniqueIncreasedAttackSpeed4"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, - ["UniqueIncreasedAttackSpeed5"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, - ["UniqueIncreasedAttackSpeed6"] = { affix = "", "(10-15)% reduced Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, - ["UniqueIncreasedAttackSpeed7"] = { affix = "", "5% reduced Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, - ["UniqueIncreasedAttackSpeed8"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, - ["UniqueIncreasedAttackSpeed9"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, - ["UniqueIncreasedAttackSpeed10"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, - ["UniqueIncreasedAttackSpeed11"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, - ["UniqueIncreasedAttackSpeed13"] = { affix = "", "(1-11)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, - ["UniqueIncreasedAttackSpeed14"] = { affix = "", "35% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueIncreasedAttackSpeed15"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, - ["UniqueLocalIncreasedAttackSpeed1"] = { affix = "", "10% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed2"] = { affix = "", "100% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed3"] = { affix = "", "(15-30)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed4"] = { affix = "", "10% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed5"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed6"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed7"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed8"] = { affix = "", "(30-40)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed9"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed10"] = { affix = "", "(5-30)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed11"] = { affix = "", "(20-30)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed12"] = { affix = "", "20% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed13"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed14"] = { affix = "", "10% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed15"] = { affix = "", "50% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed16"] = { affix = "", "(10-15)% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed17"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed18"] = { affix = "", "10% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed19"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed20"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed21"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed22"] = { affix = "", "10% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed23"] = { affix = "", "(7-16)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed24"] = { affix = "", "(7-13)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed25"] = { affix = "", "(6-12)% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed26"] = { affix = "", "(15-20)% reduced Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueLocalIncreasedAttackSpeed27"] = { affix = "", "(10-16)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniqueNearbyAlliesIncreasedAttackSpeed1"] = { affix = "", "Allies in your Presence have (10-20)% increased Attack Speed", statOrder = { 893 }, level = 1, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1998951374, }, - ["UniqueIncreasedCastSpeed1"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["UniqueIncreasedCastSpeed2"] = { affix = "", "(7-10)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["UniqueIncreasedCastSpeed3"] = { affix = "", "(15-25)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["UniqueIncreasedCastSpeed4"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["UniqueIncreasedCastSpeed5"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["UniqueIncreasedCastSpeed6"] = { affix = "", "(15-25)% reduced Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["UniqueIncreasedCastSpeed7"] = { affix = "", "(6-12)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["UniqueIncreasedCastSpeed8"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["UniqueIncreasedCastSpeed9"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["UniqueIncreasedCastSpeed10"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["UniqueIncreasedCastSpeed11"] = { affix = "", "(20-30)% increased Cast Speed", statOrder = { 942 }, level = 71, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["UniqueIncreasedCastSpeed12"] = { affix = "", "15% reduced Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["UniqueIncreasedCastSpeed13"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["UniqueIncreasedCastSpeed14"] = { affix = "", "(6-8)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["UniqueIncreasedCastSpeed15"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["UniqueIncreasedCastSpeed16"] = { affix = "", "(10-20)% reduced Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["UniqueIncreasedCastSpeed17"] = { affix = "", "(15-30)% increased Cast Speed", statOrder = { 942 }, level = 82, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["UniqueIncreasedCastSpeed18"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 82, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["UniqueIncreasedCastSpeed19"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 942 }, level = 82, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["UniqueIncreasedCastSpeed20"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["UniqueNearbyAlliesIncreasedCastSpeed1"] = { affix = "", "Allies in your Presence have (10-20)% increased Cast Speed", statOrder = { 894 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 289128254, }, - ["UniqueIncreasedAccuracy1"] = { affix = "", "+(200-300) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, - ["UniqueIncreasedAccuracy2"] = { affix = "", "+(50-100) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, - ["UniqueIncreasedAccuracy3"] = { affix = "", "+(0-60) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, - ["UniqueIncreasedAccuracy4"] = { affix = "", "+(60-100) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, - ["UniqueIncreasedAccuracy5"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, - ["UniqueIncreasedAccuracy6"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, - ["UniqueIncreasedAccuracy7"] = { affix = "", "+(75-125) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, - ["UniqueIncreasedAccuracy8"] = { affix = "", "+(75-125) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, - ["UniqueIncreasedAccuracy9"] = { affix = "", "+(150-200) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, - ["UniqueIncreasedAccuracy10"] = { affix = "", "+(200-400) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, - ["UniqueIncreasedAccuracy11"] = { affix = "", "+(200-300) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, - ["UniqueIncreasedAccuracy12"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, - ["UniqueIncreasedAccuracy13"] = { affix = "", "+(300-600) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 803737631, }, - ["UniqueIncreasedAccuracy14"] = { affix = "", "-(300-200) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, }, - ["UniqueLocalIncreasedAccuracy1"] = { affix = "", "+(30-50) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, }, - ["UniqueLocalIncreasedAccuracy2"] = { affix = "", "+(30-50) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, }, - ["UniqueLocalIncreasedAccuracy3"] = { affix = "", "+(50-70) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, }, - ["UniqueLocalIncreasedAccuracy4"] = { affix = "", "+(50-100) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, }, - ["UniqueLocalIncreasedAccuracy5"] = { affix = "", "+(300-400) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, }, - ["UniqueLocalIncreasedAccuracy6"] = { affix = "", "+(30-50) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, }, - ["UniqueLocalIncreasedAccuracy7"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, }, - ["UniqueLocalIncreasedAccuracy8"] = { affix = "", "+(300-500) to Accuracy Rating", statOrder = { 826 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 691932474, }, - ["UniqueCriticalStrikeChance1"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, - ["UniqueCriticalStrikeChance2"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, - ["UniqueCriticalStrikeChance3"] = { affix = "", "(30-40)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, - ["UniqueCriticalStrikeChance4"] = { affix = "", "(0-30)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, - ["UniqueCriticalStrikeChance5"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, - ["UniqueCriticalStrikeChance6"] = { affix = "", "(15-25)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, - ["UniqueCriticalStrikeChance7"] = { affix = "", "(25-35)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, - ["UniqueCriticalStrikeChance8"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, - ["UniqueCriticalStrikeChance9"] = { affix = "", "(100-200)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, - ["UniqueCriticalStrikeChance10"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, - ["UniqueCriticalStrikeChance11"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, - ["UniqueCriticalStrikeChance12"] = { affix = "", "(20-30)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, - ["UniqueCriticalStrikeChance13"] = { affix = "", "(15-25)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, - ["UniqueCriticalStrikeChance14"] = { affix = "", "(30-50)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, - ["UniqueCriticalStrikeChance15"] = { affix = "", "100% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, - ["UniqueLocalCriticalStrikeChance1"] = { affix = "", "+15% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, }, - ["UniqueLocalCriticalStrikeChance2"] = { affix = "", "+(3-5)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, }, - ["UniqueLocalCriticalStrikeChance3"] = { affix = "", "+5% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, }, - ["UniqueLocalCriticalStrikeChance4"] = { affix = "", "+(5-10)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, }, - ["UniqueLocalCriticalStrikeChance5"] = { affix = "", "+5% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, }, - ["UniqueLocalCriticalStrikeChance6"] = { affix = "", "+(4-6)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, }, - ["UniqueLocalCriticalStrikeChance7"] = { affix = "", "+5% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, }, - ["UniqueLocalCriticalStrikeChance8"] = { affix = "", "+(5-8)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, }, - ["UniqueLocalCriticalStrikeChance9"] = { affix = "", "+(4-7)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 518292764, }, - ["UniqueSpellCriticalStrikeChance1"] = { affix = "", "(20-40)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 737908626, }, - ["UniqueSpellCriticalStrikeChance2"] = { affix = "", "(30-50)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 737908626, }, - ["UniqueSpellCriticalStrikeChance3"] = { affix = "", "(30-50)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 737908626, }, - ["UniqueNearbyAlliesCriticalStrikeChance1"] = { affix = "", "Allies in your Presence have (20-30)% increased Critical Hit Chance", statOrder = { 891 }, level = 1, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1250712710, }, - ["UniqueNearbyAlliesCriticalStrikeChance2"] = { affix = "", "Allies in your Presence have (30-50)% increased Critical Hit Chance", statOrder = { 891 }, level = 1, group = "AlliesInPresenceCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1250712710, }, - ["UniqueCriticalMultiplier1"] = { affix = "", "(10-15)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3556824919, }, - ["UniqueCriticalMultiplier2"] = { affix = "", "(20-30)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3556824919, }, - ["UniqueCriticalMultiplier3"] = { affix = "", "(20-30)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3556824919, }, - ["UniqueLocalCriticalMultiplier1"] = { affix = "", "+(20-25)% to Critical Damage Bonus", statOrder = { 918 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, }, - ["UniqueLocalCriticalMultiplier2"] = { affix = "", "+(20-30)% to Critical Damage Bonus", statOrder = { 918 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHash = 2694482655, }, - ["UniqueSpellCriticalStrikeMultiplier1"] = { affix = "", "(30-50)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 274716455, }, - ["UniqueSpellCriticalStrikeMultiplier2"] = { affix = "", "(20-30)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 274716455, }, - ["UniqueNearbyAlliesCriticalMultiplier1"] = { affix = "", "Allies in your Presence have (30-50)% increased Critical Damage Bonus", statOrder = { 892 }, level = 1, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3057012405, }, - ["UniqueItemFoundRarityIncrease1"] = { affix = "", "(40-50)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["UniqueItemFoundRarityIncrease2"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["UniqueItemFoundRarityIncrease3"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["UniqueItemFoundRarityIncrease4"] = { affix = "", "(5-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["UniqueItemFoundRarityIncrease5"] = { affix = "", "(50-70)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["UniqueItemFoundRarityIncrease6"] = { affix = "", "(6-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["UniqueItemFoundRarityIncrease7"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["UniqueItemFoundRarityIncrease8"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["UniqueItemFoundRarityIncrease9"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["UniqueItemFoundRarityIncrease10"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["UniqueItemFoundRarityIncrease11"] = { affix = "", "(0-20)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["UniqueItemFoundRarityIncrease12"] = { affix = "", "(30-50)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["UniqueItemFoundRarityIncrease13"] = { affix = "", "(30-50)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["UniqueItemFoundRarityIncrease14"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["UniqueItemFoundRarityIncrease15"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 916 }, level = 50, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["UniqueItemFoundRarityIncrease16"] = { affix = "", "(30-40)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["UniqueItemFoundRarityIncrease17"] = { affix = "", "(-25-25)% reduced Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["UniqueItemFoundRarityIncrease18"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["UniqueItemFoundRarityIncrease19"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["UniqueItemFoundRarityIncrease20"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["UniqueItemFoundRarityIncrease21"] = { affix = "", "(10-15)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["UniqueItemFoundRarityIncrease22"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["UniqueItemFoundRarityIncrease23"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["UniqueLightRadius1"] = { affix = "", "25% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["UniqueLightRadius2"] = { affix = "", "20% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["UniqueLightRadius3"] = { affix = "", "25% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["UniqueLightRadius4"] = { affix = "", "20% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["UniqueLightRadius5"] = { affix = "", "40% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["UniqueLightRadius6"] = { affix = "", "25% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["UniqueLightRadius7"] = { affix = "", "30% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["UniqueLightRadius8"] = { affix = "", "30% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["UniqueLightRadius9"] = { affix = "", "25% increased Light Radius", statOrder = { 1003 }, level = 82, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["UniqueLightRadius10"] = { affix = "", "30% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["UniqueLightRadius11"] = { affix = "", "25% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["UniqueLightRadius12"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["UniqueLightRadius13"] = { affix = "", "30% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["UniqueLightRadius14"] = { affix = "", "25% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["UniqueLightRadius15"] = { affix = "", "25% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["UniqueLightRadius16"] = { affix = "", "(20-30)% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["UniqueLightRadius17"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["UniqueLightRadius18"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["UniqueLightRadius19"] = { affix = "", "10% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["UniqueLightRadius20"] = { affix = "", "23% reduced Light Radius", statOrder = { 1003 }, level = 82, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["UniqueLocalBlockChance1"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, - ["UniqueLocalBlockChance2"] = { affix = "", "(80-100)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, - ["UniqueLocalBlockChance3"] = { affix = "", "(15-20)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, - ["UniqueLocalBlockChance4"] = { affix = "", "(20-25)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, - ["UniqueLocalBlockChance5"] = { affix = "", "(20-30)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, - ["UniqueLocalBlockChance6"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, - ["UniqueLocalBlockChance7"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, - ["UniqueLocalBlockChance8"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, - ["UniqueLocalBlockChance9"] = { affix = "", "(30-50)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, - ["UniqueLocalBlockChance10"] = { affix = "", "(20-30)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, - ["UniqueLocalBlockChance11"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, - ["UniqueLocalBlockChance12"] = { affix = "", "(40-60)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, - ["UniqueLocalBlockChance13"] = { affix = "", "30% reduced Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, - ["UniqueLocalBlockChance14"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2481353198, }, - ["UniqueIncreasedSpirit1"] = { affix = "", "+100 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, - ["UniqueIncreasedSpirit2"] = { affix = "", "+50 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, - ["UniqueIncreasedSpirit3"] = { affix = "", "+50 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, - ["UniqueIncreasedSpirit4"] = { affix = "", "+100 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, - ["UniqueIncreasedSpirit5"] = { affix = "", "+30 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, - ["UniqueIncreasedSpirit6"] = { affix = "", "+(25-35) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, - ["UniqueIncreasedSpirit7"] = { affix = "", "+(0-20) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, - ["UniqueIncreasedSpirit8"] = { affix = "", "+50 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, - ["UniqueIncreasedSpirit9"] = { affix = "", "+(20-40) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, - ["UniqueIncreasedSpirit10"] = { affix = "", "+(30-40) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, - ["UniqueIncreasedSpirit11"] = { affix = "", "+(30-50) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, - ["UniqueIncreasedSpirit12"] = { affix = "", "+(10-30) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, - ["UniqueIncreasedSpirit13"] = { affix = "", "+(100-150) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, - ["UniqueIncreasedSpirit14"] = { affix = "", "+50 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, - ["UniqueLocalIncreasedSpiritPercent1"] = { affix = "", "(30-50)% increased Spirit", statOrder = { 842 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3984865854, }, - ["UniqueLocalIncreasedSpiritPercent2"] = { affix = "", "(30-50)% increased Spirit", statOrder = { 842 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3984865854, }, - ["UniqueLocalIncreasedSpiritPercent3"] = { affix = "", "(25-35)% increased Spirit", statOrder = { 842 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3984865854, }, - ["UniqueReducedBurnDuration1"] = { affix = "", "(30-50)% reduced Ignite Duration on you", statOrder = { 996 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 986397080, }, - ["UniqueReducedBurnDuration2"] = { affix = "", "(30-50)% reduced Ignite Duration on you", statOrder = { 996 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 986397080, }, - ["UniqueReducedShockDuration1"] = { affix = "", "(30-50)% reduced Shock duration on you", statOrder = { 999 }, level = 1, group = "ReducedShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 99927264, }, - ["UniqueReducedChillDuration1"] = { affix = "", "(30-50)% reduced Chill Duration on you", statOrder = { 997 }, level = 1, group = "ReducedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1874553720, }, - ["UniqueReducedFreezeDuration1"] = { affix = "", "(30-50)% reduced Freeze Duration on you", statOrder = { 998 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2160282525, }, - ["UniqueReducedPoisonDuration1"] = { affix = "", "(40-60)% reduced Poison Duration on you", statOrder = { 1000 }, level = 1, group = "ReducedPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3301100256, }, - ["UniqueReducedBleedDuration1"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, }, - ["UniqueReducedBleedDuration2"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, }, - ["UniqueReducedBleedDuration3"] = { affix = "", "(30-50)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, }, - ["UniqueReducedBleedDuration4"] = { affix = "", "(40-60)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 1, group = "ReducedBleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, }, - ["UniqueAdditionalPhysicalDamageReduction1"] = { affix = "", "15% additional Physical Damage Reduction", statOrder = { 951 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3771516363, }, - ["UniqueMaximumFireResist1"] = { affix = "", "+(3-5)% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, }, - ["UniqueMaximumFireResist2"] = { affix = "", "+5% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, }, - ["UniqueMaximumColdResist1"] = { affix = "", "+(3-5)% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, }, - ["UniqueMaximumColdResist2"] = { affix = "", "+5% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, }, - ["UniqueMaximumLightningResist1"] = { affix = "", "+(3-5)% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, }, - ["UniqueMaximumLightningResist2"] = { affix = "", "+5% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, }, - ["UniqueMaximumElementalResistance1"] = { affix = "", "-(5-1)% to all Maximum Elemental Resistances", statOrder = { 952 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1978899297, }, - ["UniqueEnergyShieldRechargeRate1"] = { affix = "", "(20-30)% reduced Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, }, - ["UniqueEnergyShieldRechargeRate2"] = { affix = "", "50% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, }, - ["UniqueEnergyShieldRechargeRate3"] = { affix = "", "40% reduced Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, }, - ["UniqueEnergyShieldRechargeRate4"] = { affix = "", "(30-50)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, }, - ["UniqueEnergyShieldRechargeRate5"] = { affix = "", "(50-100)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, }, - ["UniqueEnergyShieldRechargeRate6"] = { affix = "", "1000% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, }, - ["UniqueEnergyShieldRechargeRate7"] = { affix = "", "(30-50)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, }, - ["UniqueArrowPierceChance1"] = { affix = "", "(15-25)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 1, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2321178454, }, - ["UniqueAdditionalArrow1"] = { affix = "", "Bow Attacks fire 3 additional Arrows", statOrder = { 945 }, level = 1, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3885405204, }, - ["UniqueArrowsReturnAfterPiercingXTimes1"] = { affix = "", "Attack Projectiles Return if they Pierced at least (2-4) times", statOrder = { 2478 }, level = 1, group = "ArrowsReturnAfterPiercingXTimes", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2720781168, }, - ["UniqueProjectileIncreasedCriticalHitChancePerPierce1"] = { affix = "", "Projectiles have (42-64)% increased Critical Hit chance for each time they have Pierced", statOrder = { 8990 }, level = 1, group = "ProjectileIncreasedCriticalHitChancePerPierce", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1163615092, }, - ["UniqueProjectileIncreasedDamagePerPierce1"] = { affix = "", "Projectiles deal (42-64)% increased Damage with Hits for each time they have Pierced", statOrder = { 8980 }, level = 1, group = "ProjectileIncreasedDamagePerPierce", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 883169830, }, - ["UniqueFlaskLifeRecoveryRate1"] = { affix = "", "(30-50)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, }, - ["UniqueFlaskLifeRecoveryRate2"] = { affix = "", "(40-60)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, }, - ["UniqueFlaskLifeRecoveryRate3"] = { affix = "", "(20-30)% reduced Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, }, - ["UniqueFlaskLifeRecoveryRate4"] = { affix = "", "(-25-25)% reduced Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, }, - ["UniqueFlaskLifeRecoveryRate5"] = { affix = "", "(20-30)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, }, - ["UniqueFlaskLifeRecoveryRate6"] = { affix = "", "(20-30)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, }, - ["UniqueFlaskLifeRecoveryRate7"] = { affix = "", "(15-35)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, }, - ["UniqueFlaskManaRecoveryRate1"] = { affix = "", "(40-60)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, }, - ["UniqueFlaskManaRecoveryRate2"] = { affix = "", "(-25-25)% reduced Flask Mana Recovery rate", statOrder = { 877 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, }, - ["UniqueFlaskManaRecoveryRate3"] = { affix = "", "(20-30)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, }, - ["UniqueFlaskManaRecoveryRate4"] = { affix = "", "(20-30)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, }, - ["UniqueIncreasedFlaskChargesGained1"] = { affix = "", "100% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, }, - ["UniqueIncreasedFlaskChargesGained2"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, }, - ["UniqueIncreasedFlaskChargesGained3"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, }, - ["UniqueIncreasedFlaskChargesGained4"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, }, - ["UniqueReducedFlaskChargesUsed1"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, }, - ["UniqueReducedFlaskChargesUsed2"] = { affix = "", "50% increased Flask Charges used", statOrder = { 982 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 644456512, }, - ["UniqueReducedFlaskChargesUsed3"] = { affix = "", "(10-15)% reduced Flask Charges used", statOrder = { 982 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 644456512, }, - ["UniqueIncreasedCharmChargesGained1"] = { affix = "", "(-20-20)% reduced Charm Charges gained", statOrder = { 5227 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3585532255, }, - ["UniqueIncreasedCharmChargesGained2"] = { affix = "", "(20-30)% increased Charm Charges gained", statOrder = { 5227 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3585532255, }, - ["UniqueReducedCharmChargesUsed1"] = { affix = "", "(10-30)% increased Charm Charges used", statOrder = { 5229 }, level = 1, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1570770415, }, - ["UniqueReducedCharmChargesUsed2"] = { affix = "", "(-10-10)% reduced Charm Charges used", statOrder = { 5229 }, level = 1, group = "BeltReducedCharmChargesUsed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1570770415, }, - ["UniqueAdditionalCharm1"] = { affix = "", "+(0-2) Charm Slot", statOrder = { 944 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2582079000, }, - ["UniqueAdditionalCharm2"] = { affix = "", "+(1-2) Charm Slot", statOrder = { 944 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2582079000, }, - ["UniqueAdditionalCharm3"] = { affix = "", "+2 Charm Slots", statOrder = { 944 }, level = 1, group = "AdditionalCharm", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2582079000, }, - ["UniqueIgniteChanceIncrease1"] = { affix = "", "100% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2968503605, }, - ["UniqueIgniteChanceIncrease2"] = { affix = "", "100% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2968503605, }, - ["UniqueIgniteChanceIncrease3"] = { affix = "", "50% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2968503605, }, - ["UniqueIgniteChanceIncrease4"] = { affix = "", "(30-50)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2968503605, }, - ["UniqueFreezeDamageIncrease1"] = { affix = "", "30% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 473429811, }, - ["UniqueFreezeDamageIncrease2"] = { affix = "", "(40-50)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 473429811, }, - ["UniqueFreezeDamageIncrease3"] = { affix = "", "(30-50)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 473429811, }, - ["UniqueFreezeDamageIncrease4"] = { affix = "", "(20-30)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 473429811, }, - ["UniqueShockChanceIncrease1"] = { affix = "", "(50-100)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 293638271, }, - ["UniqueShockChanceIncrease2"] = { affix = "", "(10-20)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 293638271, }, - ["UniqueShockChanceIncrease3UNUSED"] = { affix = "", "(50-100)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 293638271, }, - ["UniqueShockChanceIncrease4"] = { affix = "", "(20-40)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 293638271, }, - ["UniqueStunDuration1"] = { affix = "", "(10-20)% increased Stun Duration", statOrder = { 987 }, level = 1, group = "LocalStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 748522257, }, - ["UniqueStunDamageIncrease1"] = { affix = "", "(30-50)% increased Stun Buildup", statOrder = { 984 }, level = 1, group = "StunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 239367161, }, - ["UniqueStunDamageIncrease2"] = { affix = "", "(20-30)% increased Stun Buildup", statOrder = { 984 }, level = 1, group = "StunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 239367161, }, - ["UniqueLocalStunDamageIncrease1"] = { affix = "", "Causes (30-50)% increased Stun Buildup", statOrder = { 985 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 791928121, }, - ["UniqueLocalStunDamageIncrease2"] = { affix = "", "Causes (150-200)% increased Stun Buildup", statOrder = { 985 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 791928121, }, - ["UniqueLocalStunDamageIncrease3"] = { affix = "", "Causes (40-60)% increased Stun Buildup", statOrder = { 985 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 791928121, }, - ["UniqueMeleeDamageAgainstStunnedEnemies1"] = { affix = "", "(35-50)% increased Melee Damage against Heavy Stunned enemies", statOrder = { 8370 }, level = 1, group = "MeleeDamageAgainstStunnedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2677352961, }, - ["UniqueSpellDamage1"] = { affix = "", "100% increased Spell Damage", statOrder = { 853 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, - ["UniqueSpellDamage2"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, - ["UniqueSpellDamage3"] = { affix = "", "(60-100)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, - ["UniqueFireDamagePercent1"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, }, - ["UniqueFireDamagePercent2"] = { affix = "", "(20-40)% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, }, - ["UniqueColdDamagePercent1"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, }, - ["UniqueColdDamagePercent2"] = { affix = "", "(10-20)% reduced Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, }, - ["UniqueElementalDamagePercent1"] = { affix = "", "(15-30)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, - ["UniqueWeaponElementalDamage1"] = { affix = "", "100% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 387439868, }, - ["UniqueProjectileSpeed1"] = { affix = "", "(40-60)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3759663284, }, - ["UniqueProjectileSpeed2"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3759663284, }, - ["UniqueProjectileSpeed3"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3759663284, }, - ["UniqueDamageTakenGainedAsLife1"] = { affix = "", "(5-30)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1444556985, }, - ["UniqueDamageTakenGainedAsLife2"] = { affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1444556985, }, - ["UniqueDamageTakenGoesToMana1"] = { affix = "", "50% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, }, - ["UniqueDamageTakenGoesToMana2"] = { affix = "", "(5-30)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, }, - ["UniqueDamageGainedAsFire1"] = { affix = "", "Gain (40-60)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, }, - ["UniqueDamageGainedAsFire2"] = { affix = "", "Gain 25% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, }, - ["UniqueDamageGainedAsFire3"] = { affix = "", "Gain (30-50)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, }, - ["UniqueDamageGainedAsCold1"] = { affix = "", "Gain 25% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, }, - ["UniqueDamageGainedAsCold2"] = { affix = "", "Gain (15-25)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, }, - ["UniqueDamageGainedAsLightning1"] = { affix = "", "Gain 25% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, }, - ["UniqueDamageGainedAsChaos1"] = { affix = "", "Gain 27% of Damage as Extra Chaos Damage", statOrder = { 1602 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3398787959, }, - ["UniquePresenceRadius1"] = { affix = "", "50% reduced Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 101878827, }, - ["UniquePresenceRadius2"] = { affix = "", "50% reduced Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 101878827, }, - ["UniquePresenceRadius3"] = { affix = "", "(30-60)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 101878827, }, - ["UniquePresenceRadius4"] = { affix = "", "(30-40)% reduced Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 101878827, }, - ["UniquePresenceRadius5"] = { affix = "", "(60-80)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 101878827, }, - ["UniqueGlobalProjectileGemLevel1"] = { affix = "", "+(1-2) to Level of all Projectile Skills", statOrder = { 930 }, level = 1, group = "GlobalIncreaseProjectileSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1202301673, }, - ["UniqueGlobalMeleeGemLevel1"] = { affix = "", "+(1-2) to Level of all Melee Skills", statOrder = { 928 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 9187492, }, - ["UniqueProjectileDamageIfMeleeHitRecently1"] = { affix = "", "(30-60)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 8973 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3596695232, }, - ["UniqueMeleeDamageIfProjectileHitRecently1"] = { affix = "", "(30-60)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8364 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3028809864, }, - ["UniqueCursesNeverExpire1"] = { affix = "", "Curses you inflict have infinite Duration", statOrder = { 1828 }, level = 1, group = "CursesNeverExpire", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2609822974, }, - ["UniqueMinionLife1"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, }, - ["UniqueMinionLife2"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, }, - ["UniqueMinionLife3"] = { affix = "", "Minions have (10-15)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, }, - ["UniqueMinionLife4"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, }, - ["UniqueMinionLife5"] = { affix = "", "Minions have 50% reduced maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, }, - ["UniqueMinionLife6"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, }, - ["UniqueMinionDamage1"] = { affix = "", "Minions deal (20-30)% increased Damage", statOrder = { 1646 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 1589917703, }, - ["UniqueMinionDamage2"] = { affix = "", "Minions deal (80-100)% increased Damage", statOrder = { 1646 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 1589917703, }, - ["UniqueFlaskChargesAddedPercent1"] = { affix = "", "(30-40)% increased Charges gained", statOrder = { 1005 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3196823591, }, - ["UniqueFlaskExtraCharges1"] = { affix = "", "(30-40)% increased Charges", statOrder = { 1008 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1366840608, }, - ["UniqueFlaskChargesUsed1"] = { affix = "", "(100-150)% increased Charges per use", statOrder = { 1006 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3139816101, }, - ["UniqueFlaskChargesUsed2"] = { affix = "", "(10-15)% reduced Charges per use", statOrder = { 1006 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3139816101, }, - ["UniqueFlaskFullInstantRecovery1"] = { affix = "", "Instant Recovery", statOrder = { 911 }, level = 1, group = "FlaskFullInstantRecovery", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 4131977470, }, - ["UniqueFlaskChanceRechargeOnKill1"] = { affix = "", "(20-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 1, group = "FlaskChanceRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 828533480, }, - ["UniqueFlaskChanceRechargeOnKill2"] = { affix = "", "(20-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 1, group = "FlaskChanceRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 828533480, }, - ["UniqueFlaskFillChargesPerMinute1"] = { affix = "", "Gains (0.15-0.2) Charges per Second", statOrder = { 610 }, level = 1, group = "FlaskGainChargePerMinute", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1873752457, }, - ["UniqueCharmIncreasedDuration1"] = { affix = "", "(15-25)% increased Duration", statOrder = { 903 }, level = 1, group = "CharmIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2541588185, }, - ["UniqueCharmIncreasedDuration2"] = { affix = "", "(10-20)% increased Duration", statOrder = { 903 }, level = 1, group = "CharmIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2541588185, }, - ["UniqueGlobalCharmIncreasedDuration1"] = { affix = "", "(10-50)% reduced Charm Effect Duration", statOrder = { 878 }, level = 1, group = "CharmDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1389754388, }, - ["UniqueDodgeRollPhasing1"] = { affix = "", "Dodge Roll passes through Enemies", statOrder = { 5803 }, level = 1, group = "DodgeRollPhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1298316550, }, - ["UniqueMaximumLifeOnKillPercent1"] = { affix = "", "Lose 2% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, - ["UniqueMaximumLifeOnKillPercent2"] = { affix = "", "Lose 1% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, - ["UniqueMaximumLifeOnKillPercent3"] = { affix = "", "Recover (2-4)% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, - ["UniqueMaximumManaOnKillPercent1"] = { affix = "", "Lose 1% of maximum Mana on Kill", statOrder = { 1439 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1030153674, }, - ["UniqueAttackerTakesFireDamage1"] = { affix = "", "25 to 35 Fire Thorns damage", statOrder = { 9651 }, level = 1, group = "ThornsFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 1993950627, }, - ["UniqueAttackerTakesColdDamage1"] = { affix = "", "25 to 35 Cold Thorns damage", statOrder = { 9650 }, level = 1, group = "ThornsColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 1515531208, }, - ["UniquePhysicalDamageTakenAsFire1"] = { affix = "", "50% of Physical Damage taken as Fire Damage", statOrder = { 8895 }, level = 1, group = "PhysicalHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1004468512, }, - ["UniqueAllAttributesPerLevel1"] = { affix = "", "-1 to all Attributes per Level", statOrder = { 7137 }, level = 1, group = "LocalAllAttributesPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2333085568, }, - ["UniqueLocalNoWeaponPhysicalDamage1"] = { affix = "", "No Physical Damage", statOrder = { 821 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 385756972, }, - ["UniqueLocalNoWeaponPhysicalDamage2"] = { affix = "", "No Physical Damage", statOrder = { 821 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 385756972, }, - ["UniqueLocalNoWeaponPhysicalDamage3"] = { affix = "", "No Physical Damage", statOrder = { 821 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 385756972, }, - ["UniqueLocalNoWeaponPhysicalDamage4"] = { affix = "", "No Physical Damage", statOrder = { 821 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 385756972, }, - ["UniqueLocalFreezeOnFullLife1"] = { affix = "", "Freezes Enemies that are on Full Life", statOrder = { 7144 }, level = 1, group = "LocalFreezeOnFullLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2260055669, }, - ["UniqueAttackDamageOnLowLife1"] = { affix = "", "100% increased Attack Damage while on Low Life", statOrder = { 4397 }, level = 1, group = "AttackDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4246007234, }, - ["UniqueAttackDamageNotOnLowMana1"] = { affix = "", "100% increased Attack Damage while not on Low Mana", statOrder = { 4401 }, level = 1, group = "AttackDamageNotOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2462683918, }, - ["UniqueQuiverModifierEffect1"] = { affix = "", "(150-250)% increased bonuses gained from Equipped Quiver", statOrder = { 9028 }, level = 1, group = "QuiverModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1200678966, }, - ["UniqueDrainManaHealLife1"] = { affix = "", "Damage over Time bypasses your Energy Shield", "While not on Full Life, Sacrifice 10% of maximum Mana per Second to Recover that much Life", statOrder = { 9778, 9778.1 }, level = 1, group = "DrainManaHealLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2894895028, }, - ["UniqueBurningGroundWhileMovingMaximumLife1"] = { affix = "", "Drop Ignited Ground while moving, which lasts 8 seconds and Ignites as though dealing Fire Damage equal to 10% of your maximum Life", statOrder = { 3877 }, level = 1, group = "BurningGroundWhileMovingMaximumLife", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2356156926, }, - ["UniqueShockedGroundWhileMoving1"] = { affix = "", "Drop Shocked Ground while moving, lasting 8 seconds", statOrder = { 3878 }, level = 1, group = "ShockedGroundWhileMoving", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 65133983, }, - ["UniqueCannotBePoisoned1"] = { affix = "", "Cannot be Poisoned", statOrder = { 2967 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3835551335, }, - ["UniqueDoubleIgniteChance1"] = { affix = "", "Flammability Magnitude is doubled", statOrder = { 5168 }, level = 1, group = "DoubleIgniteChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1540254896, }, - ["UniqueRemoveSpirit1"] = { affix = "", "You have no Spirit", statOrder = { 9456 }, level = 1, group = "RemoveSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3148264775, }, - ["UniqueBlockChanceIncrease1"] = { affix = "", "25% increased Block chance", statOrder = { 1064 }, level = 1, group = "BlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4147897060, }, - ["UniqueBlockChanceIncrease2"] = { affix = "", "(10-15)% increased Block chance", statOrder = { 1064 }, level = 1, group = "BlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4147897060, }, - ["UniqueMaximumBlockChance1"] = { affix = "", "+(5-10)% to maximum Block chance", statOrder = { 1659 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 480796730, }, - ["UniqueMaximumBlockChance2"] = { affix = "", "-(20-10)% to maximum Block chance", statOrder = { 1659 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 480796730, }, - ["UniqueLeechLifeOnSpellCast1"] = { affix = "", "Leeches 1% of maximum Life when you Cast a Spell", statOrder = { 6994 }, level = 1, group = "LeechLifeOnSpellCast", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 335699483, }, - ["UniqueArrowSpeed1"] = { affix = "", "(50-100)% increased Arrow Speed", statOrder = { 1479 }, level = 1, group = "ArrowSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1207554355, }, - ["UniqueWeaponDamageFinalPercent1"] = { affix = "", "40% less Attack Damage", statOrder = { 2128 }, level = 1, group = "QuillRainWeaponDamageFinalPercent", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 412462523, }, - ["UniqueEnergyShieldRechargeOnKill1"] = { affix = "", "20% chance for Energy Shield Recharge to start when you Kill an Enemy", statOrder = { 6024 }, level = 1, group = "EnergyShieldRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1618482990, }, - ["UniqueCausesBleeding1"] = { affix = "", "Causes Bleeding on Hit", statOrder = { 2150 }, level = 1, group = "CausesBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2091621414, }, - ["UniqueLocalPoisonOnHit1"] = { affix = "", "Always Poison on Hit with this weapon", statOrder = { 7334 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, }, - ["UniqueAdditionalCurseOnEnemies1"] = { affix = "", "You can apply an additional Curse", statOrder = { 1833 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 30642521, }, - ["UniqueBeltFlaskRecoveryRate1"] = { affix = "", "(30-40)% increased Life and Mana Recovery from Flasks", statOrder = { 6220 }, level = 1, group = "BeltFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "mana" }, tradeHash = 2310741722, }, - ["UniqueLowLifeThreshold1"] = { affix = "", "You are considered on Low Life while at 75% of maximum Life or below instead", statOrder = { 7458 }, level = 1, group = "LowLifeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 356835700, }, - ["UniqueLoseLifeOnSkillUse1"] = { affix = "", "Lose 5 Life when you use a Skill", statOrder = { 7455 }, level = 1, group = "LoseLifeOnKillUse", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1902409192, }, - ["UniqueChanceToAvoidDeath1"] = { affix = "", "50% chance to Avoid Death from Hits", statOrder = { 5109 }, level = 1, group = "ChanceToAvoidDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1689729380, }, - ["UniqueLowLifeOnManaThreshold1"] = { affix = "", "You count as on Low Life while at 35% of maximum Mana or below", statOrder = { 9813 }, level = 1, group = "LowLifeOnManaThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3154256486, }, - ["UniqueLowManaOnLifeThreshold1"] = { affix = "", "You count as on Low Mana while at 35% of maximum Life or below", statOrder = { 9814 }, level = 1, group = "LowManaOnLifeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1143240184, }, - ["UniqueArmourAppliesToElementalDamage1"] = { affix = "", "+(100-150)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "armour", "defences", "elemental" }, tradeHash = 3362812763, }, - ["UniqueNoExtraBleedDamageWhileMoving1"] = { affix = "", "Moving while Bleeding doesn't cause you to take extra damage", statOrder = { 2806 }, level = 1, group = "NoExtraBleedDamageWhileMoving", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 4112450013, }, - ["UniqueGainRareMonsterModsOnKill1"] = { affix = "", "When you kill a Rare monster, you gain its Modifiers for 60 seconds", statOrder = { 2470 }, level = 1, group = "GainRareMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2913235441, }, - ["UniqueGainAModifierFromEachEnemyInPresenceOnShapeshift1"] = { affix = "", "Copy a random Modifier from each enemy in your Presence when", "you Shapeshift to an Animal form", "Modifiers gained this way are lost after 30 seconds or when you next Shapeshift", statOrder = { 6301, 6301.1, 6301.2 }, level = 1, group = "ShapeshiftCopyModsInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 885925163, }, - ["UniqueIncreasedArmourWhileShapeshifted1"] = { affix = "", "(30-50)% increased Armour while Shapeshifted", statOrder = { 4270 }, level = 1, group = "IncreasedArmourWhileShapeshifted", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1364201165, }, - ["UniquePoisonOnBlock1"] = { affix = "", "Blocking Damage Poisons the Enemy as though dealing 200 Base Chaos Damage", statOrder = { 8916 }, level = 1, group = "PoisonDamageBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4195198267, }, - ["UniqueDoubleAccuracyRating1"] = { affix = "", "Accuracy Rating is Doubled", statOrder = { 4024 }, level = 1, group = "AccuracyRatingIsDoubled", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2161347476, }, - ["UniqueWeaponDamagePerStrength1"] = { affix = "", "10% increased Weapon Damage per 10 Strength", statOrder = { 9896 }, level = 1, group = "WeaponDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1791136590, }, - ["UniqueAttackSpeedPerDexterity1"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 4439 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 889691035, }, - ["UniqueAttackAreaOfEffectPerIntelligence1"] = { affix = "", "1% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4364 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 434750362, }, - ["UniqueAdditionalSkillSlots1"] = { affix = "", "Grants 1 additional Skill Slot", statOrder = { 55 }, level = 1, group = "AdditionalSkillSlots", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 958696139, }, - ["UniqueMaximumResistancesOverride1"] = { affix = "", "Your Maximum Resistances are (75-80)%", statOrder = { 8790 }, level = 1, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance" }, tradeHash = 798767971, }, - ["UniqueExtraChaosDamagePerUndeadMinion1"] = { affix = "", "Gain 5% of Damage as Chaos Damage per Undead Minion", statOrder = { 8674 }, level = 1, group = "ExtraChaosDamagePerUndeadMinion", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 997343726, }, - ["UniqueBaseBlockDamageTaken1"] = { affix = "", "You take (25-40)% of damage from Blocked Hits", statOrder = { 4525 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2905515354, }, - ["UniqueBaseBlockDamageTaken2"] = { affix = "", "You take 50% of damage from Blocked Hits", statOrder = { 4525 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2905515354, }, - ["UniqueBaseBlockDamageTaken3"] = { affix = "", "You take (0-20)% of damage from Blocked Hits", statOrder = { 4525 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2905515354, }, - ["UniqueCullingStrikeOnBlock1"] = { affix = "", "Enemies are Culled on Block", statOrder = { 5516 }, level = 1, group = "CullingStrikeOnBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 381470861, }, - ["UniqueBlockPercentWithFocus1"] = { affix = "", "+(15-25)% to Block Chance while holding a Focus", statOrder = { 4060 }, level = 1, group = "BlockPercentWithFocus", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3122852693, }, - ["UniqueUnarmedMoreDamageWithMaceSkills1"] = { affix = "", "(600-800)% more Physical Damage with Unarmed Melee Attacks", statOrder = { 2109 }, level = 1, group = "FacebreakerPhysicalUnarmedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1814782245, }, - ["UniqueGainRageWhenHit1"] = { affix = "", "Gain 5 Rage when Hit by an Enemy", statOrder = { 6433 }, level = 1, group = "GainRageWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3292710273, }, - ["UniqueGainRageWhenCrit1"] = { affix = "", "Gain 10 Rage when Critically Hit by an Enemy", statOrder = { 6434 }, level = 1, group = "GainRageWhenCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1466716929, }, - ["UniqueIgniteDuration1"] = { affix = "", "50% reduced Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, }, - ["UniqueIgniteEffect1"] = { affix = "", "50% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3791899485, }, - ["UniqueIgniteEffect2"] = { affix = "", "100% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3791899485, }, - ["UniqueIgniteEffect3"] = { affix = "", "(10-20)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3791899485, }, - ["UniqueEnemiesIgniteChaosDamage1"] = { affix = "", "Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite", statOrder = { 5973 }, level = 1, group = "EnemiesIgniteChaosDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 2515006979, }, - ["UniqueLocalWeaponRangeIncrease1"] = { affix = "", "20% increased Melee Strike Range with this weapon", statOrder = { 7131 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 548198834, }, - ["UniqueDamageBlockedRecoupedAsMana1"] = { affix = "", "Damage Blocked is Recouped as Mana", statOrder = { 5569 }, level = 1, group = "DamageBlockedRecoupedAsMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2875218423, }, - ["UniqueAllDamage1"] = { affix = "", "25% reduced Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, }, - ["UniqueAllDamage2"] = { affix = "", "(30-50)% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, }, - ["UniqueTakeNoExtraDamageFromCriticalStrikes1"] = { affix = "", "Take no Extra Damage from Critical Hits", statOrder = { 3832 }, level = 1, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 4294267596, }, - ["UniqueLifeFlaskNoRecovery1"] = { affix = "", "Life Flasks do not recover Life", statOrder = { 4574 }, level = 1, group = "LifeFlaskNoRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 265717301, }, - ["UniqueDoubleOnKillEffects1"] = { affix = "", "On-Kill Effects happen twice", statOrder = { 8782 }, level = 1, group = "DoubleOnKillEffects", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 259470957, }, - ["UniqueGlobalSkillGemLevel1"] = { affix = "", "+1 to Level of all Skills", statOrder = { 4166 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4283407333, }, - ["UniqueReceiveBleedingWhenHit1"] = { affix = "", "25% chance to be inflicted with Bleeding when Hit", statOrder = { 9076 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3423694372, }, - ["UniqueCannotBeChilledOrFrozen1"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1520 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2996245527, }, - ["UniqueConsumeCorpseRecoverLife1"] = { affix = "", "Every 3 seconds, Consume a nearby Corpse to Recover 20% of maximum Life", statOrder = { 5371 }, level = 1, group = "ConsumeCorpseRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3764198549, }, - ["UniqueSmokeCloudWhenStationary1"] = { affix = "", "You have a Smoke Cloud around you while stationary", statOrder = { 9344 }, level = 1, group = "SmokeCloudWhenStationary", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2592455368, }, - ["UniqueGlobalEvasionOnFullLife1"] = { affix = "", "100% increased Evasion Rating when on Full Life", statOrder = { 6084 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 88817332, }, - ["UniqueMovementVelocityOnFullLife1"] = { affix = "", "10% increased Movement Speed when on Full Life", statOrder = { 1482 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3393547195, }, - ["UniqueLocalAllDamageCanElectrocute1"] = { affix = "", "All damage with this Weapon causes Electrocution buildup", statOrder = { 7140 }, level = 1, group = "LocalAllDamageCanElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1910743684, }, - ["UniqueLocalAllDamageCanFreeze1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Freeze Buildup", statOrder = { 7141 }, level = 1, group = "LocalAllDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3761294489, }, - ["UniqueLocalAllDamageCanChill1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Chill Magnitude", statOrder = { 7139 }, level = 1, group = "LocalAllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2156230257, }, - ["UniqueLocalCullingStrikeFrozenEnemies1"] = { affix = "", "Culling Strike against Frozen Enemies", statOrder = { 7185 }, level = 1, group = "LocalCullingStrikeFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1158324489, }, - ["UniqueFrozenMonstersTakeIncreasedDamage1"] = { affix = "", "Enemies Frozen by you take 100% increased Damage", statOrder = { 2133 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 849085925, }, - ["UniqueLifeConvertedToEnergyShield1"] = { affix = "", "35% of Maximum Life Converted to Energy Shield", statOrder = { 8332 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2458962764, }, - ["UniqueReducedDamageIfNotHitRecently1"] = { affix = "", "20% less Damage taken if you have not been Hit Recently", statOrder = { 3740 }, level = 1, group = "ReducedDamageIfNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 67637087, }, - ["UniqueIncreasedEvasionIfHitRecently1"] = { affix = "", "100% increased Evasion Rating if you have been Hit Recently", statOrder = { 3741 }, level = 1, group = "IncreasedEvasionIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 1073310669, }, - ["UniqueUndeadMinionReservation1"] = { affix = "", "(20-30)% increased Reservation Efficiency of Skills which create Undead Minions", statOrder = { 9772 }, level = 1, group = "UndeadMinionReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2308632835, }, - ["UniqueItemRarityOnLowLife1"] = { affix = "", "50% increased Rarity of Items found when on Low Life", statOrder = { 1393 }, level = 1, group = "ItemRarityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2929867083, }, - ["UniqueChillImmunityWhenChilled1"] = { affix = "", "You cannot be Chilled for 6 seconds after being Chilled", statOrder = { 2542 }, level = 1, group = "ChillImmunityWhenChilled", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2306924373, }, - ["UniqueFreezeImmunityWhenFrozen1"] = { affix = "", "You cannot be Frozen for 6 seconds after being Frozen", statOrder = { 2544 }, level = 1, group = "FreezeImmunityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3612464552, }, - ["UniqueIgniteImmunityWhenIgnited1"] = { affix = "", "You cannot be Ignited for 6 seconds after being Ignited", statOrder = { 2545 }, level = 1, group = "IgniteImmunityWhenIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 947072590, }, - ["UniqueShockImmunityWhenShocked1"] = { affix = "", "You cannot be Shocked for 6 seconds after being Shocked", statOrder = { 2546 }, level = 1, group = "ShockImmunityWhenShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 215346464, }, - ["UniqueReflectCurseToSelf1"] = { affix = "", "Curses you inflict are reflected back to you", statOrder = { 5548 }, level = 1, group = "ReflectCurseToSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4275855121, }, - ["UniqueAttackAndCastSpeed1"] = { affix = "", "(10-15)% reduced Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, - ["UniqueIncreasedSkillSpeed1"] = { affix = "", "(10-15)% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, }, - ["UniqueIncreasedSkillSpeed2"] = { affix = "", "10% reduced Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, }, - ["UniqueIncreasedSkillSpeed3"] = { affix = "", "(5-10)% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, }, - ["UniqueIncreasedSkillSpeed4"] = { affix = "", "(15-30)% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, }, - ["UniqueIncreasedSkillSpeed5"] = { affix = "", "(10-15)% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, }, - ["UniqueShareChargesWithAllies1"] = { affix = "", "Share Charges with Allies in your Presence", statOrder = { 9227 }, level = 1, group = "ShareChargesWithAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2535267021, }, - ["UniqueOverrideWeaponBaseCritical1"] = { affix = "", "Base Critical Hit Chance for Attacks with Weapons is 7%", statOrder = { 8791 }, level = 1, group = "OverrideWeaponBaseCritical", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2635559734, }, - ["UniqueEnemiesKilledCountAsYours1"] = { affix = "", "Enemies in your Presence killed by anyone count as being killed by you instead", statOrder = { 5699 }, level = 1, group = "EnemiesKilledCountAsYours", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1576794517, }, - ["UniqueAllDamageCanPoison1"] = { affix = "", "All Damage from Hits Contributes to Poison Magnitude", statOrder = { 4153 }, level = 1, group = "AllDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4012215578, }, - ["UniqueFreezeDamageMaximumMana1"] = { affix = "", "Gain Cold Thorns Damage equal to (10-18)% of your maximum Mana", statOrder = { 4052 }, level = 1, group = "FreezeDamageMaximumMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1435496528, }, - ["UniqueBlockPercent1"] = { affix = "", "+10% to Block chance", statOrder = { 2130 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, }, - ["UniqueBlockPercent2"] = { affix = "", "+(15-25)% to Block chance", statOrder = { 2130 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, }, - ["UniqueRangedAttackDamageTaken1"] = { affix = "", "-10 Physical damage taken from Projectile Attacks", statOrder = { 1896 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3612407781, }, - ["UniqueChillEffect1"] = { affix = "", "(20-30)% increased Magnitude of Chill you inflict", statOrder = { 5269 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 828179689, }, - ["UniqueManaCostReduction1"] = { affix = "", "20% reduced Mana Cost of Skills", statOrder = { 1560 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 474294393, }, - ["UniqueManaCostReduction2"] = { affix = "", "10% increased Mana Cost of Skills", statOrder = { 1560 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 474294393, }, - ["UniqueLightningDamageCanElectrocute1"] = { affix = "", "Lightning damage from Hits Contributes to Electrocution Buildup", statOrder = { 4578 }, level = 1, group = "LightningDamageElectrocute", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1017648537, }, - ["UniqueStrengthSatisfiesAllWeaponRequirements1"] = { affix = "", "Strength can satisfy other Attribute Requirements of Melee Weapons and Melee Skills", statOrder = { 9512 }, level = 1, group = "StrengthSatisfiesAllWeaponRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2230687504, }, - ["UniqueAreaOfEffect1"] = { affix = "", "(10-20)% increased Area of Effect", statOrder = { 1557 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 280731498, }, - ["UniqueAreaOfEffect2"] = { affix = "", "(8-15)% increased Area of Effect", statOrder = { 1557 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 280731498, }, - ["UniquePercentageStrength1"] = { affix = "", "(5-15)% increased Strength", statOrder = { 1080 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 734614379, }, - ["UniquePercentageStrength2"] = { affix = "", "(15-30)% increased Strength", statOrder = { 1080 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 734614379, }, - ["UniquePercentageDexterity1"] = { affix = "", "(5-15)% increased Dexterity", statOrder = { 1081 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4139681126, }, - ["UniquePercentageDexterity2"] = { affix = "", "10% reduced Dexterity", statOrder = { 1081 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4139681126, }, - ["UniquePercentageIntelligence1"] = { affix = "", "(5-15)% increased Intelligence", statOrder = { 1082 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 656461285, }, - ["UniquePercentageIntelligence2"] = { affix = "", "10% reduced Intelligence", statOrder = { 1082 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 656461285, }, - ["UniquePercentageIntelligence3"] = { affix = "", "(5-10)% increased Intelligence", statOrder = { 1082 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 656461285, }, - ["UniqueReducedIgniteEffectOnSelf1"] = { affix = "", "(35-50)% reduced Magnitude of Ignite on you", statOrder = { 6814 }, level = 1, group = "ReducedIgniteEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1269971728, }, - ["UniqueReducedChillEffectOnSelf1"] = { affix = "", "(35-50)% reduced Effect of Chill on you", statOrder = { 1422 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1478653032, }, - ["UniqueReducedShockEffectOnSelf1"] = { affix = "", "(35-50)% reduced effect of Shock on you", statOrder = { 9261 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3801067695, }, - ["UniqueThornsOnAnyHit1"] = { affix = "", "Thorns can Retaliate against all Hits", statOrder = { 9655 }, level = 1, group = "ThornsOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3414243317, }, - ["UniqueTriggerDecomposeOnStep1"] = { affix = "", "Trigger Decompose every 1.2 metres travelled", statOrder = { 7222 }, level = 1, group = "CorpsewadeGrantsTriggeredCorpseCloud", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3371943724, }, - ["UniqueSpearsInflictBloodstoneLanceOnHit1"] = { affix = "", "Spear Skills inflict a Bloodstone Lance on Hit, up to a maximum of 30 on each target", statOrder = { 9365 }, level = 1, group = "InflictBloodstoneLanceOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4106787208, }, - ["UniqueSpellsThatCostLifeGainDamageAsExtraPhys1"] = { affix = "", "Spells which cost Life Gain (80-120)% of Damage as Extra Physical Damage", statOrder = { 9437 }, level = 1, group = "SpellsWhichCostLifeGainDamageAsExtraPhys", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHash = 1088082880, }, - ["UniqueGlobalCorruptedSpellSkillLevel1"] = { affix = "", "+(3-5) to Level of all Corrupted Spell Skill Gems", statOrder = { 923 }, level = 1, group = "GlobalCorruptedSpellSkillLevel1", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 2061237517, }, - ["UniqueOverkillDamagePhysical1"] = { affix = "", "Deal 30% of Overkill damage to enemies within 2 metres of the enemy killed", statOrder = { 8788 }, level = 1, group = "OverkillDamagePhysical", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2301852600, }, - ["UniqueMaximumEnduranceCharges1"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1486 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1515657623, }, - ["UniqueMaximumFrenzyCharges1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, }, - ["UniqueMaximumPowerCharges1"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, - ["UniqueLifeRegenerationPercentPerEnduranceCharge1"] = { affix = "", "Regenerate 0.5% of maximum Life per second per Endurance Charge", statOrder = { 1375 }, level = 1, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 989800292, }, - ["UniqueMovementVelocityPerFrenzyCharge1"] = { affix = "", "5% increased Movement Speed per Frenzy Charge", statOrder = { 1484 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, }, - ["UniqueCriticalMultiplierPerPowerCharge1"] = { affix = "", "12% increased Critical Damage Bonus per Power Charge", statOrder = { 2885 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 4164870816, }, - ["UniqueCriticalStrikesLeechIsInstant1"] = { affix = "", "Leech from Critical Hits is instant", statOrder = { 2208 }, level = 1, group = "CriticalStrikesLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3389184522, }, - ["UniqueBaseChanceToPoison1"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 795138349, }, - ["UniqueBaseChanceToPoison2"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 795138349, }, - ["UniqueBaseChanceToPoison3"] = { affix = "", "(10-20)% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 795138349, }, - ["UniqueBaseChanceToPoison4"] = { affix = "", "(20-30)% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 795138349, }, - ["UniqueChanceToPoisonOnSpellHit1"] = { affix = "", "100% chance to Poison on Hit with Spell Damage", statOrder = { 9435 }, level = 1, group = "ChanceToPoisonWithSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHash = 1493211587, }, - ["UniquePoisonStackCount1"] = { affix = "", "Targets can be affected by +1 of your Poisons at the same time", statOrder = { 8749 }, level = 1, group = "PoisonStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1755296234, }, - ["UniqueSacrificeLifeToGainEnergyShield1"] = { affix = "", "Sacrifice (5-15)% of Life to gain that much Energy Shield when you Cast a Spell", statOrder = { 9197 }, level = 1, group = "SacrificeLifeToGainES", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 613752285, }, - ["UniqueCullingStrike1"] = { affix = "", "Culling Strike", statOrder = { 1700 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2524254339, }, - ["UniqueDecimatingStrike1"] = { affix = "", "Decimating Strike", statOrder = { 5704 }, level = 1, group = "DecimatingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3872034802, }, - ["UniqueCannotBeIgnited1"] = { affix = "", "Cannot be Ignited", statOrder = { 1522 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 331731406, }, - ["UniquePhysicalAttackDamageTaken1"] = { affix = "", "-10 Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, }, - ["UniquePhysicalAttackDamageTaken2"] = { affix = "", "-4 Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, }, - ["UniqueNoManaPerIntelligence1"] = { affix = "", "Gain no inherent bonus from Intelligence", statOrder = { 1687 }, level = 1, group = "NoMaximumManaPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4187571952, }, - ["UniqueNoLifeRegeneration1"] = { affix = "", "You have no Life Regeneration", statOrder = { 1944 }, level = 1, group = "NoLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 854225133, }, - ["UniqueFragileRegrowth1"] = { affix = "", "Maximum 10 Fragile Regrowth", "0.5% of maximum Life Regenerated per second per Fragile Regrowth", "10% increased Mana Regeneration Rate per Fragile Regrowth", "Lose all Fragile Regrowth when Hit", "Gain 1 Fragile Regrowth each second", statOrder = { 3956, 3957, 3958, 3959, 6428 }, level = 1, group = "FragileRegrowth", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1042038498, }, - ["UniqueEnergyShieldDelay1"] = { affix = "", "(30-50)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, }, - ["UniqueEnergyShieldDelay2"] = { affix = "", "30% slower start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, }, - ["UniqueEnergyShieldDelay3"] = { affix = "", "100% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, }, - ["UniqueEnergyShieldDelay4"] = { affix = "", "80% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, }, - ["UniqueEnergyShieldDelay5"] = { affix = "", "(30-50)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, }, - ["UniqueReverseChill1"] = { affix = "", "The Effect of Chill on you is reversed", statOrder = { 5268 }, level = 1, group = "ReverseChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2955966707, }, - ["UniquePhysicalDamageTakenPercentToReflect1"] = { affix = "", "250% of Melee Physical Damage taken reflected to Attacker", statOrder = { 2129 }, level = 1, group = "PhysicalDamageTakenPercentToReflect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1092987622, }, - ["UniquePhysicalDamagePreventedRecoup1"] = { affix = "", "50% of Physical Damage prevented Recouped as Life", statOrder = { 8867 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 1374654984, }, - ["UniqueRechargeNotInterruptedRecently1"] = { affix = "", "Energy Shield Recharge is not interrupted by Damage if Recharge began Recently", statOrder = { 3316 }, level = 1, group = "RechargeNotInterruptedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1419390131, }, - ["UniqueMinionReviveSpeed1"] = { affix = "", "Minions Revive 50% faster", statOrder = { 8529 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2639966148, }, - ["UniqueMinionReviveSpeed2"] = { affix = "", "Minions Revive (10-15)% faster", statOrder = { 8529 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2639966148, }, - ["UniqueMinionReviveSpeed3"] = { affix = "", "Minions Revive 50% slower", statOrder = { 8529 }, level = 1, group = "MinionReviveSpeed", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2639966148, }, - ["UniqueMinionLifeGainAsEnergyShield1"] = { affix = "", "Minions gain (20-30)% of their maximum Life as Extra maximum Energy Shield", statOrder = { 8510 }, level = 1, group = "MinionLifeGainAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences", "minion" }, tradeHash = 943702197, }, - ["UniqueCannotBeShocked1"] = { affix = "", "Cannot be Shocked", statOrder = { 1524 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 491899612, }, - ["UniqueFlaskChanceToNotConsume1"] = { affix = "", "50% less Flask Charges used", statOrder = { 6785 }, level = 1, group = "HuskOfDreamsFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3749630567, }, - ["UniqueSetElementalResistances1"] = { affix = "", "You have no Elemental Resistances", statOrder = { 2489 }, level = 1, group = "SetElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1776968075, }, - ["UniquePoisonOnCrit1"] = { affix = "", "Critical Hits Poison the enemy", statOrder = { 8929 }, level = 1, group = "PoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHash = 62849030, }, - ["UniqueDuplicatesRingStats1"] = { affix = "", "Reflects opposite Ring", statOrder = { 2505 }, level = 1, group = "DuplicatesRingStats", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 746505085, }, - ["UniqueLifeLeechAmount1"] = { affix = "", "(100-200)% increased amount of Life Leeched", statOrder = { 1820 }, level = 1, group = "LifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2112395885, }, - ["UniquePhysicalMinimumDamageModifier1"] = { affix = "", "(30-40)% less minimum Physical Attack Damage", statOrder = { 1095 }, level = 1, group = "RyuslathaMinimumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2423248184, }, - ["UniquePhysicalMaximumDamageModifier1"] = { affix = "", "(30-40)% more maximum Physical Attack Damage", statOrder = { 1094 }, level = 1, group = "RyuslathaMaximumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3735888493, }, - ["UniqueGlobalItemAttributeRequirements1"] = { affix = "", "Equipment and Skill Gems have 50% reduced Attribute Requirements", statOrder = { 2224 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, }, - ["UniqueGlobalItemAttributeRequirements2"] = { affix = "", "Equipment and Skill Gems have 25% increased Attribute Requirements", statOrder = { 2224 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, }, - ["UniqueGlobalGemAttributeRequirements1"] = { affix = "", "Skill Gems have no Attribute Requirements", statOrder = { 2221 }, level = 1, group = "GlobalNoGemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4245256219, }, - ["UniqueGlobalEquipmentAttributeRequirements1"] = { affix = "", "Equipment has no Attribute Requirements", statOrder = { 2220 }, level = 1, group = "GlobalNoEquipmentAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2480151124, }, - ["UniqueEnemiesBlockedAreIntimidated1"] = { affix = "", "Permanently Intimidate enemies on Block", statOrder = { 8843 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2930706364, }, - ["UniqueEnemiesBlockedAreIntimidatedDuration1"] = { affix = "", "Intimidate Enemies on Block for 8 seconds", statOrder = { 6917 }, level = 1, group = "EnemiesBlockedAreIntimidatedDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3703496511, }, - ["UniqueHasOnslaught1"] = { affix = "", "Onslaught", statOrder = { 3172 }, level = 1, group = "HasOnslaught", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1520059289, }, - ["UniqueChanceToIntimidateOnHit1"] = { affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5180 }, level = 1, group = "ChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 78985352, }, - ["UniqueExperienceIncrease1"] = { affix = "", "5% increased Experience gain", statOrder = { 1397 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666934677, }, - ["UniquePowerChargeOnCritChance1"] = { affix = "", "25% chance to gain a Power Charge on Critical Hit", statOrder = { 1512 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHash = 3814876985, }, - ["UniqueIncreasedStrengthRequirements1"] = { affix = "", "50% increased Strength Requirement", statOrder = { 820 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, }, - ["UniqueRechargeOnManaFlask1"] = { affix = "", "Energy Shield Recharge starts when you use a Mana Flask", statOrder = { 9476 }, level = 1, group = "RechargeOnManaFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2402413437, }, - ["UniqueAlwaysDrinkingFlask1"] = { affix = "", "This Flask cannot be Used but applies its Effect constantly", statOrder = { 609 }, level = 62, group = "FlaskAlwaysDrinking", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2980117882, }, - ["UniqueAilmentChanceRecieved1"] = { affix = "", "(80-100)% increased Chance to be afflicted by Ailments when Hit", statOrder = { 5111 }, level = 1, group = "AilmentChanceRecieved", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 892489594, }, - ["UniqueMovementVelocityWithAilment1"] = { affix = "", "25% increased Movement Speed while affected by an Ailment", statOrder = { 8588 }, level = 1, group = "MovementVelocityWithAilment", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 610276769, }, - ["UniqueMinionCausticCloudOnDeath1"] = { affix = "", "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second", statOrder = { 3030 }, level = 1, group = "MinionCausticCloudOnDeath", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, tradeHash = 688802590, }, - ["UniqueLocalDoubleStunDamage1"] = { affix = "", "Causes Double Stun Buildup", statOrder = { 7230 }, level = 1, group = "LocalDoubleStunDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 769129523, }, - ["UniqueLocalBreakArmourOnHit1"] = { affix = "", "Hits Break (30-50) Armour", statOrder = { 7147 }, level = 1, group = "LocalBreakArmourOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 289086688, }, - ["UniqueBreakArmourWithPhysicalSpells1"] = { affix = "", "DNT-UNUSED Break Armour equal to (5-8)% of Physical Spell damage dealt", statOrder = { 4288 }, level = 1, group = "PhysicalSpellArmourBreak", weightKey = { }, weightVal = { }, modTags = { "physical", "caster" }, tradeHash = 2795257911, }, - ["UniqueLocalFireExposureOnArmourBreak1"] = { affix = "", "Inflicts Fire Exposure when this Weapon Fully Breaks Armour", statOrder = { 7149 }, level = 1, group = "LocalFireExposureOnArmourBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3439162551, }, - ["UniqueIncreasedStunThreshold1"] = { affix = "", "20% reduced Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 680068163, }, - ["UniqueDoubleStunThresholdWhileActiveBlock1"] = { affix = "", "Double Stun Threshold while Shield is Raised", statOrder = { 7350 }, level = 1, group = "DoubleStunThresholdWhileActiveBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3686997387, }, - ["UniqueRageOnHit1"] = { affix = "", "Gain 1 Rage on Melee Hit", statOrder = { 6431 }, level = 1, group = "RageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2709367754, }, - ["UniqueIncreasedStunThresholdPerRage1"] = { affix = "", "Every Rage also grants 1% increased Stun Threshold", statOrder = { 10009 }, level = 1, group = "IncreasedStunThresholdPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 352044736, }, - ["UniqueIncreasedArmourPerRage1"] = { affix = "", "Every Rage also grants 1% increased Armour", statOrder = { 9997 }, level = 1, group = "IncreasedArmourPerRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2995914769, }, - ["UniquePhysicalDamagePin1"] = { affix = "", "Physical Damage is Pinning", statOrder = { 4598 }, level = 1, group = "PhysicalDamagePin", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 2041668411, }, - ["UniqueLocalPhysicalDamageAddedAsEachElement1"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3809 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHash = 3620731914, }, - ["UniqueBlockChanceToAllies1"] = { affix = "", "Allies in your Presence have Block Chance equal to yours", statOrder = { 8789 }, level = 1, group = "BlockChanceToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1361645249, }, - ["UniqueNoMovementPenaltyRaisedShield1"] = { affix = "", "No Movement Speed Penalty while Shield is Raised", statOrder = { 8649 }, level = 1, group = "NoMovementPenaltyRaisedShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 585231074, }, - ["UniqueLocalMaimOnCrit1"] = { affix = "", "Maim on Critical Hit", statOrder = { 7145 }, level = 1, group = "LocalMaimOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2895144208, }, - ["UniqueAlwaysCritHeavyStun1"] = { affix = "", "Always deals Critical Hits against Heavy Stunned Enemies", statOrder = { 7143 }, level = 1, group = "AlwaysCritHeavyStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2214130968, }, - ["UniqueBaseLifeRegenToAllies1"] = { affix = "", "50% of your Base Life Regeneration is granted to Allies in your Presence", statOrder = { 899 }, level = 82, group = "BaseLifeRegenToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4287671144, }, - ["UniqueManaScarificeToAllies1"] = { affix = "", "When a Party Member in your Presence Casts a Spell, you", "Sacrifice 20% of Mana and they Leech that Mana", statOrder = { 9776, 9776.1 }, level = 1, group = "ManaScarificeToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 603021645, }, - ["UniqueCannotBlock1"] = { affix = "", "Cannot Block", statOrder = { 2872 }, level = 1, group = "CannotBlockAttacks", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1465760952, }, - ["UniqueMaximumBlockToMaximumResistances1"] = { affix = "", "Modifiers to Maximum Block Chance instead apply to Maximum Resistances", statOrder = { 8297 }, level = 1, group = "MaximumBlockToMaximumResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3679696791, }, - ["UniqueDisableShieldSkills1"] = { affix = "", "Cannot use Shield Skills", statOrder = { 9980 }, level = 1, group = "DisableShieldSkills", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 65135897, }, - ["UniqueFullManaThreshold1"] = { affix = "", "You count as on Full Mana while at 90% of maximum Mana or above", statOrder = { 6274 }, level = 1, group = "FullManaThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 423304126, }, - ["UniqueIncreasedAttackSpeedFullMana1"] = { affix = "", "25% increased Attack Speed while on Full Mana", statOrder = { 4424 }, level = 1, group = "IncreasedAttackSpeedFullMana", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 4145314483, }, - ["UniqueFireShocks1"] = { affix = "", "Fire Damage from Hits Contributes to Shock Chance instead of Flammability and Ignite Magnitudes", statOrder = { 2508 }, level = 1, group = "FireShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "ailment" }, tradeHash = 2949096603, }, - ["UniqueColdIgnites1"] = { affix = "", "Cold Damage from Hits Contributes to Flammability and Ignite Magnitudes instead of Chill Magnitude or Freeze Buildup", statOrder = { 2509 }, level = 1, group = "ColdIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, tradeHash = 1261612903, }, - ["UniqueLightningFreezes1"] = { affix = "", "Lightning Damage from Hits Contributes to Freeze Buildup instead of Shock Chance", statOrder = { 2510 }, level = 1, group = "LightningFreezes", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHash = 1011772129, }, - ["UniqueLifeCostAsManaCost1"] = { affix = "", "Skills gain a Base Life Cost equal to 100% of Base Mana Cost", statOrder = { 4607 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3605834869, }, - ["UniqueLifeCostAsManaCost2"] = { affix = "", "Skills gain a Base Life Cost equal to 10% of Base Mana Cost", statOrder = { 4607 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3605834869, }, - ["UniqueSpellDamageLifeLeech1"] = { affix = "", "10% of Spell Damage Leeched as Life", statOrder = { 4575 }, level = 1, group = "SpellDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 782941180, }, - ["UniqueFireDamageTakenAsPhysical1"] = { affix = "", "100% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2117 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHash = 3205239847, }, - ["UniqueCriticalStrikeMultiplierOverride1"] = { affix = "", "Your Critical Damage Bonus is 250%", statOrder = { 5475 }, level = 1, group = "CriticalStrikeMultiplierIs250", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 2516303866, }, - ["UniqueCriticalStrikesCannotBeRerolled1"] = { affix = "", "Your Critical Hit Chance cannot be Rerolled", statOrder = { 5443 }, level = 1, group = "CriticalStrikesCannotBeRerolled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 4159551976, }, - ["UniqueIgniteEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Ignited as though dealt 100 Base Fire Damage", statOrder = { 6812 }, level = 1, group = "IgniteEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1433051415, }, - ["UniqueAttackerTakesLightningDamage1"] = { affix = "", "Reflects 1 to 250 Lightning Damage to Melee Attackers", statOrder = { 1858 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1243237244, }, - ["UniqueDamageCannotBypassEnergyShield1"] = { affix = "", "Damage cannot bypass Energy Shield", statOrder = { 9779 }, level = 1, group = "DamageCannotBypassEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 93764325, }, - ["UniqueBleedsAlwaysAggravated1"] = { affix = "", "Bleeding you inflict is Aggravated", statOrder = { 4128 }, level = 1, group = "BleedsAlwaysAggravated", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 841429130, }, - ["UniqueSlowPotency1"] = { affix = "", "50% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 924253255, }, - ["UniqueHinderEnemiesInPresence1"] = { affix = "", "Enemies in your Presence are Hindered", statOrder = { 4559 }, level = 1, group = "HinderEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2890401248, }, - ["UniqueGainDruidicProwessOnSpendingXRage1"] = { affix = "", "Gain 1 Druidic Prowess for every 20 total Rage spent", statOrder = { 6345 }, level = 1, group = "GainDruidicProwessOnSpendingXRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1273508088, }, - ["UniqueGlobalChanceToBleed1"] = { affix = "", "50% chance to inflict Bleeding on Hit", statOrder = { 4532 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2174054121, }, - ["UniqueGlobalChanceToBleed2"] = { affix = "", "(10-20)% chance to inflict Bleeding on Hit", statOrder = { 4532 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2174054121, }, - ["UniqueGlobalChanceToBleed3"] = { affix = "", "25% chance to inflict Bleeding on Hit", statOrder = { 4532 }, level = 1, group = "GlobalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2174054121, }, - ["UniqueAggravateBleedOnCrit1"] = { affix = "", "Aggravate Bleeding on targets you Critically Hit with Attacks", statOrder = { 4120 }, level = 1, group = "AggravateBleedOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2438634449, }, - ["UniqueLifeLeechToAllies1"] = { affix = "", "Leeching Life from your Hits causes Allies in your Presence to also Leech the same amount of Life", statOrder = { 6997 }, level = 1, group = "LifeLeechToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3605721598, }, - ["UniqueRandomMovementVelocityOnHit1"] = { affix = "", "Gain 0% to 40% increased Movement Speed at random when Hit, until Hit again", statOrder = { 8357 }, level = 1, group = "RandomMovementVelocityOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 796381300, }, - ["UniqueProjectilesSplitCount1"] = { affix = "", "Projectiles Split towards +2 targets", statOrder = { 8986 }, level = 1, group = "ProjectilesSplitCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3464380325, }, - ["UniquePowerChargeOnHit1"] = { affix = "", "20% chance to gain a Power Charge on Hit", statOrder = { 1516 }, level = 1, group = "PowerChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 1453197917, }, - ["UniqueLosePowerChargesOnMaxCharges1"] = { affix = "", "Lose all Power Charges on reaching maximum Power Charges", statOrder = { 3178 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2135899247, }, - ["UniqueShockOnMaxPowerCharges1"] = { affix = "", "Shocks you when you reach maximum Power Charges", statOrder = { 3179 }, level = 1, group = "ShockOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 4256314560, }, - ["UniqueMinionAddedColdDamageMaximumLife1"] = { affix = "", "Minions deal 5% of your Life as additional Cold Damage with Attacks", statOrder = { 8451 }, level = 1, group = "MinionAddedColdDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1403346025, }, - ["UniqueStatLifeReservation1"] = { affix = "", "Reserves 15% of Life", statOrder = { 2112 }, level = 1, group = "StatLifeReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2492660287, }, - ["UniqueElementalDamageTakenAsChaos1"] = { affix = "", "20% of Elemental damage from Hits taken as Chaos damage", statOrder = { 2126 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, tradeHash = 1175213674, }, - ["UniqueChanceToBePoisoned1"] = { affix = "", "+25% chance to be Poisoned", statOrder = { 2968 }, level = 1, group = "ChanceToBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 4250009622, }, - ["UniqueEnduranceChargeDuration1"] = { affix = "", "25% reduced Endurance Charge Duration", statOrder = { 1789 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1170174456, }, - ["UniqueLifeGainedOnEnduranceChargeConsumed1"] = { affix = "", "Recover 5% of maximum Life for each Endurance Charge consumed", statOrder = { 9087 }, level = 1, group = "LifeGainedOnEnduranceChargeConsumed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 939832726, }, - ["UniqueCullingStrikeThreshold1"] = { affix = "", "100% increased Culling Strike Threshold", statOrder = { 5520 }, level = 1, group = "CullingStrikeThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3563080185, }, - ["UniqueNoSlowPotency1"] = { affix = "", "Your speed is unaffected by Slows", statOrder = { 9338 }, level = 1, group = "NoSlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 50721145, }, - ["UniqueLifeRegenerationPercent1"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, - ["UniqueLifeRegenerationPercentOnLowLife1"] = { affix = "", "Regenerate 3% of maximum Life per second while on Low Life", statOrder = { 1618 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3942946753, }, - ["UniqueFireResistOnLowLife1"] = { affix = "", "+25% to Fire Resistance while on Low Life", statOrder = { 1412 }, level = 1, group = "FireResistOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 38301299, }, - ["UniqueSpellDamagePerSpirit1"] = { affix = "", "(8-12)% increased Spell Damage per 10 Spirit", statOrder = { 9414 }, level = 1, group = "SpellDamagePerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2412053423, }, - ["UniqueFlaskLifeRecoveryEnergyShield1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield", statOrder = { 7008 }, level = 1, group = "FlaskLifeRecoveryEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2812872407, }, - ["UniqueDamageRemovedFromManaBeforeLife1"] = { affix = "", "50% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 458438597, }, - ["UniqueUnaffectedByCurses1"] = { affix = "", "Unaffected by Curses", statOrder = { 2148 }, level = 1, group = "UnaffectedByCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3809896400, }, - ["UniqueReflectCurses1"] = { affix = "", "Curse Reflection", statOrder = { 2146 }, level = 1, group = "ReflectCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1731672673, }, - ["UniqueChilledWhileBleeding1"] = { affix = "", "All Damage taken from Hits while Bleeding Contributes to Magnitude of Chill on you", statOrder = { 4160 }, level = 45, group = "ChilledWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2420248029, }, - ["UniqueChilledWhilePoisoned1"] = { affix = "", "All Damage taken from Hits while Poisoned Contributes to Magnitude of Chill on you", statOrder = { 4161 }, level = 45, group = "ChilledWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1291285202, }, - ["UniqueNonChilledEnemiesBleedAndChill1"] = { affix = "", "All Damage from Hits against Bleeding targets Contributes to Chill Magnitude", statOrder = { 4162 }, level = 1, group = "NonChilledEnemiesBleedAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1717295693, }, - ["UniqueNonChilledEnemiesPoisonAndChill1"] = { affix = "", "All Damage from Hits against Poisoned targets Contributes to Chill Magnitude", statOrder = { 4163 }, level = 1, group = "NonChilledEnemiesPoisonAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1375667591, }, - ["UniqueArmourAppliesToLightningDamage1"] = { affix = "", "+100% of Armour also applies to Lightning Damage", statOrder = { 4516 }, level = 1, group = "ArmourAppliesToLightningDamage", weightKey = { }, weightVal = { }, modTags = { "armour", "defences", "elemental", "lightning" }, tradeHash = 2134207902, }, - ["UniqueLightningResistNoReduction1"] = { affix = "", "Lightning Resistance does not affect Lightning damage taken", statOrder = { 7094 }, level = 1, group = "LightningResistNoReduction", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 3999959974, }, - ["UniqueNearbyEnemyLightningResistanceEqual1"] = { affix = "", "Enemies in your Presence have Lightning Resistance equal to yours", statOrder = { 5950 }, level = 1, group = "NearbyEnemyLightningResistanceEqual", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1546580830, }, - ["UniquePhysicalDamageTakenAsLightningPercent1"] = { affix = "", "(30-50)% of Physical damage from Hits taken as Lightning damage", statOrder = { 2121 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHash = 425242359, }, - ["UniqueMaximumBlockChanceIfNotBlockedRecently1"] = { affix = "", "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently", statOrder = { 8286 }, level = 1, group = "MaximumBlockChanceIfNotBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2584264074, }, - ["UniqueInstantLifeFlaskRecovery1"] = { affix = "", "Life Recovery from Flasks is instant", statOrder = { 6974 }, level = 1, group = "InstantLifeFlaskRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 720388959, }, - ["UniqueLifeLeechOvercapLife1"] = { affix = "", "Life Leech can Overflow Maximum Life", statOrder = { 6989 }, level = 1, group = "LifeLeechOvercapLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2714890129, }, - ["UniqueLifeFlasksOvercapLife1"] = { affix = "", "Life Recovery from Flasks can Overflow Maximum Life", statOrder = { 6973 }, level = 75, group = "LifeFlasksOvercapLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1245896889, }, - ["UniqueHasSoulEater1"] = { affix = "", "Soul Eater", statOrder = { 9784 }, level = 1, group = "HasSoulEater", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1404607671, }, - ["UniqueDoublePresenceRadius1"] = { affix = "", "Presence Radius is doubled", statOrder = { 9783 }, level = 1, group = "DoublePresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1810907437, }, - ["UniqueLifeFlaskChargeGeneration1"] = { affix = "", "Life Flasks gain 0.25 charges per Second", statOrder = { 6451 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1102738251, }, - ["UniqueLifeFlaskChargeGeneration2"] = { affix = "", "Life Flasks gain (0.17-0.25) charges per Second", statOrder = { 6451 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1102738251, }, - ["UniqueManaFlaskChargeGeneration1"] = { affix = "", "Mana Flasks gain 0.25 charges per Second", statOrder = { 6452 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2200293569, }, - ["UniqueManaFlaskChargeGeneration2"] = { affix = "", "Mana Flasks gain (0.17-0.25) charges per Second", statOrder = { 6452 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2200293569, }, - ["UniqueManaFlaskChargeGeneration3"] = { affix = "", "Mana Flasks gain (0.1-0.25) charges per Second", statOrder = { 6452 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2200293569, }, - ["UniqueCharmChargeGeneration1"] = { affix = "", "Charms gain 0.5 charges per Second", statOrder = { 6448 }, level = 1, group = "CharmChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 185580205, }, - ["UniqueChaosResistanceIsZero1"] = { affix = "", "Chaos Resistance is zero", statOrder = { 10003 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2439129490, }, - ["UniqueChaosResistanceIsZero2"] = { affix = "", "Chaos Resistance is zero", statOrder = { 10003 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2439129490, }, - ["UniqueRecoverLifePercentOnBlock1"] = { affix = "", "Recover 4% of maximum Life when you Block", statOrder = { 2682 }, level = 1, group = "RecoverLifePercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 2442647190, }, - ["UniqueIntimidateOnCurse1"] = { affix = "", "Enemies you Curse are Intimidated", statOrder = { 5966 }, level = 1, group = "IntimidateOnCurse", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 147006673, }, - ["UniqueSelfStatusAilmentDuration1"] = { affix = "", "50% increased Elemental Ailment Duration on you", statOrder = { 1549 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 1745952865, }, - ["UniqueCurseNoActivationDelay1"] = { affix = "", "Curses have no Activation Delay", statOrder = { 9801 }, level = 1, group = "CurseNoActivationDelay", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3751072557, }, - ["UniqueSetMovementVelocityPerEvasion1"] = { affix = "", "Increases Movement Speed by 25%, plus 1% per 600 Evasion Rating, up to a maximum of 75%", "Other Modifiers to Movement Speed except for Sprinting do not apply", statOrder = { 8592, 8592.1 }, level = 1, group = "SetMovementVelocityPerEvasion", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3881997959, }, - ["UniqueInstantLifeFlaskOnLowLife1"] = { affix = "", "Life Flasks used while on Low Life apply Recovery Instantly", statOrder = { 6975 }, level = 1, group = "InstantLifeFlaskOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1200347828, }, - ["UniqueInstantManaFlaskOnLowMana1"] = { affix = "", "Mana Flasks used while on Low Mana apply Recovery Instantly", statOrder = { 7493 }, level = 1, group = "InstantManaFlaskOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1839832419, }, - ["UniqueDamageAddedAsFireAttacks1"] = { affix = "", "Attacks Gain (5-10)% of Damage as Extra Fire Damage", statOrder = { 8693 }, level = 1, group = "DamageAddedAsFireAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, tradeHash = 1049080093, }, - ["UniqueDamageAddedAsColdAttacks1"] = { affix = "", "Attacks Gain (5-10)% of Damage as Extra Cold Damage", statOrder = { 8692 }, level = 1, group = "DamageAddedAsColdAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack" }, tradeHash = 1484500028, }, - ["UniqueDamageAddedAsChaos1"] = { affix = "", "Gain (30-40)% of Damage as Extra Chaos Damage", statOrder = { 1602 }, level = 1, group = "DamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 3398787959, }, - ["UniquePhysicalDamageAddedAsChaosAttacks1"] = { affix = "", "Attacks Gain (10-20)% of Physical Damage as extra Chaos Damage", statOrder = { 8709 }, level = 1, group = "PhysicalDamageAddedAsChaosAttacks", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos", "attack" }, tradeHash = 261503687, }, - ["UniqueEnemiesChilledIncreasedDamageTaken1"] = { affix = "", "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", statOrder = { 5927 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1816894864, }, - ["UniqueSelfPhysicalDamageOnMinionDeath1"] = { affix = "", "300 Physical Damage taken on Minion Death", statOrder = { 2652 }, level = 1, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 4176970656, }, - ["UniqueOnslaughtBuffOnKill1"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2307 }, level = 1, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1195849808, }, - ["UniqueBuildDamageAgainstRareAndUnique1"] = { affix = "", "Deal 4% increased Damage with Hits to Rare or Unique Enemies for each second they've ever been in your Presence, up to a maximum of 200%", statOrder = { 9782 }, level = 1, group = "BuildDamageAgainstRareAndUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4258409981, }, - ["UniqueAlwaysPierceBurningEnemies1"] = { affix = "", "Projectiles Pierce all Ignited enemies", statOrder = { 4177 }, level = 1, group = "AlwaysPierceBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2214228141, }, - ["UniqueStunRecovery1"] = { affix = "", "200% increased Stun Recovery", statOrder = { 993 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2511217560, }, - ["UniqueSpellDamageModifiersApplyToAttackDamage1"] = { affix = "", "Increases and Reductions to Spell damage also apply to Attacks", statOrder = { 2348 }, level = 1, group = "SpellDamageModifiersApplyToAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3811649872, }, - ["UniqueLifeRecharge1"] = { affix = "", "Life Recharges", statOrder = { 4577 }, level = 1, group = "LifeRecharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3971919056, }, - ["UniqueIncreasedTotemLife1"] = { affix = "", "(20-30)% reduced Totem Life", statOrder = { 1459 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 686254215, }, - ["UniqueAdditionalTotems1"] = { affix = "", "+1 to maximum number of Summoned Totems", statOrder = { 1903 }, level = 1, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 429867172, }, - ["UniqueRandomlyCursedWhenTotemsDie1"] = { affix = "", "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", statOrder = { 2219 }, level = 1, group = "RandomlyCursedWhenTotemsDie", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2918129907, }, - ["UniqueWarcryCorpseExplosion1"] = { affix = "", "Warcries Explode Corpses dealing 10% of their Life as Physical Damage", statOrder = { 5386 }, level = 1, group = "WarcryCorpseExplosion", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 11014011, }, - ["UniqueWarcrySpeed1"] = { affix = "", "(20-30)% increased Warcry Speed", statOrder = { 2884 }, level = 1, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1316278494, }, - ["UniqueWarcryAreaOfEffect1"] = { affix = "", "Warcry Skills have (20-30)% increased Area of Effect", statOrder = { 9891 }, level = 1, group = "WarcryAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2567751411, }, - ["UniqueSummonTotemCastSpeed1"] = { affix = "", "25% increased Totem Placement speed", statOrder = { 2250 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, }, - ["UniqueTotemReflectFireDamage1"] = { affix = "", "Totems Reflect 25% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3354 }, level = 1, group = "TotemReflectFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 1723061251, }, - ["UniqueMeleeCriticalStrikeMultiplier1"] = { affix = "", "+(100-150)% to Melee Critical Damage Bonus", statOrder = { 1330 }, level = 1, group = "MeleeWeaponCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHash = 4237442815, }, - ["UniquePhysicalDamageTaken1"] = { affix = "", "(40-50)% increased Physical Damage taken", statOrder = { 1891 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3853018505, }, - ["UniqueFlatPhysicalDamageTaken1"] = { affix = "", "-30 Physical Damage taken from Hits", statOrder = { 1885 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 321765853, }, - ["UniqueGainRageOnManaSpent1"] = { affix = "", "Gain (5-10) Rage after Spending a total of 200 Mana", statOrder = { 6432 }, level = 1, group = "GainRageOnManaSpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3199910734, }, - ["UniqueRageGrantsSpellDamage1"] = { affix = "", "Rage grants Spell damage instead of Attack damage", statOrder = { 9044 }, level = 1, group = "RageGrantsSpellDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2933909365, }, - ["UniqueAllDefences1"] = { affix = "", "30% reduced Global Defences", statOrder = { 2486 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 1389153006, }, - ["UniqueGoldFoundIncrease1"] = { affix = "", "(10-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6476 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3175163625, }, - ["UniqueCannotGainEnergyShield1"] = { affix = "", "Cannot have Energy Shield", statOrder = { 2734 }, level = 1, group = "CannotGainEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 410952253, }, - ["UniqueLifeRegenPerEnergyShield1"] = { affix = "", "Regenerate 0.05 Life per second per Maximum Energy Shield", statOrder = { 7024 }, level = 1, group = "LifeRegenPerEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3276271783, }, - ["UniqueGainMissingLifeBeforeHit1"] = { affix = "", "Recover (20-30)% of Missing Life before being Hit by an Enemy", statOrder = { 8559 }, level = 1, group = "GainMissingLifeBeforeHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1990472846, }, - ["UniqueAccuracyUnaffectedDistance1"] = { affix = "", "You have no Accuracy Penalty at Distance", statOrder = { 5682 }, level = 1, group = "AccuracyUnaffectedDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3070990531, }, - ["UniqueAccuracyOver100"] = { affix = "", "Chance to Hit with Attacks can exceed 100%", "Gain additional Critical Hit Chance equal to (10-25)% of excess chance to Hit with Attacks", statOrder = { 6307, 6307.1 }, level = 1, group = "AccuracyOver100", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2800049475, }, - ["UniqueRepeatNoEnemyInPresence"] = { affix = "", "Barrageable Attacks with this Bow Repeat +2 times if no enemies are in your Presence", statOrder = { 3989 }, level = 1, group = "UniqueRepeatNoEnemyInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 621493497, }, - ["UniqueSkillEffectDuration1"] = { affix = "", "(30-50)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, }, - ["UniqueSkillEffectDuration2"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, }, - ["UniqueGlobalCooldownRecovery1"] = { affix = "", "(30-50)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1004011302, }, - ["UniqueMinionDamageAffectsYou1"] = { affix = "", "Increases and Reductions to Minion Damage also affect you", statOrder = { 3874 }, level = 1, group = "MinionDamageAffectsYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1631928082, }, - ["UniqueMinionAttackSpeedAffectsYou1"] = { affix = "", "Increases and Reductions to Minion Attack Speed also affect you", statOrder = { 3322 }, level = 1, group = "MinionAttackSpeedAffectsYou", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2293111154, }, - ["UniqueDamagePerMinion1"] = { affix = "", "(5-8)% increased Damage per Minion", statOrder = { 5558 }, level = 1, group = "DamagePerMinion", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 3399499561, }, - ["UniqueManaRegenerationWhileStationary1"] = { affix = "", "40% increased Mana Regeneration Rate while stationary", statOrder = { 3883 }, level = 1, group = "ManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3308030688, }, - ["UniqueEnergyShieldAsPercentOfLife1"] = { affix = "", "Gain (10-15)% of maximum Life as Extra maximum Energy Shield", statOrder = { 8334 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1228337241, }, - ["UniqueDamageBypassEnergyShieldPercent1"] = { affix = "", "10% of Damage taken bypasses Energy Shield", statOrder = { 4510 }, level = 1, group = "DamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2448633171, }, - ["UniqueLoseEnergyShieldPerSecond1"] = { affix = "", "You lose 5% of maximum Energy Shield per second", statOrder = { 6008 }, level = 1, group = "LoseEnergyShieldPerSecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2350411833, }, - ["UniqueLifeLeechExcessToEnergyShield1"] = { affix = "", "Excess Life Recovery from Leech is applied to Energy Shield", statOrder = { 6990 }, level = 1, group = "LifeLeechExcessToEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 999436592, }, - ["UniqueMinionLifeTiedToOwner1"] = { affix = "", "Minions in Presence lose Life when you lose Life", "Minions in Presence gain Life when you gain Life", statOrder = { 9798, 9798.1 }, level = 1, group = "MinionLifeTiedToOwner", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2247039371, }, - ["UniqueRingIgniteProliferation1"] = { affix = "", "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", statOrder = { 1872 }, level = 1, group = "RingIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3314057862, }, - ["UniqueStaffIgniteProliferation1"] = { affix = "", "Ignites you inflict spread to other Enemies that stay within 1.5 metres for 1 second", statOrder = { 1872 }, level = 1, group = "RingIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3314057862, }, - ["UniqueNoCriticalStrikeMultiplier1"] = { affix = "", "Your Critical Hits do not deal extra Damage", statOrder = { 1340 }, level = 32, group = "NoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 4058681894, }, - ["UniqueLocalNoCriticalStrikeMultiplier1"] = { affix = "", "Critical Hits do not deal extra Damage", statOrder = { 7332 }, level = 1, group = "LocalNoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 1508661598, }, - ["UniqueThornsCriticalStrikeChance1"] = { affix = "", "+25% to Thorns Critical Hit Chance", statOrder = { 4616 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2715190555, }, - ["UniqueLocalDazeBuildup1"] = { affix = "", "Dazes on Hit", statOrder = { 7439 }, level = 1, group = "LocalDazeBuildup", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2933846633, }, - ["UniqueAftershockChance1"] = { affix = "", "Slam Skills you use yourself cause an additional Aftershock", statOrder = { 9981 }, level = 1, group = "AftershockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2045949233, }, - ["UniqueAncestralBoostEveryXAttacksWhileShapeshifted1"] = { affix = "", "Every second Slam Skill you use while Shapeshifted is Ancestrally Boosted", "Every second Strike Skill you use while Shapeshifted is Ancestrally Boosted", statOrder = { 4192, 4192.1 }, level = 1, group = "AncestralBoostEveryXAttacksWhileShapeshifted", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2224139044, }, - ["UniqueDoubleEnergyGain1"] = { affix = "", "Energy Generation is doubled", statOrder = { 5991 }, level = 1, group = "DoubleEnergyGain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 793801176, }, - ["UniqueSpellLifeCostPercent1"] = { affix = "", "25% of Spell Mana Cost Converted to Life Cost", statOrder = { 9436 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 3544050945, }, - ["UniqueLocalReloadSpeed1"] = { affix = "", "30% reduced Reload Speed", statOrder = { 920 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 710476746, }, - ["UniqueLocalReloadSpeed2"] = { affix = "", "(7-14)% increased Reload Speed", statOrder = { 920 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 710476746, }, - ["UniqueChanceForNoBoltReload1"] = { affix = "", "Bolts fired by Crossbow Attacks have 100% chance to not", "expend Ammunition if you've Reloaded Recently", statOrder = { 5509, 5509.1 }, level = 1, group = "ChanceForNoBoltReload", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 842299438, }, - ["UniqueHalvedSpiritReservation1"] = { affix = "", "Skills reserve 50% less Spirit", statOrder = { 9809 }, level = 1, group = "HalvedSpiritReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2838161567, }, - ["UniqueLocalCritChanceOverride1"] = { affix = "", "This Weapon's Critical Hit Chance is 100%", statOrder = { 3360 }, level = 1, group = "LocalCritChanceOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3384885789, }, - ["UniqueAdditionalAttackChain1"] = { affix = "", "Attacks Chain 2 additional times", statOrder = { 3684 }, level = 1, group = "AttackAdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3868118796, }, - ["UniqueStrengthRequirements1"] = { affix = "", "-15 Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, }, - ["UniqueStrengthRequirements2"] = { affix = "", "+100 Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, }, - ["UniqueStrengthRequirements3"] = { affix = "", "+150 Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, }, - ["UniqueStrengthRequirements4"] = { affix = "", "+25 Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, }, - ["UniqueDexterityRequirements1"] = { affix = "", "+50 Dexterity Requirement", statOrder = { 810 }, level = 1, group = "DexterityRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1133453872, }, - ["UniqueIntelligenceRequirements1"] = { affix = "", "+100 Intelligence Requirement", statOrder = { 812 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2153364323, }, - ["UniqueIntelligenceRequirements2"] = { affix = "", "+200 Intelligence Requirement", statOrder = { 812 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2153364323, }, - ["UniqueChillHitsCauseShattering1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5278 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3119292058, }, - ["UniqueTriggerEmberFusilladeOnSpellCast1"] = { affix = "", "Trigger Ember Fusillade Skill on casting a Spell", statOrder = { 7224 }, level = 1, group = "GrantsTriggeredEmberFusillade", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 826162720, }, - ["UniqueTriggerSparkOnKillingShockedEnemy1"] = { affix = "", "Trigger Spark Skill on killing a Shocked Enemy", statOrder = { 7227 }, level = 1, group = "GrantsTriggeredSpark", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 811217923, }, - ["UniqueTriggerLightningBoltOnCriticalStrike1"] = { affix = "", "Trigger Lightning Bolt Skill on Critical Hit", statOrder = { 7226 }, level = 1, group = "GrantsTriggeredLightningBolt", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 704919631, }, - ["UniqueOnlySocketRubyJewel1"] = { affix = "", "You can only Socket Ruby Jewels in this item", statOrder = { 7170 }, level = 1, group = "OnlySocketRubyJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4031148736, }, - ["UniqueOnlySocketEmeraldJewel1"] = { affix = "", "You can only Socket Emerald Jewels in this item", statOrder = { 7169 }, level = 1, group = "OnlySocketEmeraldJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 3598729471, }, - ["UniqueOnlySocketSapphireJewel1"] = { affix = "", "You can only Socket Sapphire Jewels in this item", statOrder = { 7171 }, level = 1, group = "OnlySocketSapphireJewel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 21302430, }, - ["UniqueFireResistanceNoPenalty1"] = { affix = "", "Fire Resistance is unaffected by Area Penalties", statOrder = { 6163 }, level = 1, group = "FireResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3247805335, }, - ["UniqueColdResistanceNoPenalty1"] = { affix = "", "Cold Resistance is unaffected by Area Penalties", statOrder = { 5324 }, level = 1, group = "ColdResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4207433208, }, - ["UniqueLightningResistanceNoPenalty1"] = { affix = "", "Lightning Resistance is unaffected by Area Penalties", statOrder = { 7093 }, level = 1, group = "LightningResistanceNoPenalty", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3631920880, }, - ["UniqueTriggerGasCloudOnMainHandHit1"] = { affix = "", "Triggers Gas Cloud on Hit", statOrder = { 7225 }, level = 1, group = "GrantsTriggeredGasCloud", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1652674074, }, - ["UniqueTriggerDetonationOnOffHandHit1"] = { affix = "", "Trigger Detonation on Hit", statOrder = { 7223 }, level = 1, group = "GrantsTriggeredDetonation", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1524904258, }, - ["UniqueTakeFireDamageOnIgnite1"] = { affix = "", "Take 100 Fire Damage when you Ignite an Enemy", statOrder = { 6153 }, level = 65, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2518598473, }, - ["UniqueDodgeRollDistance1"] = { affix = "", "+1 metre to Dodge Roll distance", statOrder = { 5801 }, level = 1, group = "DodgeRollDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 258119672, }, - ["UniqueLioneyeDodgeRoll1"] = { affix = "", "+2 metres to Dodge Roll distance if you haven't Dodge Rolled Recently", "-1 metre to Dodge Roll distance if you've Dodge Rolled Recently", statOrder = { 3987, 3988 }, level = 1, group = "DodgeRollEnhancedWithTradeOff", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1898996531, }, - ["UniqueEvasionRatingDodgeRoll1"] = { affix = "", "50% increased Evasion Rating if you've Dodge Rolled Recently", statOrder = { 6081 }, level = 1, group = "EvasionRatingDodgeRoll", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1040569494, }, - ["UniqueCriticalStrikesIgnoreResistances1"] = { affix = "", "Critical Hits ignore Enemy Monster Elemental Resistances", statOrder = { 3038 }, level = 1, group = "CriticalStrikesIgnoreResistances", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1094937621, }, - ["UniqueEnergyShieldRegenerationFromLife1"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9143 }, level = 44, group = "EnergyShieldRegenerationFromLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 632761194, }, - ["UniqueGainManaAsExtraEnergyShield1"] = { affix = "", "Gain (4-6)% of maximum Mana as Extra maximum Energy Shield", statOrder = { 1840 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3027830452, }, - ["UniqueAdditionalChargeGeneration1"] = { affix = "", "Gain an additional Charge when you gain a Charge", statOrder = { 5142 }, level = 1, group = "AdditionalChargeGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1555237944, }, - ["UniqueModifyableWhileCorrupted1"] = { affix = "", "Can be modified while Corrupted", statOrder = { 12 }, level = 66, group = "ModifyableWhileCorruptedAndSpecialCorruption", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1161337167, }, - ["UniqueCharmChargesToLifeFlasks1"] = { affix = "", "50% of charges used by Charms granted to your Life Flasks", statOrder = { 5228 }, level = 70, group = "CharmChargesToLifeFlasks", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2369960685, }, - ["UniqueCorruptedBloodImmunity1"] = { affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 4906 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1658498488, }, - ["UniqueLocalSoulCoreEffect1"] = { affix = "", "(66-333)% increased effect of Socketed Soul Cores", statOrder = { 7352 }, level = 60, group = "LocalSoulCoreEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4065505214, }, - ["UniqueMaximumRage1"] = { affix = "", "+(-10-10) to Maximum Rage", statOrder = { 9032 }, level = 75, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1181501418, }, - ["UniqueGainChargesOnMaximumRage1"] = { affix = "", "Gain a random Charge on reaching Maximum Rage, no more than once every (3-6) seconds", statOrder = { 6284 }, level = 1, group = "GainChargesOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2284588585, }, - ["UniqueLoseRageOnMaximumRage1"] = { affix = "", "Lose all Rage on reaching Maximum Rage", statOrder = { 7448 }, level = 1, group = "LoseRageOnMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3851480592, }, - ["UniqueRageOnAnyHit1"] = { affix = "", "Gain (3-6) Rage on Hit", statOrder = { 4563 }, level = 1, group = "RageOnAnyHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2258007247, }, - ["UniqueLifeRegenerationNotApplied1"] = { affix = "", "Life Recovery from Regeneration is not applied", statOrder = { 7012 }, level = 1, group = "LifeRegenerationNotApplied", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3947672598, }, - ["UniqueRecoverLifeBasedOnRegen1"] = { affix = "", "Every 4 seconds, Recover 1 Life for every 0.2 Life Recovery per second from Regeneration", statOrder = { 9098 }, level = 1, group = "RecoverLifeBasedOnRegen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1457411584, }, - ["UniqueBaseLimit1"] = { affix = "", "Skills have +1 to Limit", statOrder = { 4579 }, level = 30, group = "BaseLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2942704390, }, - ["UniqueFireExposureOnShock1"] = { affix = "", "Inflict Fire Exposure on Shocking an Enemy", statOrder = { 6893 }, level = 1, group = "FireExposureOnShock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1538879632, }, - ["UniqueColdExposureOnIgnite1"] = { affix = "", "Inflict Cold Exposure on Igniting an Enemy", statOrder = { 6889 }, level = 1, group = "ColdExposureOnIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3314536008, }, - ["UniqueColdExposureOnHitWithMagnitude1"] = { affix = "", "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (50-60)%", statOrder = { 4164 }, level = 1, group = "ElementalExposureEffectOnHitWithMagnitude", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 533542952, }, - ["UniqueColdExposureMagnitude1UNUSED"] = { affix = "", "Cold Exposure you inflict lowers Total Cold Resistance by an extra (20-30)%", statOrder = { 5314 }, level = 1, group = "ColdExposureAdditionalResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2243456805, }, - ["UniqueLightningExposureOnCrit1"] = { affix = "", "Inflict Lightning Exposure on Critical Hit", statOrder = { 6895 }, level = 1, group = "LightningExposureOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2665488635, }, - ["UniqueEnemiesInPresenceGainCritWeakness1"] = { affix = "", "Every second, inflicts Critical Weakness on enemies in your Presence for (15-20) seconds", statOrder = { 5944 }, level = 1, group = "EnemiesInPresenceGainCritWeakness", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1052498387, }, - ["UniqueEnemiesInPresenceBlinded1"] = { affix = "", "Enemies in your Presence are Blinded", statOrder = { 5939 }, level = 1, group = "EnemiesInPresenceBlinded", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1464727508, }, - ["UniqueFlatCooldownRecovery1"] = { affix = "", "Skills have -(2-1) seconds to Cooldown", statOrder = { 9780 }, level = 1, group = "FlatCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 396200591, }, - ["UniqueChanceToNotConsumeCorpse1"] = { affix = "", "25% chance to not destroy Corpses when Consuming Corpses", statOrder = { 5183 }, level = 1, group = "ChanceToNotConsumeCorpse", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 965913123, }, - ["UniqueDisablesOtherRingSlot1"] = { affix = "", "Can't use other Rings", statOrder = { 1399 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 64726306, }, - ["UniqueSelfCurseDuration1"] = { affix = "", "50% reduced Duration of Curses on you", statOrder = { 1836 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2920970371, }, - ["UniqueLeftRingSpellProjectilesFork1"] = { affix = "", "Left ring slot: Projectiles from Spells Fork", statOrder = { 7315 }, level = 1, group = "LeftRingSpellProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2437476305, }, - ["UniqueLeftRingSpellProjectilesCannotChain1"] = { affix = "", "Left ring slot: Projectiles from Spells cannot Chain", statOrder = { 7314 }, level = 1, group = "LeftRingSpellProjectilesCannotChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3647242059, }, - ["UniqueRightRingSpellProjectilesChain1"] = { affix = "", "Right ring slot: Projectiles from Spells Chain +1 times", statOrder = { 7342 }, level = 1, group = "RightRingSpellProjectilesChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1555918911, }, - ["UniqueRightRingSpellProjectilesCannotFork1"] = { affix = "", "Right ring slot: Projectiles from Spells cannot Fork", statOrder = { 7343 }, level = 1, group = "RightRingSpellProjectilesCannotFork", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2933024469, }, - ["UniqueSpellsCannotPierce1"] = { affix = "", "Projectiles from Spells cannot Pierce", statOrder = { 8992 }, level = 1, group = "SpellsCannotPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3826125995, }, - ["UniqueFlaskOverhealToGuard1"] = { affix = "", "Excess Life Recovery added as Guard for 20 seconds", statOrder = { 7360 }, level = 1, group = "FlaskOverhealToGuard", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 636464211, }, - ["UniqueAlternatingDamageTaken1"] = { affix = "", "Alternating every 5 seconds:", "Take 40% less Damage from Hits", "Take 40% less Damage over time", statOrder = { 6520, 6520.1, 6520.2 }, level = 78, group = "AlternatingDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 258955603, }, - ["UniqueLuckyBlockChance1"] = { affix = "", "Chance to Block Damage is Lucky", statOrder = { 4524 }, level = 1, group = "LuckyBlockChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2957287092, }, - ["UniqueCharmsNoCharges1"] = { affix = "", "Charms use no Charges", statOrder = { 5257 }, level = 1, group = "CharmsNoCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2620375641, }, - ["UniqueAggravateBleedOnPresence1"] = { affix = "", "Aggravate Bleeding on Enemies when they Enter your Presence", statOrder = { 4123 }, level = 1, group = "AggravateBleedOnPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 874646180, }, - ["UniqueThornsDamageIncrease1"] = { affix = "", "100% increased Thorns damage", statOrder = { 9646 }, level = 1, group = "ThornsDamageIncrease", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1315743832, }, - ["UniqueLifeCost1"] = { affix = "", "Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 1, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2480498143, }, - ["UniqueLifeCost2"] = { affix = "", "10% of Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 1, group = "LifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2480498143, }, - ["UniqueDamageGainedAsChaosPerCost1"] = { affix = "", "Skills gain 1% of Damage as Chaos Damage per 3 Life Cost", statOrder = { 8668 }, level = 1, group = "DamageGainedAsChaosPerCost", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4117005593, }, - ["UniqueSpiritPerSocketable1"] = { affix = "", "+(10-14) to Spirit per Socket filled", statOrder = { 7355 }, level = 1, group = "SpiritPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4163415912, }, - ["UniqueMaximumLifePerSocketable1"] = { affix = "", "5% increased Maximum Life per Socket filled", statOrder = { 7325 }, level = 1, group = "MaximumLifePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2702182380, }, - ["UniqueMaximumManaPerSocketable1"] = { affix = "", "5% increased Maximum Mana per Socket filled", statOrder = { 7327 }, level = 1, group = "MaximumManaPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 911712882, }, - ["UniqueGlobalDefencesPerSocketable1"] = { affix = "", "(9-12)% increased Global Defences per Socket filled", statOrder = { 7242 }, level = 1, group = "GlobalDefencesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1225174187, }, - ["UniqueItemRarityPerSocketable1"] = { affix = "", "10% increased Rarity of Items found per Socket filled", statOrder = { 7278 }, level = 1, group = "ItemRarityPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 313223231, }, - ["UniqueAllResistancesPerSocketable1"] = { affix = "", "+(8-10)% to all Elemental Resistances per Socket filled", statOrder = { 7340 }, level = 1, group = "AllResistancesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2593651571, }, - ["UniquePercentAllAttributesPerSocketable1"] = { affix = "", "5% increased Attributes per Socket filled", statOrder = { 7138 }, level = 1, group = "PercentAllAttributesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2513318031, }, - ["UniqueBaseLifePerSocketable1"] = { affix = "", "+(45-60) to maximum Life per Socket filled", statOrder = { 7163 }, level = 1, group = "BaseLifePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 150391334, }, - ["UniqueBaseManaPerSocketable1"] = { affix = "", "+(50-60) to maximum Mana per Socket filled", statOrder = { 7164 }, level = 1, group = "BaseManaPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1036267537, }, - ["UniqueChaosResistancePerSocketable1"] = { affix = "", "+(10-13)% to Chaos Resistance per Socket filled", statOrder = { 7160 }, level = 1, group = "ChaosResistancePerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1123023256, }, - ["UniqueAllAttributesPerSocketable1"] = { affix = "", "+(5-7) to all Attributes per Socket filled", statOrder = { 7136 }, level = 1, group = "AllAttributesPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3474271079, }, - ["UniqueStunThresholdPerSocketable1"] = { affix = "", "+(70-90) to Stun Threshold per Socket filled", statOrder = { 7357 }, level = 1, group = "StunThresholdPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3679769182, }, - ["UniqueLifeRegenerationPerSocketable1"] = { affix = "", "(8-12) Life Regeneration per second per Socket filled", statOrder = { 7162 }, level = 1, group = "LifeRegenerationPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 332337290, }, - ["UniqueReducedExtraDamageFromCritsPerSocketable1"] = { affix = "", "Hits against you have (15-20)% reduced Critical Damage Bonus per Socket filled", statOrder = { 7165 }, level = 1, group = "ReducedExtraDamageFromCritsPerSocketable", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 701923421, }, - ["UniqueMaximumLightningDamagePerPower1"] = { affix = "", "On Hitting an enemy, gains maximum added Lightning damage equal to", "the enemy's Power for 20 seconds, up to a total of 500", statOrder = { 7321, 7321.1 }, level = 1, group = "MaximumLightningDamagePerPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3538915253, }, - ["UniqueSupportGemLimit1"] = { affix = "", "You can Socket 2 additional copies of each Lineage Support Gem, in different Skills", statOrder = { 7111 }, level = 1, group = "SupportGemLimit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 664024640, }, - ["UniqueImmobiliseThreshold1"] = { affix = "", "Immobilise enemies at 50% buildup instead of 100%", statOrder = { 5512 }, level = 1, group = "ImmobiliseThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4238331303, }, - ["UniqueImmobiliseDamageTaken1"] = { affix = "", "Enemies Immobilised by you take 20% more Damage", statOrder = { 9781 }, level = 1, group = "ImmobiliseDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1613322341, }, - ["UniqueDodgeRollAvoidAllDamage1"] = { affix = "", "Dodge Roll avoids all Hits", statOrder = { 5802 }, level = 1, group = "DodgeRollAvoidAllDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3518087336, }, - ["UniqueSpeedPerDodgeRoll20Seconds1"] = { affix = "", "10% less Movement and Skill Speed per Dodge Roll in the past 20 seconds", statOrder = { 9800 }, level = 1, group = "SpeedPerDodgeRoll20Seconds", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3156445245, }, - ["UniqueNearbyAlliesDamageAsFire1"] = { affix = "", "Allies in your Presence Gain (20-30)% of Damage as Extra Fire Damage", statOrder = { 4168 }, level = 1, group = "NearbyAlliesDamageAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHash = 2173791158, }, - ["UniqueNearbyAlliesPercentLifeRegeneration1"] = { affix = "", "Allies in your Presence Regenerate (2-3)% of their Maximum Life per second", statOrder = { 897 }, level = 1, group = "NearbyAlliesPercentLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "aura" }, tradeHash = 3081479811, }, - ["UniqueEnemiesInPresenceLowestResistance1"] = { affix = "", "Enemies in your Presence Resist Elemental Damage based on their Lowest Resistance", statOrder = { 5943 }, level = 1, group = "EnemiesInPresenceLowestResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "aura" }, tradeHash = 2786852525, }, - ["UniqueEnemiesInPresenceIntimidate1"] = { affix = "", "Enemies in your Presence are Intimidated", statOrder = { 5940 }, level = 1, group = "EnemiesInPresenceIntimidate", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 3491722585, }, - ["UniquePhysicalDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Physical Damage from Hits", statOrder = { 2969 }, level = 1, group = "PhysicalDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 2415497478, }, - ["UniqueChaosDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Chaos Damage from Hits", statOrder = { 2974 }, level = 1, group = "ChaosDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 1563503803, }, - ["UniqueFireDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Fire Damage from Hits", statOrder = { 2971 }, level = 1, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHash = 42242677, }, - ["UniqueColdDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Cold Damage from Hits", statOrder = { 2972 }, level = 1, group = "ColdDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHash = 3743375737, }, - ["UniqueLightningDamageAvoidance1"] = { affix = "", "(10-30)% chance to Avoid Lightning Damage from Hits", statOrder = { 2973 }, level = 1, group = "LightningDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHash = 2889664727, }, - ["UniquePerfectTimingWindow1"] = { affix = "", "Skills have a (100-150)% longer Perfect Timing window", statOrder = { 8839 }, level = 1, group = "PerfectTimingWindow", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1373370443, }, - ["UniqueFlaskRecoverAllMana1"] = { affix = "", "Recover all Mana when Used", statOrder = { 7363 }, level = 1, group = "FlaskRecoverAllMana", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1002973905, }, - ["UniqueFlaskDealChaosDamageNova1"] = { affix = "", "Every 3 seconds during Effect, deal 100% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres", statOrder = { 7362 }, level = 1, group = "FlaskDealChaosDamageNova", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos" }, tradeHash = 1910039112, }, - ["UniqueFlaskTakeDamageWhenEnds1"] = { affix = "", "Deals 25% of current Mana as Chaos Damage to you when Effect ends", statOrder = { 7364 }, level = 1, group = "FlaskTakeDamageWhenEnds", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3311259821, }, - ["UniqueFlaskEffectNotRemovedOnFullMana1"] = { affix = "", "Effect is not removed when Unreserved Mana is Filled", "(200-250)% increased Duration", statOrder = { 629, 907 }, level = 1, group = "FlaskEffectNotRemovedOnFullMana", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2300024566, }, - ["UniqueTriggersRefundEnergySpent1"] = { affix = "", "Trigger skills refund half of Energy spent", statOrder = { 9709 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 599320227, }, - ["UniqueIncreasedRingBonuses1"] = { affix = "", "(40-80)% increased bonuses gained from Equipped Rings", statOrder = { 6046 }, level = 1, group = "IncreasedRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2793222406, }, - ["UniqueIncreasedLeftRingBonuses1"] = { affix = "", "(20-30)% increased bonuses gained from left Equipped Ring", statOrder = { 6044 }, level = 1, group = "IncreasedLeftRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 513747733, }, - ["UniqueIncreasedRightRingBonuses1"] = { affix = "", "(20-30)% increased bonuses gained from right Equipped Ring", statOrder = { 6045 }, level = 1, group = "IncreasedRightRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3885501357, }, - ["UniqueEnemiesInPresenceFireExposure1"] = { affix = "", "Enemies in your Presence have -25% to Fire Resistance", statOrder = { 5946 }, level = 66, group = "EnemiesInPresenceElementalExposure", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 990363519, }, - ["UniqueCriticalStrikesIgnoreLightningResistance1"] = { affix = "", "Critical Hits Ignore Enemy Monster Lightning Resistance", statOrder = { 5504 }, level = 66, group = "CriticalStrikesIgnoreLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "critical" }, tradeHash = 1289045485, }, - ["UniqueColdResistancePenetration1"] = { affix = "", "Damage Penetrates 75% Cold Resistance", statOrder = { 2614 }, level = 66, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, }, - ["UniqueOnHitBlindChilledEnemies1"] = { affix = "", "Blind Chilled enemies on Hit", statOrder = { 4778 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3450276548, }, - ["UniqueArmourOvercappedFireResistance1"] = { affix = "", "Armour is increased by Uncapped Fire Resistance", statOrder = { 4294 }, level = 1, group = "ArmourUncappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 713266390, }, - ["UniqueEvasionOvercappedLightningResistance1"] = { affix = "", "Evasion Rating is increased by Uncapped Lightning Resistance", statOrder = { 6073 }, level = 1, group = "EvasionUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 419098854, }, - ["UniqueEnergyShieldOvercappedColdResistance1"] = { affix = "", "Energy Shield is increased by Uncapped Cold Resistance", statOrder = { 6007 }, level = 1, group = "EnergyShieldUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2147773348, }, - ["UniqueAilmentThresholdOvercappedChaosResistance1"] = { affix = "", "Elemental Ailment Threshold is increased by Uncapped Chaos Resistance", statOrder = { 4144 }, level = 1, group = "AilmentThresholdUncappedChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1000566389, }, - ["UniqueChaosDamageCanFreeze1"] = { affix = "", "Chaos Damage from Hits also Contributes to Freeze Buildup", statOrder = { 2520 }, level = 1, group = "ChaosDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "cold", "chaos", "ailment" }, tradeHash = 2973498992, }, - ["UniqueChaosDamageCanElectrocute1"] = { affix = "", "Chaos Damage from Hits also Contributes to Electrocute Buildup", statOrder = { 4535 }, level = 1, group = "ChaosDamageCanElectrocute", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHash = 2315177528, }, - ["UniqueLightningDamageToAttacksPerIntelligence1"] = { affix = "", "Adds 1 to 10 Lightning Damage to Attacks per 20 Intelligence", statOrder = { 8422 }, level = 1, group = "LightningDamageToAttacksPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHash = 3111921451, }, - ["UniqueIncreasedAttackSpeedPerDexterity1"] = { affix = "", "1% increased Attack Speed per 20 Dexterity", statOrder = { 2213 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 720908147, }, - ["UniqueMinionResistanceEqualYours1"] = { affix = "", "Minions' Resistances are equal to yours", statOrder = { 8526 }, level = 1, group = "MinionResistanceEqualYours", weightKey = { }, weightVal = { }, modTags = { "resistance", "minion" }, tradeHash = 3045072899, }, - ["UniqueSelfBleedFireDamage1"] = { affix = "", "You take Fire Damage instead of Physical Damage from Bleeding", statOrder = { 2123 }, level = 1, group = "SelfBleedFireDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2022332470, }, - ["UniqueEnemyExtraDamageRollsWithLightningDamage1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky", statOrder = { 5933 }, level = 1, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 4224965099, }, - ["UniqueCurseCastSpeed1"] = { affix = "", "Curse Skills have (10-20)% increased Cast Speed", statOrder = { 1869 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "curse" }, tradeHash = 2378065031, }, - ["UniqueGlobalAdditionalCharm1"] = { affix = "", "+1 Charm Slot", statOrder = { 8739 }, level = 1, group = "GlobalAdditionalCharm", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 554899692, }, - ["UniqueMinionChaosResistance1"] = { affix = "", "Minions have +(17-23)% to Chaos Resistance", statOrder = { 2559 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance", "minion" }, tradeHash = 3837707023, }, - ["UniqueEnemyExtraDamageRollsOnLowLife1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Low Life", statOrder = { 2228 }, level = 1, group = "EnemyExtraDamageRollsOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3753748365, }, - ["UniqueAilmentThreshold1"] = { affix = "", "+(30-50) to Ailment Threshold", statOrder = { 4145 }, level = 1, group = "AilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1488650448, }, - ["UniqueAilmentThreshold2"] = { affix = "", "+(200-300) to Ailment Threshold", statOrder = { 4145 }, level = 1, group = "AilmentThreshold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1488650448, }, - ["UniqueEnemiesTakeIncreasedDamagePerAilmentType1"] = { affix = "", "Enemies take (15-20)% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 5846, 5846.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1509533589, }, - ["UniqueElementalAilmentDuration1"] = { affix = "", "(30-40)% reduced Duration of Ignite, Shock and Chill on Enemies", statOrder = { 6818 }, level = 1, group = "ElementalAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 1062710370, }, - ["UniqueManaFlaskRevivesMinions1"] = { affix = "", "Using a Mana Flask revives one of your Persistent Minions", statOrder = { 9806 }, level = 1, group = "ManaFlaskRevivesMinions", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHash = 932661147, }, - ["UniqueEnemyAccuracyDistanceFalloff1"] = { affix = "", "Enemies have an Accuracy Penalty against you based on Distance", statOrder = { 5984 }, level = 1, group = "EnemyAccuracyDistanceFalloff", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3868746097, }, - ["UniqueMaximumEvadeChanceOverride1"] = { affix = "", "Maximum Chance to Evade is 50%", statOrder = { 8300 }, level = 1, group = "MaximumEvadeChanceOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1500744699, }, - ["UniqueDoubleArmourEffect1"] = { affix = "", "Defend with 200% of Armour", statOrder = { 5811 }, level = 1, group = "DoubleArmourEffect", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 3387008487, }, - ["UniqueMaximumPhysicalReductionOverride1"] = { affix = "", "Maximum Physical Damage Reduction is 50%", statOrder = { 8349 }, level = 1, group = "MaximumPhysicalReductionOverride", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3960211755, }, - ["UniqueRaiseShieldApplyExposure1"] = { affix = "", "Inflict Elemental Exposure to Enemies 3 metres in front of you", "for 4 seconds, every 0.25 seconds while raised", statOrder = { 9807, 9807.1 }, level = 1, group = "RaiseShieldApplyExposure", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 223138829, }, - ["UniqueLifeManaFlaskAnySlot1"] = { affix = "", "Life and Mana Flasks can be equipped in either slot", statOrder = { 6968 }, level = 1, group = "LifeManaFlaskAnySlot", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 932866937, }, - ["UniqueElementalDamageTakenAsPhysical1"] = { affix = "", "(20-30)% of Elemental damage from Hits taken as Physical damage", statOrder = { 5885 }, level = 1, group = "ElementalDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental" }, tradeHash = 2340750293, }, - ["UniqueElementalDamageFromBlockedHits1"] = { affix = "", "You take 100% of Elemental damage from Blocked Hits", statOrder = { 4794 }, level = 1, group = "ElementalDamageFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block", "elemental" }, tradeHash = 2393355605, }, - ["UniqueDisableChestSlot1"] = { affix = "", "Can't use Body Armour", statOrder = { 2254 }, level = 1, group = "DisableChestSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4007482102, }, - ["UniqueUseTwoHandedWeaponOneHand1"] = { affix = "", "You can wield Two-Handed Axes, Maces and Swords in one hand", statOrder = { 4887 }, level = 1, group = "UseTwoHandedWeaponOneHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3635316831, }, - ["UniqueKilledMonsterItemRarityOnCrit1"] = { affix = "", "(20-30)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", statOrder = { 2306 }, level = 1, group = "KilledMonsterItemRarityOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 21824003, }, - ["UniqueConsecratedGroundStationaryRing1"] = { affix = "", "You have Consecrated Ground around you while stationary", statOrder = { 6454 }, level = 1, group = "ConsecratedGroundStationaryRing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1736538865, }, - ["UniqueAlliesInPresenceGainedAsChaos1"] = { affix = "", "Allies in your Presence Gain (15-25)% of Damage as Extra Chaos Damage", statOrder = { 4170 }, level = 1, group = "AlliesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 4258251165, }, - ["UniqueEnemiesInPresenceGainedAsChaos1"] = { affix = "", "Enemies in your Presence Gain (6-12)% of Damage as Extra Chaos Damage", statOrder = { 5951 }, level = 1, group = "EnemiesInPresenceGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 1224838456, }, - ["UniqueEnemiesInPresenceReservesLife1"] = { affix = "", "Enemies in your Presence have at least 10% of Life Reserved", statOrder = { 5947 }, level = 1, group = "EnemiesInPresenceReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3840716439, }, - ["UniqueEnemiesInPresenceLowLife1"] = { affix = "", "Enemies in your Presence count as being on Low Life", statOrder = { 5942 }, level = 1, group = "EnemiesInPresenceLowLife", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1285684287, }, - ["UniqueEnemiesInPresenceMonsterPower1"] = { affix = "", "Enemies in your Presence count as having double Power", statOrder = { 9804 }, level = 1, group = "EnemiesInPresenceMonsterPower", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 2836928993, }, - ["UniqueEnemiesInPresenceNoElementalResist1"] = { affix = "", "Enemies in your Presence have no Elemental Resistances", statOrder = { 5948 }, level = 1, group = "EnemiesInPresenceNoElementalResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "aura" }, tradeHash = 83011992, }, - ["UniqueHeraldDamage1"] = { affix = "", "Herald Skills deal (50-100)% increased Damage", statOrder = { 5632 }, level = 1, group = "HeraldDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 21071013, }, - ["UniqueGainManaAsExtraArmour1"] = { affix = "", "Gain (30-50)% of Maximum Mana as Armour", statOrder = { 7481 }, level = 1, group = "GainManaAsExtraArmour", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "defences" }, tradeHash = 514290151, }, - ["UniqueManaRegenAppliesToRecharge1"] = { affix = "", "Increases and Reductions to Mana Regeneration Rate also", "apply to Energy Shield Recharge Rate", statOrder = { 4116, 4116.1 }, level = 1, group = "ManaRegenAppliesToRecharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "defences" }, tradeHash = 3407300125, }, - ["UniqueDefendWithArmourPerEnergyShield1"] = { affix = "", "Defend against Hits as though you had 1% more Armour per 1% current Energy Shield", statOrder = { 4299 }, level = 1, group = "DefendWithArmourPerEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 679087890, }, - ["UniquePhysicalDamageOnSkillUse1"] = { affix = "", "Take (25-100)% of Mana Costs you pay for Skills as Physical Damage", statOrder = { 9320 }, level = 1, group = "PhysicalDamageOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3181887481, }, - ["UniqueSlowEffect1"] = { affix = "", "Debuffs you inflict have (20-30)% increased Slow Magnitude", statOrder = { 4552 }, level = 1, group = "SlowEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3650992555, }, - ["UniqueCannotImmobilise1"] = { affix = "", "Cannot Immobilise enemies", statOrder = { 4937 }, level = 1, group = "CannotImmobilise", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4062529591, }, - ["UniqueIgnoreStrengthRequirementsWeapons1"] = { affix = "", "Ignore Strength Requirement of Melee Weapons and Melee Skills", statOrder = { 6822 }, level = 1, group = "IgnoreStrengthRequirementsWeapons", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2583483800, }, - ["UniquePhysicalDamageTakenUnmetRequirements1"] = { affix = "", "Take Physical Damage per total unmet Strength Requirement when you Attack", statOrder = { 9625 }, level = 1, group = "PhysicalDamageTakenUnmetRequirements", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3887716633, }, - ["UniqueNoManaRegenIfNotCritRecently1"] = { affix = "", "Cannot Regenerate Mana if you haven't dealt a Critical Hit Recently", statOrder = { 8648 }, level = 1, group = "NoManaRegenIfNotCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1458880585, }, - ["UniqueManaRegenerationRateIfCritRecently1"] = { affix = "", "150% increased Mana Regeneration Rate if you've dealt a Critical Hit Recently", statOrder = { 7527 }, level = 1, group = "ManaRegenerationRateIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "critical" }, tradeHash = 1659564104, }, - ["UniqueThornsDamageOnStun1"] = { affix = "", "Deal your Thorns Damage to Enemies you Stun with Melee Attacks", statOrder = { 5698 }, level = 60, group = "ThornsDamageOnStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2107791433, }, - ["UniqueLifeRecoupAppliesToEnergyShield1"] = { affix = "", "Damage taken Recouped as Life is also Recouped as Energy Shield", statOrder = { 7006 }, level = 1, group = "LifeRecoupAppliesToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences" }, tradeHash = 2432200638, }, - ["UniqueTailwindOnCriticalStrike1"] = { affix = "", "Gain Tailwind on Critical Hit, no more than once per second", statOrder = { 6423 }, level = 1, group = "TailwindOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2459662130, }, - ["UniqueLoseTailwindOnHit1"] = { affix = "", "Lose all Tailwind when Hit", statOrder = { 7449 }, level = 1, group = "LoseTailwindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 367897259, }, - ["UniqueDamageGainedAsFirePerBlock1"] = { affix = "", "Gain 1% of damage as Fire damage per 1% Chance to Block", statOrder = { 8669 }, level = 1, group = "DamageGainedAsFirePerBlock", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2771095426, }, - ["UniqueMaximumElementalResistances1"] = { affix = "", "+1% to Maximum Fire Resistance", "+2% to Maximum Cold Resistance", "+3% to Maximum Lightning Resistance", statOrder = { 953, 954, 955 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, }, - ["UniqueMaximumElementalResistances2"] = { affix = "", "+1% to Maximum Fire Resistance", "+3% to Maximum Cold Resistance", "+2% to Maximum Lightning Resistance", statOrder = { 953, 954, 955 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, }, - ["UniqueMaximumElementalResistances3"] = { affix = "", "+2% to Maximum Fire Resistance", "+1% to Maximum Cold Resistance", "+3% to Maximum Lightning Resistance", statOrder = { 953, 954, 955 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, }, - ["UniqueMaximumElementalResistances4"] = { affix = "", "+2% to Maximum Fire Resistance", "+3% to Maximum Cold Resistance", "+1% to Maximum Lightning Resistance", statOrder = { 953, 954, 955 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, }, - ["UniqueMaximumElementalResistances5"] = { affix = "", "+3% to Maximum Fire Resistance", "+1% to Maximum Cold Resistance", "+2% to Maximum Lightning Resistance", statOrder = { 953, 954, 955 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, }, - ["UniqueMaximumElementalResistances6"] = { affix = "", "+3% to Maximum Fire Resistance", "+2% to Maximum Cold Resistance", "+1% to Maximum Lightning Resistance", statOrder = { 953, 954, 955 }, level = 1, group = "UniqueMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 3899982174, }, - ["UniqueElementalResistancesPerPowerCharge1"] = { affix = "", "-10% to all Elemental Resistances per Power Charge", statOrder = { 1407 }, level = 82, group = "ElementalResistancesPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 2593644209, }, - ["UniqueAdditionalElementalGemLevels1"] = { affix = "", "+2 to Level of all Cold Skills", "+1 to Level of all Fire Skills", "+3 to Level of all Lightning Skills", statOrder = { 5326, 6165, 7097 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, }, - ["UniqueAdditionalElementalGemLevels2"] = { affix = "", "+3 to Level of all Cold Skills", "+1 to Level of all Fire Skills", "+2 to Level of all Lightning Skills", statOrder = { 5326, 6165, 7097 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, }, - ["UniqueAdditionalElementalGemLevels3"] = { affix = "", "+1 to Level of all Cold Skills", "+2 to Level of all Fire Skills", "+3 to Level of all Lightning Skills", statOrder = { 5326, 6165, 7097 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, }, - ["UniqueAdditionalElementalGemLevels4"] = { affix = "", "+3 to Level of all Cold Skills", "+2 to Level of all Fire Skills", "+1 to Level of all Lightning Skills", statOrder = { 5326, 6165, 7097 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, }, - ["UniqueAdditionalElementalGemLevels5"] = { affix = "", "+1 to Level of all Cold Skills", "+3 to Level of all Fire Skills", "+2 to Level of all Lightning Skills", statOrder = { 5326, 6165, 7097 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, }, - ["UniqueAdditionalElementalGemLevels6"] = { affix = "", "+2 to Level of all Cold Skills", "+3 to Level of all Fire Skills", "+1 to Level of all Lightning Skills", statOrder = { 5326, 6165, 7097 }, level = 1, group = "UniqueAdditionalElementalGemLevels", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, tradeHash = 2956365533, }, - ["UniqueCriticalWeaknessOnSpellCrit1"] = { affix = "", "Critical Hits with Spells apply (1-3) Stack of Critical Weakness", statOrder = { 4203 }, level = 1, group = "CriticalWeaknessOnSpellCrit", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 1550131834, }, - ["UniqueLifeLossReservesLife1"] = { affix = "", "Life that would be lost by taking Damage is instead Reserved", "until you take no Damage to Life for 3 seconds", statOrder = { 9182, 9182.1 }, level = 1, group = "LifeLossReservesLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1777740627, }, - ["UniqueArrowsFork1"] = { affix = "", "Arrows Fork", statOrder = { 3159 }, level = 1, group = "ArrowsFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2421436896, }, - ["UniqueArrowsAlwaysPierceAfterForking1"] = { affix = "", "Arrows Pierce all targets after Forking", statOrder = { 4313 }, level = 1, group = "ArrowsAlwaysPierceAfterForking", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2138799639, }, - ["UniqueChaosDamageCanShock1"] = { affix = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2521 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHash = 2418601510, }, - ["UniqueAlwaysHits1"] = { affix = "", "Always Hits", statOrder = { 1704 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 4126210832, }, - ["UniqueMeleeSplash1"] = { affix = "", "Strikes deal Splash Damage", statOrder = { 1067 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3675300253, }, - ["UniqueLocalKnockback1"] = { affix = "", "Knocks Back Enemies on Hit", statOrder = { 1350 }, level = 1, group = "LocalKnockback", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3739186583, }, - ["UniqueSpellWitherOnHitChance1"] = { affix = "", "Spells have a 25% chance to inflict Withered for 4 seconds on Hit", statOrder = { 9438 }, level = 1, group = "SpellWitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 2348696937, }, - ["UniqueWitherNeverExpires1"] = { affix = "", "Withered you inflict has infinite Duration", statOrder = { 3990 }, level = 1, group = "WitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1354656031, }, - ["UniqueShrineBuffAlternating1"] = { affix = "", "Every 10 seconds, gain a random non-damaging Shrine buff for 20 seconds", statOrder = { 7241 }, level = 1, group = "ShrineBuffAlternating", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2879778895, }, - ["UniqueFireShrine1"] = { affix = "", "Grants effect of Guided Meteoric Shrine", statOrder = { 6524 }, level = 82, group = "UniqueFireShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3917429943, }, - ["UniqueLightningShrine1"] = { affix = "", "Grants effect of Guided Tempest Shrine", statOrder = { 6525 }, level = 82, group = "UniqueLightningShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2800412928, }, - ["UniqueColdShrine1"] = { affix = "", "Grants effect of Guided Freezing Shrine", statOrder = { 6523 }, level = 82, group = "UniqueColdShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 234657505, }, - ["UniqueChaosShrine1"] = { affix = "", "Grants effect of Dreaming Gloom Shrine", statOrder = { 6522 }, level = 82, group = "UniqueChaosShrine", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3742268652, }, - ["UniqueMaximumValour1"] = { affix = "", "-20 to maximum Valour", statOrder = { 4500 }, level = 1, group = "MaximumValour", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1896726125, }, - ["UniqueValourAlwaysMaximum1"] = { affix = "", "Banners always have maximum Valour", statOrder = { 4505 }, level = 1, group = "ValourAlwaysMaximum", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1761741119, }, - ["UniqueLocalChanceToBleed1"] = { affix = "", "(10-20)% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, - ["UniqueLocalChanceToBleed2"] = { affix = "", "(15-25)% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, - ["UniqueCannotUseWarcries1"] = { affix = "", "Cannot use Warcries", statOrder = { 4954 }, level = 1, group = "CannotUseWarcries", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2598171606, }, - ["UniqueAttacksCountAsExerted1"] = { affix = "", "All Attacks count as Empowered Attacks", statOrder = { 4149 }, level = 1, group = "AttacksCountAsExerted", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1952324525, }, - ["UniquePinAlmostPinnedEnemies1"] = { affix = "", "Pin Enemies which are Primed for Pinning", statOrder = { 8903 }, level = 1, group = "PinAlmostPinnedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3063814459, }, - ["UniqueSpellAdditionalProjectilesInCircle1"] = { affix = "", "Spells fire 4 additional Projectiles", "Spells fire Projectiles in a circle", statOrder = { 9424, 9424.1 }, level = 1, group = "SpellAdditionalProjectilesInCircle", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 1013492127, }, - ["UniqueCannotBeLightStunned1"] = { affix = "", "Cannot be Light Stunned", statOrder = { 4907 }, level = 1, group = "CannotBeLightStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1000739259, }, - ["UniqueCannotBeLightStunnedByDeflectedHits1"] = { affix = "", "Cannot be Light Stunned by Deflected Hits", statOrder = { 4908 }, level = 1, group = "CannotBeLightStunnedByDeflectedHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2252419505, }, - ["UniqueNonChannellingAttackManaCost1"] = { affix = "", "Non-Channelling Attacks cost an additional 6% of your maximum Mana", statOrder = { 4587 }, level = 1, group = "NonChannellingAttackManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 3199954470, }, - ["UniqueAttackManaCost1"] = { affix = "", "Attacks cost an additional 6% of your maximum Mana", statOrder = { 4447 }, level = 1, group = "AttackManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 2157692677, }, - ["UniqueNonChannellingAttackLightningDamage1"] = { affix = "", "Non-Channelling Attacks have Added Lightning Damage equal to 3% of maximum Mana", statOrder = { 8651 }, level = 1, group = "NonChannellingAttackLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHash = 4252580517, }, - ["UniqueAttackMinLightningDamage1"] = { affix = "", "Attacks have Added minimum Lightning Damage equal to 1% of maximum Mana", statOrder = { 9986 }, level = 1, group = "AttackMinLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHash = 1835420624, }, - ["UniqueAttackMaxLightningDamage1"] = { affix = "", "Attacks have Added maximum Lightning Damage equal to (6-9)% of maximum Mana", statOrder = { 10016 }, level = 1, group = "AttackMaxLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, tradeHash = 3258071686, }, - ["UniqueEvasionRatingPercentOnLowLife1"] = { affix = "", "150% increased Global Evasion Rating when on Low Life", statOrder = { 2204 }, level = 1, group = "EvasionRatingPercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2695354435, }, - ["UniqueDamageRemovedFromCompanion1"] = { affix = "", "15% of Damage from Hits is taken from your Damageable Companion's Life before you", statOrder = { 5344 }, level = 1, group = "DamageRemovedFromCompanion", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1150343007, }, - ["UniqueNonChannellingSpellLifeCost1"] = { affix = "", "Non-Channelling Spells cost an additional 6% of your maximum Life", statOrder = { 4573 }, level = 1, group = "NonChannellingSpellLifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 1920747151, }, - ["UniqueNonChannellingSpellDamage1"] = { affix = "", "Non-Channelling Spells deal 6% increased Damage per 100 maximum Life", statOrder = { 9412 }, level = 1, group = "NonChannellingSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 1027889455, }, - ["UniqueNonChannellingSpellCriticalChance1"] = { affix = "", "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Life", statOrder = { 9394 }, level = 1, group = "NonChannellingSpellCriticalChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, tradeHash = 170426423, }, - ["UniqueLifeRegenerationRate1"] = { affix = "", "50% increased Life Regeneration rate", statOrder = { 969 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 44972811, }, - ["UniqueLifeRegenerationRate2"] = { affix = "", "(-30-30)% reduced Life Regeneration rate", statOrder = { 969 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 44972811, }, - ["UniqueSpiritPerMaximumLife1"] = { affix = "", "+1 to Maximum Spirit per 50 Maximum Life", statOrder = { 9802 }, level = 1, group = "SpiritPerMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1345486764, }, - ["UniqueBuffSkillSpiritEfficiencyPerMaximumLife1"] = { affix = "", "1% increased Spirit Reservation Efficiency of Buff Skills per 100 Maximum Life", statOrder = { 4871 }, level = 1, group = "BuffSkillSpiritEfficiencyPerMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3581035970, }, - ["UniqueMinionsHaveUnholyMight1"] = { affix = "", "Minions have Unholy Might", statOrder = { 8550 }, level = 1, group = "MinionsHaveUnholyMight", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3893509584, }, - ["UniqueCanEvadeAllDamageNotHitRecently1"] = { affix = "", "Evasion Rating is doubled if you have not been Hit Recently", statOrder = { 5816 }, level = 1, group = "CanEvadeAllDamageNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1272938854, }, - ["UniqueLeechEnergyShieldInsteadofLife1"] = { affix = "", "Life Leech is Converted to Energy Shield Leech", statOrder = { 5377 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 3314050176, }, - ["UniqueIgnoreHexproof1"] = { affix = "", "Curses you inflict can affect Hexproof Enemies", statOrder = { 2269 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1367119630, }, - ["UniqueEnergyShieldRechargeOverride1"] = { affix = "", "Your base Energy Shield Recharge Delay is 10 seconds", statOrder = { 6013 }, level = 1, group = "EnergyShieldRechargeOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3091132047, }, - ["UniqueShockEffect1UNUSED"] = { affix = "", "(50-100)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2527686725, }, - ["UniqueAttackSpeedPerOvercappedBlock1"] = { affix = "", "1% increased Attack Speed per Overcapped Block chance", statOrder = { 4438 }, level = 1, group = "AttackSpeedPerOvercappedBlock", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2958220558, }, - ["UniqueNonChannellingSpellsDoubleManaAndCrit1"] = { affix = "", "Non-Channelling Spells have 25% chance to cost Double Mana and Critically Hit", statOrder = { 8654 }, level = 1, group = "NonChannellingSpellsDoubleManaAndCrit", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "caster", "critical" }, tradeHash = 2758035461, }, - ["UniqueBlockChanceProjectiles1"] = { affix = "", "100% increased Block chance against Projectiles", statOrder = { 4789 }, level = 1, group = "BlockChanceProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3583542124, }, - ["UniqueEnfeebleOnBlockChance1"] = { affix = "", "Curse Enemies with Enfeeble on Block", statOrder = { 5538 }, level = 1, group = "EnfeebleOnBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHash = 3830953767, }, - ["UniqueParriedCausesSpellDamageTaken1"] = { affix = "", "Parried enemies take more Spell Damage instead of more Attack Damage", statOrder = { 8795 }, level = 1, group = "ParriedCausesSpellDamageTaken", weightKey = { }, weightVal = { }, modTags = { "block", "caster" }, tradeHash = 2935004295, }, - ["UniqueParryConvertToCold1"] = { affix = "", "100% of Parry Physical Damage Converted to Cold Damage", statOrder = { 8806 }, level = 1, group = "UniqueParryConvertToCold1", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold" }, tradeHash = 2089152298, }, - ["UniqueParryStunModifiersApplyToFreeze1"] = { affix = "", "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry", statOrder = { 8804 }, level = 1, group = "UniqueParryStunModifiersApplyToFreeze1", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHash = 3201111383, }, - ["UniqueIncreasedAccuracyPercent1"] = { affix = "", "20% increased Accuracy Rating", statOrder = { 1268 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 624954515, }, - ["UniqueParriedDebuffMagnitude1"] = { affix = "", "50% increased Parried Debuff Magnitude", statOrder = { 8794 }, level = 1, group = "ParriedDebuffMagnitude", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 818877178, }, - ["UniqueCriticalWeaknessOnParry1"] = { affix = "", "Parrying applies 10 Stacks of Critical Weakness", statOrder = { 4205 }, level = 1, group = "CriticalWeaknessOnParry", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHash = 2104138899, }, - ["UniqueParryDamage1"] = { affix = "", "100% increased Parry Damage", statOrder = { 8799 }, level = 1, group = "ParryDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1569159338, }, - ["UniqueHitsTreatFireResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Fire Resistance instead of target's value", statOrder = { 6777 }, level = 1, group = "HitsTreatFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHash = 3924583393, }, - ["UniqueHitsTreatColdResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Cold Resistance instead of target's value", statOrder = { 6776 }, level = 1, group = "HitsTreatColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHash = 3455898738, }, - ["UniqueHitsTreatLightningResistance1"] = { affix = "", "Hits are Resisted by (15-30)% Lightning Resistance instead of target's value", statOrder = { 6778 }, level = 1, group = "HitsTreatLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHash = 3144953722, }, - ["UniqueWitherOnHitChance1"] = { affix = "", "(20-30)% chance to inflict Withered for 4 seconds on Hit", statOrder = { 9917 }, level = 1, group = "WitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 695624915, }, - ["UniqueWitherGrantsElementalDamageTaken1"] = { affix = "", "Enemies take 5% increased Elemental Damage from your Hits for", "each Withered you have inflicted on them", statOrder = { 3954, 3954.1 }, level = 1, group = "WitherGrantsElementalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3507915723, }, - ["UniqueStrengthInherentBonusChange1"] = { affix = "", "Inherent bonus of Strength grants +5 to Accuracy Rating per Strength instead", statOrder = { 1683 }, level = 1, group = "StrengthInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1602694371, }, - ["UniqueDexterityInherentBonusChange1"] = { affix = "", "Inherent bonus of Dexterity grants +2 to Mana per Dexterity instead", statOrder = { 1684 }, level = 1, group = "DexterityInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 597008938, }, - ["UniqueIntelligenceInherentBonusChange1"] = { affix = "", "Inherent bonus of Intelligence grants +2 to Life per Intelligence instead", statOrder = { 1685 }, level = 1, group = "IntelligenceInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1405948943, }, - ["UniqueApplyCorruptedBloodOnBlock1"] = { affix = "", "Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of", "your maximum Life as Physical damage per second", statOrder = { 9777, 9777.1 }, level = 1, group = "ApplyCorruptedBloodOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical" }, tradeHash = 1955564066, }, - ["UniqueBowDamageFromLifeFlaskCharges1"] = { affix = "", "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to (5-10)% of Flask's Life Recovery amount", statOrder = { 5372 }, level = 1, group = "BowDamageFromLifeFlaskCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3893788785, }, - ["UniqueImpaleOnCriticalHit1"] = { affix = "", "Critical Hits inflict Impale", statOrder = { 5427 }, level = 1, group = "ImpaleOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3058238353, }, - ["UniqueCriticalsCannotConsumeImpale1"] = { affix = "", "Critical Hits cannot Extract Impale", statOrder = { 5428 }, level = 1, group = "CriticalsCannotConsumeImpale", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3414998042, }, - ["UniqueCannotRecoverAboveLowLifeExceptFlasks1"] = { affix = "", "Life Recovery other than Flasks cannot Recover Life to above Low Life", statOrder = { 4944 }, level = 1, group = "CannotRecoverAboveLowLifeExceptFlasks", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 451403019, }, - ["UniqueLifeRecoveryRate1"] = { affix = "", "100% increased Life Recovery rate", statOrder = { 1376 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3240073117, }, - ["UniqueLifeRecoveryRate2"] = { affix = "", "30% reduced Life Recovery rate", statOrder = { 1376 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3240073117, }, - ["UniqueLifeLeechChaosDamage1"] = { affix = "", "Life Leech recovers based on your Chaos damage instead of Physical damage", statOrder = { 6996 }, level = 1, group = "LifeLeechChaosDamage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 825825364, }, - ["UniqueChaosInfusionFromCharge1"] = { affix = "", "When you Consume a Charge Trigger Chaotic Surge to gain 2 Chaos Surges", statOrder = { 6292 }, level = 1, group = "ChaosInfusionFromCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 447757144, }, - ["UniqueConsumeEnduranceChargeAlwaysCrit1"] = { affix = "", "Attacks consume an Endurance Charge to Critically Hit", statOrder = { 4371 }, level = 1, group = "ConsumeEnduranceChargeAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3550545679, }, - ["UniqueChaosDamagePerEnduranceCharge1"] = { affix = "", "Take 100 Chaos damage per second per Endurance Charge", statOrder = { 9210 }, level = 1, group = "ChaosDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 3164544692, }, - ["UniqueConsumeFrenzyChargeAdditionalProjectile1"] = { affix = "", "Spear Projectile Attacks Consume a Frenzy Charge to fire 2 additional Projectiles", statOrder = { 9366 }, level = 1, group = "ConsumeFrenzyChargeAdditionalProjectile", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1980858462, }, - ["UniqueRollCriticalChanceTwice1"] = { affix = "", "Bifurcates Critical Hits", statOrder = { 1292 }, level = 1, group = "RollCriticalChanceTwice", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1451444093, }, - ["UniqueLocalAllDamageCanPin1"] = { affix = "", "All Damage from Hits with this Weapon Contributes to Pin Buildup", statOrder = { 7142 }, level = 1, group = "LocalAllDamageCanPin", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4142786792, }, - ["UniqueFullyArmourBrokenShatterOnKill1"] = { affix = "", "Fully Armour Broken enemies you kill with Hits Shatter", statOrder = { 9229 }, level = 1, group = "FullyArmourBrokenShatterOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3278008231, }, - ["UniqueCanActiveBlockAllDirections1"] = { affix = "", "Can Block from all Directions while Shield is Raised", statOrder = { 4880 }, level = 1, group = "CanActiveBlockAllDirections", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4237042051, }, - ["UniqueAggravateIgnites1"] = { affix = "", "Aggravating any Bleeding with this Weapon also Aggravates all Ignites on the target", statOrder = { 4129 }, level = 1, group = "AggravateIgnites", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 2312741059, }, - ["UniqueLocalChanceToAggravateBleed1"] = { affix = "", "(25-40)% chance to Aggravate Bleeding on Hit", statOrder = { 7135 }, level = 1, group = "LocalChanceToAggravateBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1009412152, }, - ["UniqueCannotBeThrown1"] = { affix = "", "Cannot use Projectile Attacks", statOrder = { 7172 }, level = 1, group = "CannotBeThrown", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1961849903, }, - ["UniqueEnergyShieldGainedOnBlockBasedOnArmour1"] = { affix = "", "Recover Energy Shield equal to 2% of Armour when you Block", statOrder = { 2138 }, level = 1, group = "EnergyShieldGainedOnBlockBasedOnArmour", weightKey = { }, weightVal = { }, modTags = { "block", "energy_shield", "defences" }, tradeHash = 3681057026, }, - ["UniqueUnholyMightOnZeroEnergyShield1"] = { affix = "", "You have Unholy Might while you have no Energy Shield", statOrder = { 2393 }, level = 1, group = "UnholyMightOnZeroEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2353201291, }, - ["UniqueLocalArmourBreakOnDamage1"] = { affix = "", "Breaks Armour equal to 40% of damage from Hits with this weapon", statOrder = { 7151 }, level = 1, group = "LocalArmourBreakOnDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 949573361, }, - ["UniqueParriedDebuffDuration1"] = { affix = "", "50% increased Parried Debuff Duration", statOrder = { 8808 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3401186585, }, - ["UniqueParriedDebuffDuration2"] = { affix = "", "100% increased Parried Debuff Duration", statOrder = { 8808 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3401186585, }, - ["UniqueProjectileParryInfiniteDistance1"] = { affix = "", "Infinite Parry Range", statOrder = { 6885 }, level = 1, group = "ProjectileParryInfiniteDistance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4063608408, }, - ["UniqueLocalIncreasedProjectileSpeed1"] = { affix = "", "(20-30)% increased Projectile Speed with this Weapon", statOrder = { 7335 }, level = 1, group = "LocalIncreasedProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 535217483, }, - ["UniqueLifeFlasksApplyToMinions1"] = { affix = "", "Your Life Flask also applies to your Minions", statOrder = { 1845 }, level = 30, group = "LifeFlasksApplyToMinions", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2397460217, }, - ["MinionsCannotDieWhileAffectedByYourLifeFlasks1"] = { affix = "", "Minions cannot Die while affected by a Life Flask", statOrder = { 1846 }, level = 30, group = "MinionsCannotDieWhileFlasked", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 4046380260, }, - ["UniqueAddedPhysicalToMinionAttacks1"] = { affix = "", "Minions deal (5-8) to (10-12) additional Attack Physical Damage", statOrder = { 3336 }, level = 1, group = "AddedPhysicalToMinionAttacks", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHash = 797833282, }, - ["UniqueMaximumQualityOverride1"] = { affix = "", "Maximum Quality is 200%", statOrder = { 7328 }, level = 1, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 275498888, }, - ["UniqueMaximumQualityOverride2"] = { affix = "", "Maximum Quality is 40%", statOrder = { 7328 }, level = 1, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 275498888, }, - ["UniqueColdAddedAsFireChilledEnemy1"] = { affix = "", "Gain 1% of Cold damage as Extra Fire damage per 1% Chill Magnitude on enemy", statOrder = { 8710 }, level = 1, group = "ColdAddedAsFireChilledEnemy", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2469544361, }, - ["UniqueMultipleCompanions1"] = { affix = "", "You can have two Companions of different types", statOrder = { 4882 }, level = 1, group = "MultipleCompanions", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1888024332, }, - ["UniqueEnergyShieldAppliesElementalReduction1"] = { affix = "", "Current Energy Shield also grants Elemental Damage reduction", statOrder = { 5525 }, level = 1, group = "EnergyShieldAppliesElementalReduction", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2342939473, }, - ["UniqueBlindOnPoison1"] = { affix = "", "Blind Targets when you Poison them", statOrder = { 4785 }, level = 1, group = "BlindOnPoison", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 60826109, }, - ["UniquePoisonDuration1"] = { affix = "", "(10-20)% increased Poison Duration", statOrder = { 2786 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2011656677, }, - ["UniqueIgniteEffectAgainstFrozen1"] = { affix = "", "(80-100)% increased Magnitude of Ignite against Frozen enemies", statOrder = { 6815 }, level = 1, group = "IgniteEffectAgainstFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 3618434982, }, - ["UniqueFreezeDamageIncreaseAgainstIgnited1"] = { affix = "", "(60-80)% increased Freeze Buildup against Ignited enemies", statOrder = { 6746 }, level = 1, group = "FreezeDamageIncreaseAgainstIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3751467747, }, - ["UniqueColdFireSurgeOnReload"] = { affix = "", "When you reload, triggers Gemini Surge to alternately", "gain (2-6) Cold Surges or (2-6) Fire Surges", statOrder = { 6293, 6293.1 }, level = 1, group = "ColdFireSurgeOnReload", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHash = 880541852, }, - ["UniqueLocalAlwaysMinimumOrMaximum1"] = { affix = "", "Rolls only the minimum or maximum Damage value for each Damage Type", statOrder = { 7190 }, level = 1, group = "LocalAlwaysMinimumOrMaximum", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3108672983, }, - ["UniqueElementalPenetrationBelowZero1"] = { affix = "", "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", statOrder = { 5889 }, level = 1, group = "ElementalPenetrationBelowZero", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 2890792988, }, - ["UniqueElementalPenetration1"] = { affix = "", "Damage Penetrates 10% Elemental Resistances", statOrder = { 2612 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2101383955, }, - ["UniqueEnemyKnockbackDirectionReversed1"] = { affix = "", "Knockback direction is reversed", statOrder = { 2642 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 281201999, }, - ["UniqueSpellDamagePerManaSpent1"] = { affix = "", "(10-15)% increased Spell damage for each 200 total Mana you have Spent Recently", statOrder = { 3903 }, level = 1, group = "SpellDamagePerManaSpent", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 347220474, }, - ["UniqueManaCostPerManaSpent1"] = { affix = "", "(5-10)% increased Cost of Skills for each 200 total Mana Spent Recently", statOrder = { 3902 }, level = 1, group = "ManaCostPerManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2650053239, }, - ["UniqueCannotRecoverManaExceptRegen1"] = { affix = "", "Mana Recovery other than Regeneration cannot Recover Mana", statOrder = { 4946 }, level = 1, group = "CannotRecoverManaExceptRegen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3593063598, }, - ["UniqueLifeDegenerationPercentGracePeriod1"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1616 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1661347488, }, - ["UniqueLifeDegenerationPercentGracePeriod2"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1616 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1661347488, }, - ["UniqueLifeDegenerationPercentGracePeriod3"] = { affix = "", "Lose 5% of maximum Life per second", statOrder = { 1616 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1661347488, }, - ["UniqueLocalInfinitePoisonStackCount1"] = { affix = "", "Any number of Poisons from this Weapon can affect a target at the same time", statOrder = { 7265 }, level = 1, group = "LocalInfinitePoisonStackCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4021234281, }, - ["UniqueRageRegeneration1"] = { affix = "", "Regenerate 5 Rage per second", statOrder = { 4602 }, level = 1, group = "RageRegeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2853314994, }, - ["UniqueNonherentRageLoss1"] = { affix = "", "No Inherent loss of Rage", statOrder = { 8647 }, level = 1, group = "NoInherentRageLoss", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4163076972, }, - ["UniqueChaosDamageMaximumLife1"] = { affix = "", "Attacks have added Chaos damage equal to 3% of maximum Life", statOrder = { 4333 }, level = 75, group = "ChaosDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 1141563002, }, - ["UniquePhysicalDamageMaximumLife1"] = { affix = "", "Attacks have added Physical damage equal to 3% of maximum Life", statOrder = { 4334 }, level = 75, group = "PhysicalDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 2723294374, }, - ["UniqueFlammabilityGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1908 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 3709513762, }, - ["UniqueHypothermiaGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1908 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 3709513762, }, - ["UniqueConductivityGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1908 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 3709513762, }, - ["UniqueElementalWeaknessGemLevel1"] = { affix = "", "+4 to Level of Elemental Weakness Skills", statOrder = { 1908 }, level = 1, group = "ElementalWeaknessGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 3709513762, }, - ["UniqueVulnerabilityGemLevel1"] = { affix = "", "+4 to Level of Vulnerability Skills", statOrder = { 1933 }, level = 1, group = "VulnerabilityGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 3507701584, }, - ["UniqueDespairGemLevel1"] = { affix = "", "+4 to Level of Despair Skills", statOrder = { 1907 }, level = 1, group = "DespairGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 2157870819, }, - ["UniqueEnfeebleGemLevel1"] = { affix = "", "+4 to Level of Enfeeble Skills", statOrder = { 1909 }, level = 1, group = "EnfeebleGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 3948285912, }, - ["UniqueTemporalChainsGemLevel1"] = { affix = "", "+4 to Level of Temporal Chains Skills", statOrder = { 1932 }, level = 1, group = "TemporalChainsGemLevel", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 1042153418, }, - ["UniqueCharmGrantsMaximumRage1"] = { affix = "", "Grants up to your maximum Rage on use", statOrder = { 5240 }, level = 1, group = "CharmGrantsMaximumRage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1509210032, }, - ["UniqueCharmGrantsPowerCharge1"] = { affix = "", "Grants a Power Charge on use", statOrder = { 5239 }, level = 1, group = "CharmGrantsPowerCharge", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2566921799, }, - ["UniqueCharmGrantsFrenzyCharge1"] = { affix = "", "Grants a Frenzy Charge on use", statOrder = { 5238 }, level = 1, group = "CharmGrantsFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 280890192, }, - ["UniqueCharmDoubleArmourEffect1"] = { affix = "", "Defend with 200% of Armour during effect", statOrder = { 5231 }, level = 1, group = "CharmDoubleArmourEffect", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 3138344128, }, - ["UniqueCharmOnslaughtDuringEffect1"] = { affix = "", "Grants Onslaught during effect", statOrder = { 5237 }, level = 1, group = "CharmOnslaughtDuringEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 618665892, }, - ["UniqueCharmStartEnergyShieldRecharge1"] = { affix = "", "Energy Shield Recharge starts on use", statOrder = { 5236 }, level = 1, group = "CharmStartEnergyShieldRecharge", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1056492907, }, - ["UniqueCharmCreateConsecratedGround1"] = { affix = "", "Creates Consecrated Ground on use", statOrder = { 5230 }, level = 1, group = "CharmCreateConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1112560582, }, - ["UniqueCharmRecoverLifeBasedOnManaFlask1"] = { affix = "", "Recover Life equal to (15-20)% of Mana Flask's Recovery Amount when used", statOrder = { 5252 }, level = 1, group = "CharmRecoverLifeBasedOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2716923832, }, - ["UniqueCharmRecoverManaBasedOnLifeFlask1"] = { affix = "", "Recover Mana equal to (15-20)% of Life Flask's Recovery Amount when used", statOrder = { 5253 }, level = 1, group = "CharmRecoverManaBasedOnLifeFlask", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3891350097, }, - ["UniqueCharmIgniteEnemiesInPresence1"] = { affix = "", "Creates Ignited Ground for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life", statOrder = { 5241 }, level = 1, group = "CharmIgniteEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 39209842, }, - ["UniqueCharmEnemyExtraLightningDamageRoll1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Unlucky during effect", statOrder = { 5235 }, level = 1, group = "CharmEnemyExtraLightningDamageRoll", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHash = 3246948616, }, - ["UniqueCharmRecoupChaosDamagePrevented1"] = { affix = "", "50% of Chaos damage you prevent when Hit Recouped as Life and Mana during effect", statOrder = { 5254 }, level = 1, group = "CharmRecoupChaosDamagePrevented", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "chaos" }, tradeHash = 2678930256, }, - ["UniqueCharmRandomPossess1"] = { affix = "", "Possessed by a random Spirit for 20 seconds on use", statOrder = { 5248 }, level = 1, group = "CharmRandomPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1280492469, }, - ["UniqueCharmOwlPossess1"] = { affix = "", "Possessed by Spirit Of The Owl for (10-20) seconds on use", statOrder = { 5245 }, level = 1, group = "CharmOwlPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 300107724, }, - ["UniqueCharmSerpentPossess1"] = { affix = "", "Possessed by Spirit Of The Serpent for (10-20) seconds on use", statOrder = { 5249 }, level = 1, group = "CharmSerpentPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3181677174, }, - ["UniqueCharmPrimatePossess1"] = { affix = "", "Possessed by Spirit Of The Primate for (10-20) seconds on use", statOrder = { 5247 }, level = 1, group = "CharmPrimatePossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3763491818, }, - ["UniqueCharmBearPossess1"] = { affix = "", "Possessed by Spirit Of The Bear for (10-20) seconds on use", statOrder = { 5242 }, level = 1, group = "CharmBearPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3403424702, }, - ["UniqueCharmBoarPossess1"] = { affix = "", "Possessed by Spirit Of The Boar for (10-20) seconds on use", statOrder = { 5243 }, level = 1, group = "CharmBoarPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 1685559578, }, - ["UniqueCharmOxPossess1"] = { affix = "", "Possessed by Spirit Of The Ox for (10-20) seconds on use", statOrder = { 5246 }, level = 1, group = "CharmOxPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3463873033, }, - ["UniqueCharmWolfPossess1"] = { affix = "", "Possessed by Spirit Of The Wolf for (10-20) seconds on use", statOrder = { 5251 }, level = 1, group = "CharmWolfPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3504441212, }, - ["UniqueCharmStagPossess1"] = { affix = "", "Possessed by Spirit Of The Stag for (10-20) seconds on use", statOrder = { 5250 }, level = 1, group = "CharmStagPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 3685424517, }, - ["UniqueCharmCatPossess1"] = { affix = "", "Possessed by Spirit Of The Cat for (10-20) seconds on use", statOrder = { 5244 }, level = 1, group = "CharmCatPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHash = 2839557359, }, - ["UniqueMaximumLifePerStackableJewel1"] = { affix = "", "2% increased Maximum Life per socketed Grand Spectrum", statOrder = { 3717 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 262406138, }, - ["UniqueAllResistancePerStackableJewel1"] = { affix = "", "+6% to all Elemental Resistances per socketed Grand Spectrum", statOrder = { 3716 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1345312164, }, - ["UniqueMaximumSpiritPerStackableJewel1"] = { affix = "", "2% increased Spirit per socketed Grand Spectrum", statOrder = { 9459 }, level = 1, group = "MaximumSpiritPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1194507491, }, - ["UniqueFireDamageConvertToCold1"] = { affix = "", "100% of Fire Damage Converted to Cold Damage", statOrder = { 8702 }, level = 1, group = "FireDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3503160529, }, - ["UniqueFireDamageConvertToLightning1"] = { affix = "", "100% of Fire damage Converted to Lightning damage", statOrder = { 8703 }, level = 1, group = "FireDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2772033465, }, - ["UniqueLightningDamageConvertToCold1"] = { affix = "", "100% of Lightning Damage Converted to Cold Damage", statOrder = { 1639 }, level = 1, group = "LightningDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3627052716, }, - ["UniqueColdDamageConvertToLightning1"] = { affix = "", "100% of Cold Damage Converted to Lightning Damage", statOrder = { 1642 }, level = 1, group = "ColdDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1686824704, }, - ["UniqueLightningDamageConvertToChaos1"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1640 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHash = 2109189637, }, - ["UniqueElementalDamageConvertToFire1"] = { affix = "", "33% of Elemental Damage Converted to Fire Damage", statOrder = { 8700 }, level = 1, group = "ElementalDamageConvertToFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 40154188, }, - ["UniqueElementalDamageConvertToCold1"] = { affix = "", "33% of Elemental Damage Converted to Cold Damage", statOrder = { 8699 }, level = 1, group = "ElementalDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 210092264, }, - ["UniqueElementalDamageConvertToLightning1"] = { affix = "", "33% of Elemental Damage Converted to Lightning Damage", statOrder = { 8701 }, level = 1, group = "ElementalDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 289540902, }, - ["UniqueElementalDamageConvertToChaos1"] = { affix = "", "100% of Elemental Damage Converted to Chaos Damage", statOrder = { 8698 }, level = 1, group = "ElementalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2295988214, }, - ["UniquePainAttunement1"] = { affix = "", "Pain Attunement", statOrder = { 10065 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 98977150, }, - ["UniqueIronReflexes1"] = { affix = "", "Iron Reflexes", statOrder = { 10059 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 326965591, }, - ["UniqueBloodMagic1"] = { affix = "", "Blood Magic", statOrder = { 10033 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 774026047, }, - ["UniqueEldritchBattery1"] = { affix = "", "Eldritch Battery", statOrder = { 10045 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2262736444, }, - ["UniqueGiantsBlood1"] = { affix = "", "Giant's Blood", statOrder = { 10052 }, level = 1, group = "GiantsBlood", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1875158664, }, - ["UniqueUnwaveringStance1"] = { affix = "", "Unwavering Stance", statOrder = { 10072 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 1683578560, }, - ["UniqueIronGrip1"] = { affix = "", "Iron Grip", statOrder = { 10058 }, level = 1, group = "IronGrip", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3528245713, }, - ["UniqueIronWill1"] = { affix = "", "Iron Will", statOrder = { 10060 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 281311123, }, - ["UniqueEverlastingSacrifice1"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10050 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "defences", "resistance" }, tradeHash = 145598447, }, - ["UniqueRandomKeystoneFromTable1"] = { affix = "", "(1-33)", statOrder = { 10020 }, level = 1, group = "UniqueVivisectionRandomKeystone", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3831171903, }, - ["UniqueVivisectionPriceLife1"] = { affix = "", "(10-20)% less maximum Life", statOrder = { 9847 }, level = 1, group = "UniqueVivisectionPriceLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1633735772, }, - ["UniqueVivisectionPriceMana1"] = { affix = "", "(10-20)% less maximum Mana", statOrder = { 9848 }, level = 1, group = "UniqueVivisectionPriceMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3045154261, }, - ["UniqueVivisectionPriceDefences1"] = { affix = "", "(10-20)% less Defences", statOrder = { 9846 }, level = 1, group = "UniqueVivisectionPriceDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 1868522266, }, - ["UniqueVivisectionPriceSpirit1"] = { affix = "", "(10-20)% less Spirit", statOrder = { 9850 }, level = 1, group = "UniqueVivisectionPriceSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 537850431, }, - ["UniqueVivisectionPriceMovementSpeed1"] = { affix = "", "(10-20)% less Movement Speed", statOrder = { 9849 }, level = 1, group = "UniqueVivisectionPriceMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2146799605, }, - ["UniqueVivisectionPriceDamage1"] = { affix = "", "(10-20)% less Damage", statOrder = { 9845 }, level = 1, group = "UniqueVivisectionPriceDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1274947822, }, - ["UniqueMultipleAnointments1"] = { affix = "", "Can have 3 additional Instilled Modifiers", statOrder = { 14 }, level = 66, group = "MultipleEnchantmentsAllowed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1135194732, }, - ["UniqueElementalDamageGainedAsFire1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Fire Damage", statOrder = { 8696 }, level = 1, group = "ElementalDamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 701564564, }, - ["UniqueElementalDamageGainedAsCold1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Cold Damage", statOrder = { 8695 }, level = 1, group = "ElementalDamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 1158842087, }, - ["UniqueElementalDamageGainedAsLightning1"] = { affix = "", "Gain (5-10)% of Elemental Damage as Extra Lightning Damage", statOrder = { 8697 }, level = 1, group = "ElementalDamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3550887155, }, - ["UniqueCannotEvade1"] = { affix = "", "Cannot Evade Enemy Attacks", statOrder = { 1587 }, level = 1, group = "CannotEvade", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 474452755, }, - ["UniqueLifeRegenerationWhileSurrounded1"] = { affix = "", "Regenerate 5% of maximum Life per second while Surrounded", statOrder = { 7043 }, level = 1, group = "LifeRegenerationWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2002533190, }, - ["UniqueLessEnemiesToBeSurrounded1"] = { affix = "", "Require (2-4) fewer enemies to be Surrounded", statOrder = { 9177 }, level = 1, group = "LessEnemiesToBeSurrounded1", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2267564181, }, - ["UniqueChillDuration1"] = { affix = "", "30% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, }, - ["UniqueChillDuration2"] = { affix = "", "25% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, }, - ["UniqueBleedEffect1"] = { affix = "", "(15-25)% increased Magnitude of Bleeding you inflict", statOrder = { 4662 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHash = 3166958180, }, - ["UniquePoisonEffect1"] = { affix = "", "(15-25)% increased Magnitude of Poison you inflict", statOrder = { 8925 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, tradeHash = 2487305362, }, - ["UniqueManaCostEfficiency1"] = { affix = "", "(20-40)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4101445926, }, - ["DemigodsVirtue1"] = { affix = "", "Virtuous", statOrder = { 10022 }, level = 1, group = "DemigodsVirtue", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1132041585, }, - ["DemigodItemFoundRarityIncrease1"] = { affix = "", "25% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["DemigodMovementVelocity1"] = { affix = "", "20% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["DemigodIncreasedSkillSpeed1"] = { affix = "", "10% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 970213192, }, - ["DemigodLifeRegenerationRatePercentage1"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, - ["DemigodAllResistances1"] = { affix = "", "+20% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["DemigodManaGainedOnKillPercentage1"] = { affix = "", "Recover 2% of maximum Mana on Kill", statOrder = { 1443 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1604736568, }, - ["BaseSpiritTestUniqueAmulet1"] = { affix = "", "+500 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3981240776, }, - ["AllAttributesImplicitWreath1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["AllAttributesTestUniqueAmulet1"] = { affix = "", "+500 to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["AllAttributesImplicitDemigodRing1"] = { affix = "", "+(8-12) to all Attributes", statOrder = { 946 }, level = 16, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["AllAttributesImplicitDemigodOneHandSword1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["IncreasedLifeImplicitGlovesDemigods1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["MovementVeolcityUniqueBootsDemigods1"] = { affix = "", "20% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["ItemFoundRarityIncreaseImplicitDemigodsBelt1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, tradeHash = 3917489142, }, - ["IncreasedCastSpeedUniqueGlovesDemigods1"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["LifeRegenerationUniqueWreath1"] = { affix = "", "2 Life Regeneration per second", statOrder = { 968 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, tradeHash = 3325883026, }, - ["ChaosResistDemigodsTorchImplicit"] = { affix = "", "+(11-19)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["AllResistancesImplictBootsDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["AllResistancesImplictHelmetDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["AllResistancesDemigodsImplicit"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["ActorSizeUniqueBeltDemigods1"] = { affix = "", "10% increased Character Size", statOrder = { 1717 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1408638732, }, - ["ActorSizeUniqueRingDemigods1"] = { affix = "", "3% increased Character Size", statOrder = { 1717 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1408638732, }, - ["ActorSizeUnique__3"] = { affix = "", "10% increased Character Size", statOrder = { 1717 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1408638732, }, - ["CannotCrit"] = { affix = "", "Never deal Critical Hits", statOrder = { 1842 }, level = 1, group = "CannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3638599682, }, - ["CannotBeStunned"] = { affix = "", "Cannot be Stunned", statOrder = { 1838 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1694106311, }, - ["CannotBeStunnedUnique__1_"] = { affix = "", "Cannot be Stunned", statOrder = { 1838 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1694106311, }, - ["AdditionalCurseOnEnemiesUnique__1"] = { affix = "", "You can apply an additional Curse", statOrder = { 1833 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 30642521, }, - ["AdditionalCurseOnEnemiesUnique__2"] = { affix = "", "You can apply an additional Curse", statOrder = { 1833 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 30642521, }, - ["AdditionalCurseOnEnemiesUnique__3"] = { affix = "", "You can apply one fewer Curse", statOrder = { 1833 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 30642521, }, - ["ConvertPhysicalToFireUniqueQuiver1_"] = { affix = "", "50% of Physical Damage Converted to Fire Damage", statOrder = { 1628 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, }, - ["ConvertPhysicalToFireUniqueShieldStr3"] = { affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1628 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, }, - ["ConvertPhysicalToFireUniqueOneHandSword4"] = { affix = "", "100% of Physical Damage Converted to Fire Damage", statOrder = { 1628 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, }, - ["ConvertPhysicalToFireUnique__1"] = { affix = "", "50% of Physical Damage Converted to Fire Damage", statOrder = { 1628 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, }, - ["ConvertPhysicalToFireUnique__2_"] = { affix = "", "30% of Physical Damage Converted to Fire Damage", statOrder = { 1628 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, }, - ["ConvertPhysicalToFireUnique__3__"] = { affix = "", "(0-50)% of Physical Damage Converted to Fire Damage", statOrder = { 1628 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 178327868, }, - ["BeltReducedFlaskChargesGainedUnique__1"] = { affix = "", "30% reduced Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, }, - ["BeltIncreasedFlaskChargesGainedUnique__1_"] = { affix = "", "(15-25)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, }, - ["BeltIncreasedFlaskChargedUsedUnique__1"] = { affix = "", "(10-20)% increased Flask Charges used", statOrder = { 982 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 644456512, }, - ["BeltIncreasedFlaskChargedUsedUnique__2"] = { affix = "", "(7-10)% reduced Flask Charges used", statOrder = { 982 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 644456512, }, - ["BeltIncreasedFlaskDurationUnique__2"] = { affix = "", "60% increased Flask Effect Duration", statOrder = { 879 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, }, - ["BeltIncreasedFlaskDurationUnique__3___"] = { affix = "", "(10-20)% increased Flask Effect Duration", statOrder = { 879 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, }, - ["UniqueBeltFlaskDuration1"] = { affix = "", "(30-40)% reduced Flask Effect Duration", statOrder = { 879 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, }, - ["BeltReducedFlaskDurationUniqueDescentBelt1"] = { affix = "", "30% reduced Flask Effect Duration", statOrder = { 879 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, }, - ["BeltIncreasedFlaskDurationUnique__1"] = { affix = "", "60% increased Flask Effect Duration", statOrder = { 879 }, level = 14, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, }, - ["IncreasedFlaskDurationUnique__1"] = { affix = "", "(20-30)% reduced Flask Effect Duration", statOrder = { 879 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, }, - ["BeltFlaskLifeRecoveryUniqueDescentBelt1"] = { affix = "", "30% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, }, - ["FlaskLifeRecoveryRateUniqueJewel46"] = { affix = "", "10% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, }, - ["FlaskLifeRecoveryUniqueAmulet25"] = { affix = "", "100% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, }, - ["BeltFlaskLifeRecoveryUnique__1"] = { affix = "", "(30-40)% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, }, - ["BeltFlaskManaRecoveryUniqueDescentBelt1"] = { affix = "", "30% increased Mana Recovery from Flasks", statOrder = { 1720 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, }, - ["BeltFlaskManaRecoveryUnique__1"] = { affix = "", "(20-30)% increased Mana Recovery from Flasks", statOrder = { 1720 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, }, - ["FlaskManaRecoveryUniqueBodyDex7"] = { affix = "", "(60-100)% increased Mana Recovery from Flasks", statOrder = { 1720 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, }, - ["FlaskManaRecoveryUniqueShieldInt3"] = { affix = "", "15% increased Mana Recovery from Flasks", statOrder = { 1720 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, }, - ["BeltFlaskLifeRecoveryRateUniqueBelt4"] = { affix = "", "25% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, }, - ["FlaskLifeRecoveryRateUniqueBodyStrDex1"] = { affix = "", "50% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, }, - ["FlaskLifeRecoveryRateUniqueSceptre5"] = { affix = "", "10% reduced Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 51994685, }, - ["FlaskManaRecoveryRateUniqueBodyStrDex1"] = { affix = "", "50% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, }, - ["FlaskManaRecoveryRateUniqueSceptre5"] = { affix = "", "(30-40)% increased Flask Mana Recovery rate", statOrder = { 877 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHash = 1412217137, }, - ["BeltIncreasedFlaskChargesGainedUniqueBelt2"] = { affix = "", "50% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1836676211, }, - ["BeltIncreasedFlaskDurationUniqueBelt3"] = { affix = "", "20% increased Flask Effect Duration", statOrder = { 879 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741323227, }, - ["IncreasedChillDurationUniqueBodyDex1"] = { affix = "", "25% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, }, - ["IncreasedChillDurationUniqueBodyStrInt3"] = { affix = "", "150% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, }, - ["IncreasedChillDurationUniqueQuiver5"] = { affix = "", "(30-40)% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 13, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, }, - ["IncreasedChillDurationUnique__1"] = { affix = "", "(35-50)% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, }, - ["Acrobatics"] = { affix = "", "Acrobatics", statOrder = { 10024 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1588686563, }, - ["HasNoSockets"] = { affix = "", "Has no Sockets", statOrder = { 52 }, level = 1, group = "HasNoSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1493091477, }, - ["CannotBeShocked"] = { affix = "", "Cannot be Shocked", statOrder = { 1524 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 491899612, }, - ["AttackerTakesDamageShieldImplicit1"] = { affix = "", "Reflects (2-5) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 5, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, - ["AttackerTakesDamageShieldImplicit2"] = { affix = "", "Reflects (5-12) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 12, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, - ["AttackerTakesDamageShieldImplicit3"] = { affix = "", "Reflects (10-23) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, - ["AttackerTakesDamageShieldImplicit4"] = { affix = "", "Reflects (24-35) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 27, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, - ["AttackerTakesDamageShieldImplicit5"] = { affix = "", "Reflects (36-50) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 33, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, - ["AttackerTakesDamageShieldImplicit6"] = { affix = "", "Reflects (51-70) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 39, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, - ["AttackerTakesDamageShieldImplicit7"] = { affix = "", "Reflects (71-90) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 45, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, - ["AttackerTakesDamageShieldImplicit8"] = { affix = "", "Reflects (91-120) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 49, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, - ["AttackerTakesDamageShieldImplicit9"] = { affix = "", "Reflects (121-150) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 54, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, - ["AttackerTakesDamageShieldImplicit10"] = { affix = "", "Reflects (151-180) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, - ["AttackerTakesDamageShieldImplicit11"] = { affix = "", "Reflects (181-220) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 62, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, - ["AttackerTakesDamageShieldImplicit12"] = { affix = "", "Reflects (221-260) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 66, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, - ["AttackerTakesDamageShieldImplicit13"] = { affix = "", "Reflects (261-300) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 70, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, - ["AttackerTakesDamageUniqueIntHelmet1"] = { affix = "", "Reflects 5 Physical Damage to Melee Attackers", statOrder = { 880 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, - ["AttackerTakesDamageUnique__1"] = { affix = "", "Reflects (71-90) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, - ["AttackerTakesDamageUnique__2"] = { affix = "", "Reflects (100-150) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, - ["AttackerTakesColdDamageGlovesDex1"] = { affix = "", "Reflects 100 Cold Damage to Melee Attackers", statOrder = { 1860 }, level = 1, group = "AttackerTakesColdDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 4235886357, }, - ["AttackerTakesDamageUniqueHelmetDex3"] = { affix = "", "Reflects 4 Physical Damage to Melee Attackers", statOrder = { 880 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3767873853, }, - ["AttackerTakesDamageUniqueHelmetDexInt6"] = { affix = "", "Reflects 100 to 150 Physical Damage to Melee Attackers", statOrder = { 1855 }, level = 1, group = "AttackerTakesDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2970307386, }, - ["TakesDamageWhenAttackedUniqueIntHelmet1"] = { affix = "", "+25 Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 1, group = "TakesDamageWhenAttacked", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3441651621, }, - ["PainAttunement"] = { affix = "", "Pain Attunement", statOrder = { 10065 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 98977150, }, - ["IncreasedExperienceUniqueIntHelmet3"] = { affix = "", "5% increased Experience gain", statOrder = { 1397 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666934677, }, - ["IncreasedExperienceUniqueTwoHandMace4"] = { affix = "", "(30-50)% reduced Experience gain", statOrder = { 1397 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666934677, }, - ["IncreasedExperienceUniqueSceptre1"] = { affix = "", "3% increased Experience gain", statOrder = { 1397 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666934677, }, - ["IncreasedExperienceUniqueRing14"] = { affix = "", "2% increased Experience gain", statOrder = { 1397 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666934677, }, - ["ChanceToAvoidFreezeAndChillUniqueDexHelmet5"] = { affix = "", "25% chance to Avoid being Chilled", statOrder = { 1527 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 776705236, }, - ["ChanceToAvoidChillUniqueDescentOneHandAxe1"] = { affix = "", "50% chance to Avoid being Chilled", statOrder = { 1527 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 776705236, }, - ["CannotBeChilledUniqueBodyStrInt3"] = { affix = "", "Cannot be Chilled", statOrder = { 1519 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 283649372, }, - ["CannotBeChilledUnique__1"] = { affix = "", "Cannot be Chilled", statOrder = { 1519 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 283649372, }, - ["ChanceToAvoidChilledUnique__1"] = { affix = "", "50% chance to Avoid being Chilled", statOrder = { 1527 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 776705236, }, - ["CannotBeFrozenOrChilledUnique__1"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1520 }, level = 31, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2996245527, }, - ["CannotBeFrozenOrChilledUnique__2"] = { affix = "", "You cannot be Chilled or Frozen", statOrder = { 1520 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2996245527, }, - ["ReducedManaCostOnLowLifeUniqueHelmetStrInt1"] = { affix = "", "20% reduced Mana Cost of Skills when on Low Life", statOrder = { 1563 }, level = 1, group = "ReducedManaCostOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 73272763, }, - ["ElementalResistsOnLowLifeUniqueHelmetStrInt1"] = { affix = "", "+20% to all Elemental Resistances while on Low Life", statOrder = { 1409 }, level = 1, group = "ElementalResistsOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1637928656, }, - ["EvasionOnLowLifeUniqueAmulet4"] = { affix = "", "+(150-250) to Evasion Rating while on Low Life", statOrder = { 1361 }, level = 1, group = "EvasionOnLowLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 3470876581, }, - ["LifeRegenerationOnLowLifeUniqueAmulet4"] = { affix = "", "Regenerate 1% of maximum Life per second while on Low Life", statOrder = { 1618 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3942946753, }, - ["LifeRegenerationOnLowLifeUniqueBodyStrInt2"] = { affix = "", "Regenerate 2% of maximum Life per second while on Low Life", statOrder = { 1618 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3942946753, }, - ["LifeRegenerationOnLowLifeUniqueShieldStrInt3_"] = { affix = "", "Regenerate 3% of maximum Life per second while on Low Life", statOrder = { 1618 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3942946753, }, - ["ItemRarityOnLowLifeUniqueBootsInt1"] = { affix = "", "100% increased Rarity of Items found when on Low Life", statOrder = { 1393 }, level = 1, group = "ItemRarityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2929867083, }, - ["MovementVelocityOnLowLifeUniqueBootsStrDex1"] = { affix = "", "40% reduced Movement Speed when on Low Life", statOrder = { 1481 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, }, - ["MovementVelocityOnLowLifeUniqueGlovesDexInt1"] = { affix = "", "20% increased Movement Speed when on Low Life", statOrder = { 1481 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, }, - ["MovementVelocityOnLowLifeUniqueRapier1"] = { affix = "", "30% increased Movement Speed when on Low Life", statOrder = { 1481 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, }, - ["MovementVelocityOnLowLifeUnique__1"] = { affix = "", "(10-20)% increased Movement Speed when on Low Life", statOrder = { 1481 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, }, - ["MovementVelocityOnFullLifeUniqueBootsInt3"] = { affix = "", "20% increased Movement Speed when on Full Life", statOrder = { 1482 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3393547195, }, - ["MovementVelocityOnFullLifeUniqueTwoHandAxe2"] = { affix = "", "15% increased Movement Speed when on Full Life", statOrder = { 1482 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3393547195, }, - ["MovementVelocityOnLowLifeUniqueBootsDex3"] = { affix = "", "30% increased Movement Speed when on Low Life", statOrder = { 1481 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, }, - ["MovementVelocityOnLowLifeUniqueShieldStrInt5"] = { affix = "", "10% increased Movement Speed when on Low Life", statOrder = { 1481 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, }, - ["MovementVelocityOnLowLifeUniqueRing9"] = { affix = "", "(6-8)% increased Movement Speed when on Low Life", statOrder = { 1481 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 649025131, }, - ["MovementVelocityOnFullLifeUniqueAmulet13"] = { affix = "", "10% increased Movement Speed when on Full Life", statOrder = { 1482 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3393547195, }, - ["MovementVelocityOnFullLifeUnique__1"] = { affix = "", "30% increased Movement Speed when on Full Life", statOrder = { 1482 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3393547195, }, - ["ElementalDamageUniqueBootsStr1"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, - ["ElementalDamageUniqueSceptre1"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, - ["ElementalDamageUniqueIntHelmet3"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, - ["ElementalDamageUniqueRing21"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1651 }, level = 38, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, - ["ElementalDamageUniqueDescentBelt1"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, - ["ElementalDamageUniqueSceptre7"] = { affix = "", "(80-100)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, - ["ElementalDamageUniqueHelmetInt9"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, - ["ElementalDamageUniqueRingVictors"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, - ["ElementalDamageUniqueJewel10"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, - ["ElementalDamageUniqueStaff13"] = { affix = "", "(30-50)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, - ["ElementalDamageUnique__1"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, - ["ElementalDamageUnique__2_"] = { affix = "", "(20-30)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, - ["ElementalDamageUnique__3"] = { affix = "", "(30-40)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, - ["ElementalDamageUnique__4"] = { affix = "", "(7-10)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, - ["ConvertPhysicalToColdUniqueGlovesDex1"] = { affix = "", "100% of Physical Damage Converted to Cold Damage", statOrder = { 1631 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 1576601839, }, - ["ConvertPhysicalToColdUniqueQuiver5"] = { affix = "", "Gain 20% of Physical Damage as Extra Cold Damage", statOrder = { 1605 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 758893621, }, - ["ConvertPhysicalToColdUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1631 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 1576601839, }, - ["ConvertPhysicalToColdUnique__1"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1631 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 1576601839, }, - ["ConvertPhysicalToColdUnique__2"] = { affix = "", "50% of Physical Damage Converted to Cold Damage", statOrder = { 1631 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 1576601839, }, - ["ConvertPhysicalToColdUnique__3"] = { affix = "", "(0-50)% of Physical Damage Converted to Cold Damage", statOrder = { 1631 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 1576601839, }, - ["ConvertPhysicalToLightningUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1633 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, }, - ["ConvertPhysicaltoLightningUnique__1"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1633 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, }, - ["ConvertPhysicaltoLightningUnique__2"] = { affix = "", "30% of Physical Damage Converted to Lightning Damage", statOrder = { 1633 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, }, - ["ConvertPhysicaltoLightningUnique__3"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1633 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, }, - ["ConvertPhysicaltoLightningUnique__4"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1633 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, }, - ["ConvertPhysicaltoLightningUnique__5"] = { affix = "", "(0-50)% of Physical Damage Converted to Lightning Damage", statOrder = { 1633 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, tradeHash = 4121092210, }, - ["AttackSpeedOnFullLifeUniqueGlovesStr1"] = { affix = "", "30% increased Attack Speed when on Full Life", statOrder = { 1115 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 4268321763, }, - ["AttackSpeedOnFullLifeUniqueDescentHelmet1"] = { affix = "", "15% increased Attack Speed when on Full Life", statOrder = { 1115 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 4268321763, }, - ["Conduit"] = { affix = "", "Conduit", statOrder = { 10038 }, level = 1, group = "Conduit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 1994392904, }, - ["PhysicalAttackDamageReducedUniqueAmulet8"] = { affix = "", "-4 Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 25, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, }, - ["PhysicalAttackDamageReducedUniqueBelt3"] = { affix = "", "-2 Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, }, - ["PhysicalAttackDamageReducedUniqueBodyStr2"] = { affix = "", "-(15-10) Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, }, - ["PhysicalAttackDamageReducedUniqueBodyDex2"] = { affix = "", "-3 Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, }, - ["PhysicalAttackDamageReducedUniqueBodyDex3"] = { affix = "", "-(7-5) Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, }, - ["PhysicalAttackDamageReducedUniqueBelt8"] = { affix = "", "-(50-40) Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, }, - ["PhysicalAttackDamageReducedUniqueShieldDexInt1"] = { affix = "", "-(18-14) Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, }, - ["PhysicalAttackDamageReducedUnique__1"] = { affix = "", "-(60-30) Physical Damage taken from Attack Hits", statOrder = { 1884 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3441651621, }, - ["AdditionalBlockChanceUniqueShieldStrDex1"] = { affix = "", "+(3-6)% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, - ["AdditionalBlockChanceUniqueShieldDex1"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, - ["AdditionalBlockChanceUniqueShieldDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, - ["AdditionalBlockChanceUniqueShieldStr1"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, - ["AdditionalBlockChanceUniqueShieldStrInt4"] = { affix = "", "+6% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, - ["AdditionalBlockChanceUniqueShieldStrInt6"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, - ["AdditionalBlockChanceUniqueDescentShield1_"] = { affix = "", "+3% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, - ["AdditionalBlockChanceUniqueShieldDex4"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, - ["AdditionalBlockChanceUniqueShieldStrDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, - ["AdditionalBlockChanceUniqueShieldDex5"] = { affix = "", "+10% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, - ["AdditionalBlockChanceUniqueShieldInt4"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, - ["AdditionalBlockChanceUniqueShieldStr4"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, - ["AdditionalBlockChanceUniqueShieldStrDex3__"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, - ["SubtractedBlockChanceUniqueShieldStrInt8"] = { affix = "", "-10% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, - ["AdditionalBlockChanceUnique__1"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, - ["AdditionalBlockChanceUnique__2"] = { affix = "", "+6% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, - ["AdditionalBlockChanceUnique__3"] = { affix = "", "+(6-10)% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, - ["AdditionalBlockChanceUnique__4"] = { affix = "", "+6% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, - ["AdditionalBlockChanceUnique__5"] = { affix = "", "+5% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, - ["AdditionalBlockChanceUnique__6"] = { affix = "", "+(3-4)% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, - ["AdditionalBlockChanceUnique__7__"] = { affix = "", "+(8-12)% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, - ["AdditionalBlockChanceUnique__8_"] = { affix = "", "+(9-13)% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, - ["AdditionalBlockChanceUnique__9"] = { affix = "", "+(20-25)% Chance to Block", statOrder = { 829 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4253454700, }, - ["MaximumColdResistUniqueShieldDex1"] = { affix = "", "+5% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, }, - ["MaximumColdResistUnique__1_"] = { affix = "", "+(-3-3)% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, }, - ["MaximumColdResistUnique__2"] = { affix = "", "+3% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, }, - ["MaximumFireResistUniqueShieldStrInt5"] = { affix = "", "+5% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, }, - ["MaximumFireResistUnique__1"] = { affix = "", "+(-3-3)% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, }, - ["MaximumLightningResistUniqueStaff8c"] = { affix = "", "+5% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, }, - ["MaximumLightningResistUnique__1"] = { affix = "", "+(-3-3)% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, }, - ["MeleeAttackerTakesColdDamageUniqueShieldDex1"] = { affix = "", "Reflects (25-50) Cold Damage to Melee Attackers", statOrder = { 1860 }, level = 1, group = "AttackerTakesColdDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 4235886357, }, - ["RangedAttackDamageReducedUniqueShieldStr1"] = { affix = "", "-25 Physical damage taken from Projectile Attacks", statOrder = { 1896 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3612407781, }, - ["RangedAttackDamageReducedUniqueShieldStr2"] = { affix = "", "-(80-50) Physical damage taken from Projectile Attacks", statOrder = { 1896 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHash = 3612407781, }, - ["GainFrenzyChargeOnCriticalHit"] = { affix = "", "Gain a Frenzy Charge on Critical Hit", statOrder = { 1510 }, level = 1, group = "FrenzyChargeOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "critical" }, tradeHash = 398702949, }, - ["CannotBlockAttacks"] = { affix = "", "Cannot Block", statOrder = { 2872 }, level = 1, group = "CannotBlockAttacks", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1465760952, }, - ["IncreasedMaximumResistsUniqueShieldStrInt1"] = { affix = "", "+4% to all maximum Resistances", statOrder = { 1420 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHash = 569299859, }, - ["IncreasedMaximumResistsUnique__1"] = { affix = "", "+(1-4)% to all maximum Resistances", statOrder = { 1420 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHash = 569299859, }, - ["IncreasedMaximumResistsUnique__2"] = { affix = "", "-5% to all maximum Resistances", statOrder = { 1420 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHash = 569299859, }, - ["IncreasedMaximumColdResistUniqueShieldStrInt4"] = { affix = "", "+5% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, }, - ["ItemActsAsConcentratedAOESupportUniqueHelmetInt4"] = { affix = "", "Socketed Gems are Supported by Level 20 Concentrated Effect", statOrder = { 318 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2388360415, }, - ["ItemActsAsConcentratedAOESupportUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Concentrated Effect", statOrder = { 318 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2388360415, }, - ["ItemActsAsConcentratedAOESupportUniqueRing35"] = { affix = "", "Socketed Gems are Supported by Level 15 Concentrated Effect", statOrder = { 318 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2388360415, }, - ["ItemActsAsConcentratedAOESupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 5 Concentrated Effect", statOrder = { 318 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2388360415, }, - ["ItemActsAsFirePenetrationSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Fire Penetration", statOrder = { 329 }, level = 1, group = "DisplaySocketedGemsGetFirePenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3265951306, }, - ["ItemActsAsFireDamageSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Added Fire Damage", statOrder = { 326 }, level = 1, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2572192375, }, - ["ItemActsAsColdToFireSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Cold to Fire", statOrder = { 327 }, level = 1, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 550444281, }, - ["ItemActsAsColdToFireSupportUniqueStaff13"] = { affix = "", "Socketed Gems are Supported by Level 5 Cold to Fire", statOrder = { 327 }, level = 1, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 550444281, }, - ["ItemActsAsColdToFireSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Cold to Fire", statOrder = { 327 }, level = 75, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 550444281, }, - ["GenerateEnduranceChargesForAlliesInPresence"] = { affix = "", "If you would gain an Endurance Charge, Allies in your Presence gain that Charge instead", statOrder = { 1934 }, level = 1, group = "GenerateEnduranceChargesForAlliesInPresence", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1881314095, }, - ["GainEnduranceChargeWhenCriticallyHit"] = { affix = "", "Gain an Endurance Charge when you take a Critical Hit", statOrder = { 1517 }, level = 1, group = "GainEnduranceChargeWhenCriticallyHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "critical" }, tradeHash = 2609824731, }, - ["BlindingHitUniqueWand1"] = { affix = "", "10% chance to Blind Enemies on hit", statOrder = { 1937 }, level = 1, group = "BlindingHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2301191210, }, - ["ItemActsAsSupportBlindUniqueWand1"] = { affix = "", "Socketed Gems are supported by Level 20 Blind", statOrder = { 334 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2223640518, }, - ["ItemActsAsSupportBlindUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are supported by Level 30 Blind", statOrder = { 334 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2223640518, }, - ["ItemActsAsSupportBlindUniqueHelmetStrDex4b"] = { affix = "", "Socketed Gems are supported by Level 6 Blind", statOrder = { 334 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2223640518, }, - ["ItemActsAsSupportBlindUnique__1"] = { affix = "", "Socketed Gems are supported by Level 10 Blind", statOrder = { 334 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2223640518, }, - ["ReducedFreezeDurationUniqueShieldStrInt3"] = { affix = "", "80% reduced Freeze Duration on you", statOrder = { 998 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2160282525, }, - ["FreezeDurationOnSelfUnique__1"] = { affix = "", "10000% increased Freeze Duration on you", statOrder = { 998 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2160282525, }, - ["FacebreakerUnarmedMoreDamage"] = { affix = "", "(600-800)% more Physical Damage with Unarmed Melee Attacks", statOrder = { 2109 }, level = 1, group = "FacebreakerPhysicalUnarmedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1814782245, }, - ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandMace3"] = { affix = "", "Socketed Gems are Supported by Level 15 Pulverise", statOrder = { 246 }, level = 1, group = "SupportedByPulverise", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 282757414, }, - ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandAxe5"] = { affix = "", "Socketed Gems are Supported by Level 20 Increased Area of Effect", statOrder = { 170 }, level = 1, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3720936304, }, - ["SocketedGemsGetIncreasedAreaOfEffectUniqueDescentOneHandSword1"] = { affix = "", "Socketed Gems are Supported by Level 5 Increased Area of Effect", statOrder = { 170 }, level = 1, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3720936304, }, - ["SocketedGemsGetIncreasedAreaOfEffectUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 276 }, level = 1, group = "SupportedByIntensifyLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3561676020, }, - ["ExtraGore"] = { affix = "", "Extra gore", statOrder = { 10102 }, level = 1, group = "ExtraGore", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3403461239, }, - ["OneSocketEachColourUnique"] = { affix = "", "Has one socket of each colour", statOrder = { 58 }, level = 1, group = "OneSocketEachColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3146680230, }, - ["BlockWhileDualWieldingUniqueDagger3"] = { affix = "", "+12% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1060 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, }, - ["BlockWhileDualWieldingUniqueTwoHandAxe6"] = { affix = "", "+(8-12)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1060 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, }, - ["BlockWhileDualWieldingUniqueOneHandSword5"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1060 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, }, - ["BlockWhileDualWieldingUniqueDagger9"] = { affix = "", "+5% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1060 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, }, - ["BlockWhileDualWieldingUnique__1"] = { affix = "", "+10% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1060 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, }, - ["BlockWhileDualWieldingUnique__2_"] = { affix = "", "+18% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1060 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2166444903, }, - ["MaximumMinionCountUniqueBootsInt4"] = { affix = "", "+1 to Level of all Raise Zombie Gems", "+1 to Level of all Raise Spectre Gems", statOrder = { 1403, 1404 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "minion", "gem" }, tradeHash = 1803717126, }, - ["MaximumMinionCountUniqueTwoHandSword4"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1825, 8762 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 284729245, }, - ["MaximumMinionCountUniqueTwoHandSword4Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1825, 1826 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, }, - ["MaximumMinionCountUniqueSceptre5"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 1825 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, }, - ["MaximumMinionCountUniqueBootsStrInt2"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 8762 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 284729245, }, - ["MaximumMinionCountUniqueBootsStrInt2Updated"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 1826 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, }, - ["MaximumMinionCountUniqueBodyInt9"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 1825 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, }, - ["MaximumMinionCountUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", "(7-10)% increased Skeleton Cast Speed", "(3-5)% increased Skeleton Movement Speed", statOrder = { 9288, 9289, 9292 }, level = 1, group = "SkeletonSpeedOld", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHash = 2857939712, }, - ["MaximumMinionCountUnique__1__"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 1825 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, }, - ["MaximumMinionCountUnique__2"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 1825 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, }, - ["SkeletonMovementSpeedUniqueJewel1"] = { affix = "", "(3-5)% increased Skeleton Movement Speed", statOrder = { 9292 }, level = 1, group = "SkeletonMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHash = 3295031203, }, - ["SkeletonAttackSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", statOrder = { 9288 }, level = 1, group = "SkeletonAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHash = 3413085237, }, - ["SkeletonCastSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Cast Speed", statOrder = { 9289 }, level = 1, group = "SkeletonCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "minion" }, tradeHash = 2725259389, }, - ["SocketedemsHaveBloodMagicUniqueShieldStrInt2"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 377 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 1104246401, }, - ["SocketedGemsHaveBloodMagicUniqueOneHandSword7"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 377 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 1104246401, }, - ["SocketedGemsHaveBloodMagicUnique__1"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 377 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 1104246401, }, - ["LocalIncreaseSocketedAuraLevelUniqueShieldStrInt2"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 132 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, tradeHash = 2452998583, }, - ["SocketedItemsHaveChanceToFleeUniqueClaw6"] = { affix = "", "Socketed Gems have 10% chance to cause Enemies to Flee on Hit", statOrder = { 383 }, level = 1, group = "DisplaySocketedGemGetsFlee", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 3418772, }, - ["AttackerTakesLightningDamageUniqueBodyInt1"] = { affix = "", "Reflects 1 to 250 Lightning Damage to Melee Attackers", statOrder = { 1858 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1243237244, }, - ["AttackerTakesLightningDamageUnique___1"] = { affix = "", "Reflects 1 to 150 Lightning Damage to Melee Attackers", statOrder = { 1858 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1243237244, }, - ["PhysicalDamageConvertToChaosUniqueBow5"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1636 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, }, - ["PhysicalDamageConvertToChaosUniqueClaw2"] = { affix = "", "(10-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1636 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, }, - ["PhysicalDamageConvertToChaosBodyStrInt4"] = { affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1636 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, }, - ["PhysicalDamageConvertToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1636 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, }, - ["PhysicalDamageConvertedToChaosPerLevelUnique__1"] = { affix = "", "1% of Physical Damage Converted to Chaos Damage per Level", statOrder = { 8708 }, level = 1, group = "PhysicalDamageConvertToChaosPerLevel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 1714211040, }, - ["MaximumMinionCountUniqueWand2"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1825, 8762 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 284729245, }, - ["MaximumMinionCountUniqueWand2Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1825, 1826 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3871139208, }, - ["LifeReservationUniqueWand2"] = { affix = "", "Cannot be used with Chaos Inoculation", "Reserves 30% of Life", statOrder = { 809, 2112 }, level = 1, group = "ReservesLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3920081309, }, - ["LocalIncreaseSocketedStrengthGemLevelUniqueTwoHandAxe3"] = { affix = "", "+1 to Level of Socketed Strength Gems", statOrder = { 110 }, level = 1, group = "LocalIncreaseSocketedStrengthGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHash = 916797432, }, - ["ChaosTakenOnES"] = { affix = "", "Chaos Damage taken does not cause double loss of Energy Shield", statOrder = { 2179 }, level = 1, group = "ChaosTakenOnES", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 133168938, }, - ["PhysicalDamagePercentTakesAsChaosDamageUniqueBow5"] = { affix = "", "25% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2124 }, level = 1, group = "PhysicalDamagePercentTakesAsChaosDamage", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, tradeHash = 4129825612, }, - ["PhysicalBowDamageCloseRangeUniqueBow6"] = { affix = "", "50% more Damage with Arrow Hits at Close Range", statOrder = { 2115 }, level = 1, group = "ChinSolPhysicalBowDamageAtCloseRange", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2749166636, }, - ["KnockbackCloseRangeUniqueBow6"] = { affix = "", "Bow Knockback at Close Range", statOrder = { 2116 }, level = 1, group = "ChinSolCloseRangeKnockBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3261557635, }, - ["PercentDamageGoesToManaUniqueBootsDex3"] = { affix = "", "(5-10)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, }, - ["PercentDamageGoesToManaUniqueHelmetStrInt3"] = { affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, }, - ["PercentDamageGoesToManaUnique__1"] = { affix = "", "8% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, }, - ["PercentDamageGoesToManaUnique__2"] = { affix = "", "(6-12)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 472520716, }, - ["BurnDurationUniqueBodyInt2"] = { affix = "", "(40-75)% increased Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, }, - ["BurnDurationUniqueDescentOneHandMace1"] = { affix = "", "500% increased Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, }, - ["BurnDurationUniqueRing31"] = { affix = "", "15% increased Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, }, - ["BurnDurationUniqueWand10"] = { affix = "", "25% reduced Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, }, - ["BurnDurationUnique__1"] = { affix = "", "33% increased Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, }, - ["BurnDurationUnique__2"] = { affix = "", "10000% increased Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, }, - ["PhysicalDamageTakenAsFirePercentUniqueBodyInt2"] = { affix = "", "20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2119 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHash = 3342989455, }, - ["PhysicalDamageTakenAsFirePercentUnique__1"] = { affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2119 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHash = 3342989455, }, - ["AttackerTakesFireDamageUniqueBodyInt2"] = { affix = "", "Reflects 100 Fire Damage to Melee Attackers", statOrder = { 1861 }, level = 1, group = "AttackerTakesFireDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 1757945818, }, - ["AvoidIgniteUniqueBodyDex3"] = { affix = "", "Cannot be Ignited", statOrder = { 1522 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 331731406, }, - ["AvoidIgniteUnique__1"] = { affix = "", "Cannot be Ignited", statOrder = { 1522 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 331731406, }, - ["RangedWeaponPhysicalDamagePlusPercentUniqueBodyDex3"] = { affix = "", "(10-15)% increased Physical Damage with Ranged Weapons", statOrder = { 1665 }, level = 1, group = "RangedWeaponPhysicalDamagePlusPercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 766615564, }, - ["RangedWeaponPhysicalDamagePlusPercentUnique__1"] = { affix = "", "(75-150)% increased Physical Damage with Ranged Weapons", statOrder = { 1665 }, level = 1, group = "RangedWeaponPhysicalDamagePlusPercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 766615564, }, - ["PhysicalDamageTakenPercentToReflectUniqueBodyStr2"] = { affix = "", "1000% of Melee Physical Damage taken reflected to Attacker", statOrder = { 2129 }, level = 1, group = "PhysicalDamageTakenPercentToReflect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1092987622, }, - ["AdditionalBlockUniqueBodyDex2"] = { affix = "", "+5% to Block chance", statOrder = { 2130 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, }, - ["UniqueAdditionalBlockChance1"] = { affix = "", "+25% to Block chance", statOrder = { 2130 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, }, - ["AdditionalBlockUnique__1"] = { affix = "", "+(2-4)% to Block chance", statOrder = { 2130 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, }, - ["AdditionalBlockUnique__2"] = { affix = "", "+15% to Block chance", statOrder = { 2130 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1702195217, }, - ["ArrowPierceUniqueBow7"] = { affix = "", "Arrows Pierce all Targets", statOrder = { 4517 }, level = 1, group = "ArrowsAlwaysPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1829238593, }, - ["AdditionalArrowPierceImplicitQuiver12_"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1476 }, level = 45, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3423006863, }, - ["AdditionalArrowPierceImplicitQuiver5New"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1476 }, level = 32, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3423006863, }, - ["LeechEnergyShieldInsteadofLife"] = { affix = "", "Life Leech is Converted to Energy Shield Leech", statOrder = { 5377 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 3314050176, }, - ["BlockWhileDualWieldingClawsUniqueClaw1"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding Claws", statOrder = { 1061 }, level = 1, group = "BlockWhileDualWieldingClaws", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2538694749, }, - ["BlockVsProjectilesUniqueShieldStr2"] = { affix = "", "+25% chance to Block Projectile Attack Damage", statOrder = { 2134 }, level = 1, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3416410609, }, - ["CannotLeech"] = { affix = "", "Cannot Leech", statOrder = { 2135 }, level = 1, group = "CannotLeech", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "mana", "defences" }, tradeHash = 1336164384, }, - ["SocketedItemsHaveReducedReservationUniqueShieldStrInt2"] = { affix = "", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 378 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 3289633055, }, - ["SocketedItemsHaveReducedReservationUniqueBodyDexInt4"] = { affix = "", "Socketed Gems have 45% increased Reservation Efficiency", statOrder = { 378 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 3289633055, }, - ["SocketedItemsHaveReducedReservationUnique__1"] = { affix = "", "Socketed Gems have 25% increased Reservation Efficiency", statOrder = { 378 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 3289633055, }, - ["SocketedItemsHaveIncreasedReservationUnique__1"] = { affix = "", "Socketed Gems have 20% reduced Reservation Efficiency", statOrder = { 378 }, level = 57, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 3289633055, }, - ["ChanceToFreezeUniqueStaff2"] = { affix = "", "8% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, }, - ["ChanceToFreezeUniqueQuiver5"] = { affix = "", "(7-10)% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, }, - ["ChanceToFreezeUniqueRing30"] = { affix = "", "10% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, }, - ["ChanceToFreezeUnique__1"] = { affix = "", "5% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, }, - ["ChanceToFreezeUnique__2"] = { affix = "", "2% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, }, - ["ChanceToFreezeUnique__3"] = { affix = "", "10% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, }, - ["ChanceToFreezeUnique__4"] = { affix = "", "10% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, }, - ["ChanceToFreezeUnique__5"] = { affix = "", "20% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, }, - ["FrozenMonstersTakeIncreasedDamage"] = { affix = "", "Enemies Frozen by you take 20% increased Damage", statOrder = { 2133 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 849085925, }, - ["FrozenMonstersTakeIncreasedDamageUnique__1"] = { affix = "", "Enemies Frozen by you take 20% increased Damage", statOrder = { 2133 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 849085925, }, - ["IncreasedIntelligenceRequirementsUniqueSceptre1"] = { affix = "", "60% increased Intelligence Requirement", statOrder = { 813 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 18234720, }, - ["IncreasedIntelligenceRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Intelligence Requirement", statOrder = { 813 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 18234720, }, - ["AddedIntelligenceRequirementsUnique__1"] = { affix = "", "+257 Intelligence Requirement", statOrder = { 812 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2153364323, }, - ["SocketedGemsHaveAddedChaosDamageUniqueBodyInt3"] = { affix = "", "Socketed Gems are Supported by Level 15 Added Chaos Damage", statOrder = { 323 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 411460446, }, - ["SocketedGemsHaveAddedChaosDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Added Chaos Damage", statOrder = { 323 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 411460446, }, - ["SocketedGemsHaveAddedChaosDamageUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 25 Added Chaos Damage", statOrder = { 323 }, level = 50, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 411460446, }, - ["SocketedGemsHaveAddedChaosDamageUnique__3"] = { affix = "", "Socketed Gems are Supported by Level 29 Added Chaos Damage", statOrder = { 323 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 411460446, }, - ["EnergyShieldGainedOnBlockUniqueShieldStrInt4"] = { affix = "", "Recover Energy Shield equal to 2% of Armour when you Block", statOrder = { 2138 }, level = 1, group = "EnergyShieldGainedOnBlockBasedOnArmour", weightKey = { }, weightVal = { }, modTags = { "block", "energy_shield", "defences" }, tradeHash = 3681057026, }, - ["LocalPoisonOnHit"] = { affix = "", "Poisonous Hit", statOrder = { 2139 }, level = 1, group = "LocalPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 4075957192, }, - ["SkeletonDurationUniqueTwoHandSword4"] = { affix = "", "(150-200)% increased Skeleton Duration", statOrder = { 1464 }, level = 1, group = "SkeletonDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1331384105, }, - ["SkeletonDurationUniqueJewel1_"] = { affix = "", "(10-20)% reduced Skeleton Duration", statOrder = { 1464 }, level = 1, group = "SkeletonDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1331384105, }, - ["IncreasedStrengthRequirementsUniqueTwoHandSword4"] = { affix = "", "25% increased Strength Requirement", statOrder = { 820 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, }, - ["ReducedStrengthRequirementsUniqueTwoHandMace5"] = { affix = "", "20% reduced Strength Requirement", statOrder = { 820 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, }, - ["ReducedStrengthRequirementUniqueBodyStr5"] = { affix = "", "30% reduced Strength Requirement", statOrder = { 820 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, }, - ["IncreasedStrengthRequirementUniqueStaff8"] = { affix = "", "40% increased Strength Requirement", statOrder = { 820 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, }, - ["IncreasedStrengthREquirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Strength Requirement", statOrder = { 820 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 295075366, }, - ["StrengthRequirementsUniqueOneHandMace3"] = { affix = "", "+200 Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, }, - ["StrengthRequirementsUnique__1"] = { affix = "", "+100 Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, }, - ["StrengthRequirementsUnique__2"] = { affix = "", "+200 Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, }, - ["StrengthRequirementsUnique__3_"] = { affix = "", "+(500-700) Strength Requirement", statOrder = { 819 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2833226514, }, - ["IntelligenceRequirementsUniqueOneHandMace3"] = { affix = "", "+300 Intelligence Requirement", statOrder = { 812 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2153364323, }, - ["IntelligenceRequirementsUniqueBow12"] = { affix = "", "+212 Intelligence Requirement", statOrder = { 812 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2153364323, }, - ["DexterityRequirementsUnique__1"] = { affix = "", "+160 Dexterity Requirement", statOrder = { 810 }, level = 1, group = "DexterityRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1133453872, }, - ["StrengthIntelligenceRequirementsUnique__1"] = { affix = "", "+600 Strength and Intelligence Requirement", statOrder = { 818 }, level = 1, group = "StrengthIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4272453892, }, - ["SpellDamageTakenOnLowManaUniqueBodyInt4"] = { affix = "", "100% increased Spell Damage taken when on Low Mana", statOrder = { 2141 }, level = 1, group = "SpellDamageTakenOnLowMana", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 3557561376, }, - ["EvasionOnFullLifeUniqueBodyDex4"] = { affix = "", "+1000 to Evasion Rating while on Full Life", statOrder = { 1362 }, level = 1, group = "EvasionOnFullLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 4082111882, }, - ["EvasionOnFullLifeUnique__1_"] = { affix = "", "+1500 to Evasion Rating while on Full Life", statOrder = { 1362 }, level = 1, group = "EvasionOnFullLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 4082111882, }, - ["ReflectCurses"] = { affix = "", "Curse Reflection", statOrder = { 2146 }, level = 1, group = "ReflectCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1731672673, }, - ["FlaskCurseImmunityUnique___1"] = { affix = "", "Removes Curses on use", statOrder = { 656 }, level = 1, group = "FlaskCurseImmunity", weightKey = { }, weightVal = { }, modTags = { "flask", "caster", "curse" }, tradeHash = 3895393544, }, - ["CausesBleedingUniqueTwoHandAxe4"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2152 }, level = 1, group = "CausesBleeding50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 20157668, }, - ["CausesBleedingUniqueTwoHandAxe4Updated"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, - ["CausesBleedingUniqueTwoHandAxe7"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2151 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1401349154, }, - ["CausesBleedingUniqueTwoHandAxe7Updated"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, - ["CausesBleedingUniqueOneHandAxe5"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2151 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1401349154, }, - ["CausesBleedingUniqueOneHandAxe5Updated_"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, - ["CausesBleedingUnique__1"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2151 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1401349154, }, - ["CausesBleedingUnique__1Updated_"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, - ["CausesBleedingUnique__2"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2151 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1401349154, }, - ["CausesBleedingUnique__2Updated"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, - ["CauseseBleedingOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Bleeding on Critical Hit", statOrder = { 7166 }, level = 1, group = "LocalCausesBleedingOnCrit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "critical", "ailment" }, tradeHash = 513681673, }, - ["CausesBleedingOnCritUniqueDagger11"] = { affix = "", "50% chance to cause Bleeding on Critical Hit", statOrder = { 7173 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2743246999, }, - ["AttacksDealNoPhysicalDamage"] = { affix = "", "Attacks deal no Physical Damage", statOrder = { 2149 }, level = 1, group = "AttacksDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2992817550, }, - ["GoldenLightBeam"] = { affix = "", "Golden Radiance", statOrder = { 2165 }, level = 1, group = "GoldenLightBeam", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3636414626, }, - ["CannotBeStunnedOnLowLife"] = { affix = "", "Cannot be Stunned when on Low Life", statOrder = { 1839 }, level = 1, group = "CannotBeStunnedOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1472543401, }, - ["AuraEffectUniqueShieldInt2"] = { affix = "", "20% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3145 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1880071428, }, - ["AuraEffectOnMinionsUniqueShieldInt2"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 1809 }, level = 1, group = "AuraEffectOnMinions", weightKey = { }, weightVal = { }, modTags = { "minion", "aura" }, tradeHash = 634031003, }, - ["AuraEffectUnique__1"] = { affix = "", "20% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3145 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1880071428, }, - ["AuraEffectUnique__2____"] = { affix = "", "10% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3145 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1880071428, }, - ["AuraEffectOnMinionsUnique__1_"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 1809 }, level = 1, group = "AuraEffectOnMinions", weightKey = { }, weightVal = { }, modTags = { "minion", "aura" }, tradeHash = 634031003, }, - ["AreaDamageUniqueBodyDexInt1"] = { affix = "", "(40-50)% increased Area Damage", statOrder = { 1699 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4251717817, }, - ["AreaDamageUniqueDescentOneHandSword1"] = { affix = "", "10% increased Area Damage", statOrder = { 1699 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4251717817, }, - ["AreaDamageUniqueOneHandMace7"] = { affix = "", "(10-20)% increased Area Damage", statOrder = { 1699 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4251717817, }, - ["AreaDamageImplicitMace1"] = { affix = "", "30% increased Area Damage", statOrder = { 1699 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4251717817, }, - ["AreaDamageUnique__1"] = { affix = "", "30% increased Area Damage", statOrder = { 1699 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4251717817, }, - ["AllDamageUniqueRing6"] = { affix = "", "(10-30)% increased Damage", statOrder = { 1087 }, level = 30, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, }, - ["AllDamageUniqueRing8"] = { affix = "", "10% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, }, - ["AllDamageUniqueHelmetDexInt2"] = { affix = "", "25% reduced Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, }, - ["AllDamageUniqueStaff4"] = { affix = "", "(40-50)% increased Global Damage", statOrder = { 1088 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 819529588, }, - ["AllDamageUniqueSceptre8"] = { affix = "", "(40-60)% increased Global Damage", statOrder = { 1088 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 819529588, }, - ["AllDamageUniqueBelt11"] = { affix = "", "10% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, }, - ["AllDamageUnique__1"] = { affix = "", "10% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, }, - ["AllDamageUnique__2"] = { affix = "", "(20-25)% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, }, - ["AllDamageUnique__3"] = { affix = "", "(250-300)% increased Global Damage", statOrder = { 1088 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 819529588, }, - ["AllDamageUnique__4"] = { affix = "", "(30-40)% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, }, - ["LightRadiusUniqueSceptre2"] = { affix = "", "50% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["LightRadiusUniqueBootsStrDex2"] = { affix = "", "25% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["LightRadiusUniqueRing9_"] = { affix = "", "31% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["LightRadiusUniqueBodyInt8"] = { affix = "", "25% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["LightRadiusUniqueBodyStrInt4"] = { affix = "", "25% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["LightRadiusUniqueRing11"] = { affix = "", "(10-15)% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["LightRadiusUniqueAmulet17"] = { affix = "", "(10-15)% increased Light Radius", statOrder = { 1003 }, level = 50, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["LightRadiusUniqueBelt6"] = { affix = "", "25% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["LightRadiusUniqueBodyStr4"] = { affix = "", "25% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["LightRadiusUniqueBootsStrDex3"] = { affix = "", "20% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["LightRadiusUniqueHelmetStrInt4"] = { affix = "", "40% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["LightRadiusUniqueBodyStrInt5"] = { affix = "", "(20-30)% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["LightRadiusUniqueRing15"] = { affix = "", "10% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["LightRadiusUniqueHelmetStrDex6"] = { affix = "", "40% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["LightRadiusUniqueStaff10_"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["LightRadiusUniqueShieldDemigods"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["LightRadiusUnique__1"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["LightRadiusUnique__2"] = { affix = "", "(10-30)% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["LightRadiusUnique__3"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["LightRadiusUnique__4"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["LightRadiusUnique__5"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["LightRadiusUnique__6"] = { affix = "", "50% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["LightRadiusUnique__7_"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["LightRadiusUnique__8"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["EnfeebleOnHitUniqueShieldStr3"] = { affix = "", "25% chance to Curse Non-Cursed Enemies with Enfeeble on Hit", statOrder = { 2190 }, level = 1, group = "EnfeebleOnHitUncursed", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3804297142, }, - ["GroundTarOnCritTakenUniqueShieldInt2"] = { affix = "", "Spreads Tar when you take a Critical Hit", statOrder = { 2180 }, level = 1, group = "GroundTarOnCritTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 665808208, }, - ["GroundTarOnHitTakenUnique__1"] = { affix = "", "20% chance to spread Tar when Hit", statOrder = { 6505 }, level = 1, group = "GroundTarOnHitTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 213066229, }, - ["SpellsHaveCullingStrikeUniqueDagger4"] = { affix = "", "Your Spells have Culling Strike", statOrder = { 2201 }, level = 1, group = "SpellsHaveCullingStrike", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 3238189103, }, - ["EvasionRatingPercentOnLowLifeUniqueHelmetDex4"] = { affix = "", "150% increased Global Evasion Rating when on Low Life", statOrder = { 2204 }, level = 1, group = "EvasionRatingPercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2695354435, }, - ["LocalLifeLeechIsInstantUniqueClaw3"] = { affix = "", "Life Leech from Hits with this Weapon is instant", statOrder = { 2207 }, level = 1, group = "LocalLifeLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1765389199, }, - ["ReducedManaReservationsCostUniqueHelmetDex5"] = { affix = "", "16% increased Mana Reservation Efficiency of Skills", statOrder = { 1882 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1269219558, }, - ["ManaReservationEfficiencyUniqueHelmetDex5_"] = { affix = "", "16% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4237190083, }, - ["IncreasedManaReservationsCostUniqueOneHandSword11"] = { affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 1882 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1269219558, }, - ["ManaReservationEfficiencyUniqueOneHandSword11"] = { affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4237190083, }, - ["IncreasedManaReservationsCostUnique__1"] = { affix = "", "80% reduced Reservation Efficiency of Skills", statOrder = { 1883 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4202507508, }, - ["ReservationEfficiencyUnique__1_"] = { affix = "", "80% reduced Reservation Efficiency of Skills", statOrder = { 1880 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2587176568, }, - ["IncreasedManaReservationsCostUnique__2"] = { affix = "", "20% reduced Reservation Efficiency of Skills", statOrder = { 1883 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4202507508, }, - ["ReservationEfficiencyUnique__2"] = { affix = "", "20% reduced Reservation Efficiency of Skills", statOrder = { 1880 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2587176568, }, - ["ReducedManaReservationsCostUniqueJewel44"] = { affix = "", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 1882 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1269219558, }, - ["ManaReservationEfficiencyUniqueJewel44_"] = { affix = "", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4237190083, }, - ["ReducedManaReservationCostUnique__1"] = { affix = "", "12% increased Reservation Efficiency of Skills", statOrder = { 1883 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4202507508, }, - ["ReservationEfficiencyUnique__3__"] = { affix = "", "12% increased Reservation Efficiency of Skills", statOrder = { 1880 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2587176568, }, - ["ReducedManaReservationCostUnique__2"] = { affix = "", "(12-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 1882 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1269219558, }, - ["ReservationEfficiencyUnique__4_"] = { affix = "", "(10-20)% increased Reservation Efficiency of Skills", statOrder = { 1880 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2587176568, }, - ["ManaReservationEfficiencyUnique__2"] = { affix = "", "(12-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4237190083, }, - ["FireResistOnLowLifeUniqueShieldStrInt5"] = { affix = "", "+25% to Fire Resistance while on Low Life", statOrder = { 1412 }, level = 1, group = "FireResistOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 38301299, }, - ["AvoidIgniteOnLowLifeUniqueShieldStrInt5"] = { affix = "", "100% chance to Avoid being Ignited while on Low Life", statOrder = { 1530 }, level = 1, group = "AvoidIgniteOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 4271082039, }, - ["SocketedGemsGetElementalProliferationUniqueBodyInt5"] = { affix = "", "Socketed Gems are Supported by Level 5 Elemental Proliferation", statOrder = { 330 }, level = 1, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2929101122, }, - ["SocketedGemsGetElementalProliferationUniqueSceptre7"] = { affix = "", "Socketed Gems are Supported by Level 20 Elemental Proliferation", statOrder = { 330 }, level = 94, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2929101122, }, - ["SkillEffectDurationUniqueTwoHandMace5"] = { affix = "", "15% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, }, - ["ReducedSkillEffectDurationUniqueAmulet20"] = { affix = "", "(10-20)% reduced Skill Effect Duration", statOrder = { 1572 }, level = 63, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, }, - ["SkillEffectDurationUnique__1"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, }, - ["SkillEffectDurationUnique__2_"] = { affix = "", "(-20-20)% reduced Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, }, - ["SkillEffectDurationUnique__3"] = { affix = "", "30% increased Skill Effect Duration", statOrder = { 1572 }, level = 75, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, }, - ["SkillEffectDurationUnique__4"] = { affix = "", "(-13-13)% reduced Skill Effect Duration", statOrder = { 1572 }, level = 82, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, }, - ["SkillEffectDurationUniqueJewel44"] = { affix = "", "4% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, }, - ["LocalIncreaseSocketedMovementGemLevelUniqueBodyDex5"] = { affix = "", "+5 to Level of Socketed Movement Gems", statOrder = { 134 }, level = 1, group = "LocalIncreaseSocketedMovementGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 3852526385, }, - ["MovementVelocityPerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "5% increased Movement Speed per Frenzy Charge", statOrder = { 1484 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, }, - ["MovementVelocityPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1484 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, }, - ["MovementVelocityPerFrenzyChargeUniqueBodyDexInt3"] = { affix = "", "4% increased Movement Speed per Frenzy Charge", statOrder = { 1484 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, }, - ["MovementVelocityPerFrenzyChargeUniqueDescentOneHandSword1_"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1484 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, }, - ["EvasionRatingPerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "10% increased Evasion Rating per Frenzy Charge", statOrder = { 1365 }, level = 1, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 660404777, }, - ["MaximumFrenzyChargesUniqueBootsStrDex2_"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, }, - ["MaximumFrenzyChargesUniqueBodyStr3"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, }, - ["MaximumFrenzyChargesUniqueDescentOneHandSword1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, }, - ["MaximumFrenzyChargesUnique__1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, }, - ["ReducedMaximumFrenzyChargesUniqueCorruptedJewel16"] = { affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, }, - ["ReducedMaximumFrenzyChargesUnique__1"] = { affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, }, - ["ReducedMaximumFrenzyChargesUnique__2_"] = { affix = "", "-2 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, }, - ["WeaponPhysicalDamagePerStrength"] = { affix = "", "1% increased Weapon Damage per 10 Strength", statOrder = { 9896 }, level = 1, group = "WeaponDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1791136590, }, - ["AttackSpeedPerDexterity"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 4439 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 889691035, }, - ["IncreasedAreaOfEffectPerIntelligence"] = { affix = "", "16% increased Area of Effect for Attacks per 10 Intelligence", statOrder = { 4364 }, level = 1, group = "AttackAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 434750362, }, - ["FrenzyChargeDurationUniqueBootsStrDex2"] = { affix = "", "40% reduced Frenzy Charge Duration", statOrder = { 1791 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 3338298622, }, - ["FrenzyChargeDurationUnique__1"] = { affix = "", "20% reduced Frenzy Charge Duration", statOrder = { 1791 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 3338298622, }, - ["AdditionalTotemsUnique__1"] = { affix = "", "+1 to maximum number of Summoned Totems", statOrder = { 1903 }, level = 1, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 429867172, }, - ["TotemLifeUniqueBodyInt7"] = { affix = "", "(20-30)% increased Totem Life", statOrder = { 1459 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 686254215, }, - ["TotemLifeUnique__1"] = { affix = "", "(14-20)% increased Totem Life", statOrder = { 1459 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 686254215, }, - ["TotemLifeUnique__2_"] = { affix = "", "(20-30)% increased Totem Life", statOrder = { 1459 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 686254215, }, - ["DisplaySocketedGemGetsSpellTotemBodyInt7"] = { affix = "", "Socketed Gems are Supported by Level 20 Spell Totem", statOrder = { 328 }, level = 1, group = "DisplaySocketedGemGetsSpellTotemLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2962840349, }, - ["DisplaySocketedGemGetsIncreasedDurationGlovesInt4_"] = { affix = "", "Socketed Gems are Supported by Level 10 Increased Duration", statOrder = { 325 }, level = 1, group = "DisplaySocketedGemGetsIncreasedDurationLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2091466357, }, - ["RandomlyCursedWhenTotemsDieUniqueBodyInt7"] = { affix = "", "Inflicts a random Curse on you when your Totems die, ignoring Curse limit", statOrder = { 2219 }, level = 1, group = "RandomlyCursedWhenTotemsDie", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2918129907, }, - ["DisplaySocketedGemGetsAddedLightningDamageGlovesDexInt3"] = { affix = "", "Socketed Gems are Supported by Level 18 Added Lightning Damage", statOrder = { 331 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1647529598, }, - ["DisplaySocketedGemGetsAddedLightningDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Added Lightning Damage", statOrder = { 331 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1647529598, }, - ["ShockDurationUniqueGlovesDexInt3"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 7067 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1484471543, }, - ["ShockDurationUniqueStaff8"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 7067 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1484471543, }, - ["ShockDurationUnique__1"] = { affix = "", "10000% increased Shock Duration", statOrder = { 1540 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3668351662, }, - ["ShockDurationUnique__2"] = { affix = "", "(1-100)% increased Duration of Lightning Ailments", statOrder = { 7067 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1484471543, }, - ["IncreasedPhysicalDamageTakenUniqueHelmetStr3"] = { affix = "", "(40-50)% increased Physical Damage taken", statOrder = { 1891 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3853018505, }, - ["IncreasedPhysicalDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Physical Damage taken", statOrder = { 1891 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3853018505, }, - ["IncreasedPhysicalDamageTakenUniqueBootsDex8"] = { affix = "", "20% increased Physical Damage taken", statOrder = { 1891 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3853018505, }, - ["IncreasedLocalAttributeRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, }, - ["IncreasedLocalAttributeRequirementsUnique__1"] = { affix = "", "800% increased Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3639275092, }, - ["TemporalChainsOnHitUniqueGlovesInt3"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2188 }, level = 1, group = "TemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 4139135963, }, - ["MeleeWeaponCriticalStrikeMultiplierUniqueHelmetStr3"] = { affix = "", "+(100-125)% to Melee Critical Damage Bonus", statOrder = { 1330 }, level = 1, group = "MeleeWeaponCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, tradeHash = 4237442815, }, - ["DisablesOtherRingSlot"] = { affix = "", "Can't use other Rings", statOrder = { 1399 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 64726306, }, - ["GlobalItemAttributeRequirementsUniqueAmulet10"] = { affix = "", "Equipment and Skill Gems have 25% reduced Attribute Requirements", statOrder = { 2224 }, level = 20, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, }, - ["GlobalItemAttributeRequirementsUniqueAmulet19"] = { affix = "", "Equipment and Skill Gems have 10% increased Attribute Requirements", statOrder = { 2224 }, level = 45, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, }, - ["GlobalItemAttributeRequirementsUnique__1_"] = { affix = "", "Equipment and Skill Gems have 100% reduced Attribute Requirements", statOrder = { 2224 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, }, - ["GlobalItemAttributeRequirementsUnique__2"] = { affix = "", "Equipment and Skill Gems have 50% increased Attribute Requirements", statOrder = { 2224 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 752930724, }, - ["ReducedCurseEffectUniqueRing7"] = { affix = "", "50% reduced effect of Curses on you", statOrder = { 1835 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3407849389, }, - ["ReducedCurseEffectUniqueRing26"] = { affix = "", "60% reduced effect of Curses on you", statOrder = { 1835 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3407849389, }, - ["IncreasedCurseEffectUnique__1"] = { affix = "", "50% increased effect of Curses on you", statOrder = { 1835 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3407849389, }, - ["ReducedCurseEffectUnique__1"] = { affix = "", "20% reduced effect of Curses on you", statOrder = { 1835 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3407849389, }, - ["ManaGainPerTargetUniqueRing7"] = { affix = "", "Gain 30 Mana per Enemy Hit with Attacks", statOrder = { 1433 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 820939409, }, - ["ManaGainPerTargetUniqueTwoHandAxe9"] = { affix = "", "Grants 30 Mana per Enemy Hit", statOrder = { 1434 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 640052854, }, - ["ManaGainPerTargetUnique__1"] = { affix = "", "Grants (2-3) Mana per Enemy Hit", statOrder = { 1434 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 640052854, }, - ["ManaGainPerTargetUnique__2"] = { affix = "", "Grants 2 Mana per Enemy Hit", statOrder = { 1434 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 640052854, }, - ["DisplaySocketedGemGetsChancetoFleeUniqueShieldDex4"] = { affix = "", "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 353 }, level = 1, group = "DisplaySocketedGemGetsChancetoFleeLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 952060721, }, - ["DisplaySocketedGemGetsChanceToFleeUniqueOneHandAxe3"] = { affix = "", "Socketed Gems are supported by Level 2 Chance to Flee", statOrder = { 353 }, level = 1, group = "DisplaySocketedGemGetsChancetoFleeLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 952060721, }, - ["EnemyCriticalStrikeMultiplierUniqueRing8"] = { affix = "", "Hits against you have 50% reduced Critical Damage Bonus", statOrder = { 950 }, level = 1, group = "EnemyCriticalMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3855016469, }, - ["PlayerLightAlternateColourUniqueRing9"] = { affix = "", "Emits a golden glow", statOrder = { 2226 }, level = 1, group = "PlayerLightAlternateColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1252481812, }, - ["ChaosResistanceOnLowLifeUniqueRing9"] = { affix = "", "+(20-25)% to Chaos Resistance when on Low Life", statOrder = { 2227 }, level = 1, group = "ChaosResistanceOnLowLife", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 2366940416, }, - ["EnemyHitsRollLowDamageUniqueRing9"] = { affix = "", "Enemy hits on you roll low Damage", statOrder = { 2225 }, level = 1, group = "EnemyHitsRollLowDamage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2482008875, }, - ["DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are Supported by Level 30 Faster Attacks", statOrder = { 333 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 928701213, }, - ["DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4b"] = { affix = "", "Socketed Gems are Supported by Level 12 Faster Attacks", statOrder = { 333 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 928701213, }, - ["DisplaySocketedGemGetsFasterAttackUniqueRing37"] = { affix = "", "Socketed Gems are Supported by Level 13 Faster Attacks", statOrder = { 333 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 928701213, }, - ["DisplaySocketedGemsGetsFasterAttackUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Faster Attacks", statOrder = { 333 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 928701213, }, - ["DisplaySocketedGemGetsMeleePhysicalDamageUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are Supported by Level 30 Melee Physical Damage", statOrder = { 332 }, level = 1, group = "DisplaySocketedGemGetsMeleePhysicalDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2985291457, }, - ["ChanceToGainEnduranceChargeOnBlockUniqueHelmetStrDex4"] = { affix = "", "20% chance to gain an Endurance Charge when you Block", statOrder = { 1788 }, level = 1, group = "ChanceToGainEnduranceChargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "endurance_charge" }, tradeHash = 417188801, }, - ["ChanceToGainEnduranceChargeOnBlockUniqueDescentShield1"] = { affix = "", "50% chance to gain an Endurance Charge when you Block", statOrder = { 1788 }, level = 1, group = "ChanceToGainEnduranceChargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "endurance_charge" }, tradeHash = 417188801, }, - ["EnemyExtraDamageRollsOnLowLifeUniqueRing9"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Low Life", statOrder = { 2228 }, level = 1, group = "EnemyExtraDamageRollsOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3753748365, }, - ["EnemyExtraDamageRollsOnFullLifeUnique__1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 5983 }, level = 68, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3629143471, }, - ["EnemyExtraDamageRollsOnFullLifeUnique__2"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 5983 }, level = 1, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3629143471, }, - ["EnemyExtraDamageRollsWithLightningDamageUnique__1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Lucky", statOrder = { 5933 }, level = 37, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 4224965099, }, - ["ItemDropsOnDeathUniqueAmulet12"] = { affix = "", "Item drops on death", statOrder = { 2230 }, level = 1, group = "ItemDropsOnDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2524282232, }, - ["LightningDamageOnChargeExpiryUniqueAmulet12"] = { affix = "", "Deal 1 to 1000 Lightning Damage to nearby Enemies when you lose a Power, Frenzy, or Endurance Charge", statOrder = { 2229 }, level = 1, group = "LightningDamageOnChargeExpiry", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2528932950, }, - ["AttackerTakesChaosDamageUniqueBodyStrInt4"] = { affix = "", "Reflects 30 Chaos Damage to Melee Attackers", statOrder = { 1863 }, level = 1, group = "AttackerTakesChaosDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 189451991, }, - ["IncreasedMaximumPowerChargesUniqueWand3"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, - ["IncreasedMaximumPowerChargesUniqueStaff7"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, - ["IncreasedMaximumPowerChargesUnique__2"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, - ["IncreasedMaximumPowerChargesUnique__1"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, - ["IncreasedMaximumPowerChargesUnique__3"] = { affix = "", "+2 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, - ["IncreasedMaximumPowerChargesUnique__4"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, - ["UniqueMaximumPowerChargesWand_1"] = { affix = "", "+(-1-1) to Maximum Power Charges", statOrder = { 1496 }, level = 82, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, - ["ReducedMaximumPowerChargesUniqueCorruptedJewel18"] = { affix = "", "-1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, - ["ReducedMaximumPowerChargesUnique__1"] = { affix = "", "-1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, - ["IncreasedPowerChargeDurationUniqueWand3"] = { affix = "", "15% increased Power Charge Duration", statOrder = { 1806 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3872306017, }, - ["PowerChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Power Charge Duration", statOrder = { 1806 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3872306017, }, - ["IncreasedPowerChargeDurationUnique__1"] = { affix = "", "(80-100)% increased Power Charge Duration", statOrder = { 1806 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3872306017, }, - ["IncreasedSpellDamagePerPowerChargeUniqueWand3"] = { affix = "", "25% increased Spell Damage per Power Charge", statOrder = { 1804 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 827329571, }, - ["IncreasedSpellDamagePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Spell Damage per Power Charge", statOrder = { 1804 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 827329571, }, - ["IncreasedSpellDamagePerPowerChargeUnique__1"] = { affix = "", "(12-16)% increased Spell Damage per Power Charge", statOrder = { 1804 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 827329571, }, - ["ConsecratedGroundOnBlockUniqueBodyInt8"] = { affix = "", "100% chance to create Consecrated Ground when you Block", statOrder = { 2245 }, level = 1, group = "ConsecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 1818006464, }, - ["DesecratedGroundOnBlockUniqueBodyStrInt4"] = { affix = "", "100% chance to create Desecrated Ground when you Block", statOrder = { 2246 }, level = 1, group = "DesecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2969730223, }, - ["DisableChestSlot"] = { affix = "", "Can't use Body Armour", statOrder = { 2254 }, level = 1, group = "DisableChestSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4007482102, }, - ["LocalIncreaseSocketedElementalGemUniqueGlovesInt6"] = { affix = "", "+1 to Level of Socketed Elemental Gems", statOrder = { 159 }, level = 1, group = "LocalIncreaseSocketedElementalGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "gem" }, tradeHash = 3571342795, }, - ["LocalIncreaseSocketedElementalGemUnique___1"] = { affix = "", "+2 to Level of Socketed Elemental Gems", statOrder = { 159 }, level = 50, group = "LocalIncreaseSocketedElementalGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "gem" }, tradeHash = 3571342795, }, - ["EnergyShieldGainedFromEnemyDeathUniqueGlovesInt6"] = { affix = "", "Gain (15-20) Energy Shield per enemy killed", statOrder = { 2243 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2528955616, }, - ["EnergyShieldGainedFromEnemyDeathUniqueHelmetDexInt3"] = { affix = "", "Gain (10-15) Energy Shield per enemy killed", statOrder = { 2243 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2528955616, }, - ["EnergyShieldGainedFromEnemyDeathUnique__1"] = { affix = "", "Gain (15-25) Energy Shield per enemy killed", statOrder = { 2243 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2528955616, }, - ["IncreasedClawDamageOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Claw Physical Damage when on Low Life", statOrder = { 2255 }, level = 1, group = "IncreasedClawDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1081444608, }, - ["IncreasedClawDamageOnLowLifeUnique__1__"] = { affix = "", "200% increased Damage with Claws while on Low Life", statOrder = { 5285 }, level = 1, group = "IncreasedClawAllDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1629782265, }, - ["IncreasedAccuracyWhenOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Accuracy Rating when on Low Life", statOrder = { 2256 }, level = 1, group = "IncreasedAccuracyWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 347697569, }, - ["IncreasedAttackSpeedWhenOnLowLifeUniqueClaw4"] = { affix = "", "25% increased Attack Speed when on Low Life", statOrder = { 1114 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1921572790, }, - ["IncreasedAttackSpeedWhenOnLowLifeUnique__1"] = { affix = "", "25% increased Attack Speed when on Low Life", statOrder = { 1114 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1921572790, }, - ["IncreasedAttackSpeedWhenOnLowLifeUniqueDescentHelmet1"] = { affix = "", "30% increased Attack Speed when on Low Life", statOrder = { 1114 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1921572790, }, - ["ReducedProjectileDamageUniqueAmulet12"] = { affix = "", "40% reduced Projectile Damage", statOrder = { 1663 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1839076647, }, - ["ReducedProjectileDamageTakenUniqueAmulet12"] = { affix = "", "20% reduced Damage taken from Projectile Hits", statOrder = { 2405 }, level = 1, group = "ProjectileDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1425651005, }, - ["NoItemRarity"] = { affix = "", "You cannot increase the Rarity of Items found", statOrder = { 2217 }, level = 1, group = "NoItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 993866933, }, - ["NoItemQuantity"] = { affix = "", "You cannot increase the Quantity of Items found", statOrder = { 2218 }, level = 1, group = "NoItemQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3778266957, }, - ["CannotDieToElementalReflect"] = { affix = "", "You cannot be killed by reflected Elemental Damage", statOrder = { 2338 }, level = 1, group = "CannotDieToElementalReflect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2776725787, }, - ["MeleeAttacksUsableWithoutManaUniqueOneHandAxe1"] = { affix = "", "Insufficient Mana doesn't prevent your Melee Attacks", statOrder = { 2346 }, level = 1, group = "MeleeAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 1852317988, }, - ["MeleeAttacksUsableWithoutManaUnique__1"] = { affix = "", "Insufficient Mana doesn't prevent your Melee Attacks", statOrder = { 2346 }, level = 1, group = "MeleeAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 1852317988, }, - ["HybridStrDex"] = { affix = "", "+(16-24) to Strength and Dexterity", statOrder = { 1075 }, level = 20, group = "HybridStrDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 538848803, }, - ["HybridStrInt"] = { affix = "", "+(16-24) to Strength and Intelligence", statOrder = { 1076 }, level = 20, group = "HybridStrInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1535626285, }, - ["HybridDexInt"] = { affix = "", "+(16-24) to Dexterity and Intelligence", statOrder = { 1077 }, level = 20, group = "HybridDexInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 2300185227, }, - ["HybridStrDexUnique__1"] = { affix = "", "+(30-50) to Strength and Dexterity", statOrder = { 1075 }, level = 1, group = "HybridStrDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 538848803, }, - ["IncreasedMeleeWeaponAndUnarmedRangeUniqueAmulet13"] = { affix = "", "+2 to Melee Strike Range", statOrder = { 2203 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2264295449, }, - ["IncreasedMeleeWeaponAndUnarmedRangeUniqueJewel42"] = { affix = "", "+2 to Melee Strike Range", statOrder = { 2203 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2264295449, }, - ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe5"] = { affix = "", "+2 to Weapon Range", statOrder = { 2401 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, }, - ["LocalIncreasedMeleeWeaponRangeUniqueDescentStaff1"] = { affix = "", "+2 to Weapon Range", statOrder = { 2401 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, }, - ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe7_"] = { affix = "", "+10 to Weapon Range", statOrder = { 2401 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, }, - ["LocalIncreasedMeleeWeaponRangeUnique__1"] = { affix = "", "+2 to Weapon Range", statOrder = { 2401 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, }, - ["LocalIncreasedMeleeWeaponRangeUnique___2"] = { affix = "", "+2 to Weapon Range", statOrder = { 2401 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 350598685, }, - ["LocalIncreasedMeleeWeaponRangeEssence1"] = { affix = "", "+2 to Weapon Range", statOrder = { 2401 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 350598685, }, - ["EnduranceChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Endurance Charge Duration", statOrder = { 1789 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1170174456, }, - ["EnduranceChargeDurationUniqueBodyStrInt4"] = { affix = "", "30% increased Endurance Charge Duration", statOrder = { 1789 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1170174456, }, - ["FrenzyChargeOnKillChanceUniqueAmulet15"] = { affix = "", "10% chance to gain a Frenzy Charge on kill", statOrder = { 2295 }, level = 20, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, }, - ["FrenzyChargeOnKillChanceUniqueBootsDex4"] = { affix = "", "(20-30)% chance to gain a Frenzy Charge on kill", statOrder = { 2295 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, }, - ["FrenzyChargeOnKillChanceUniqueDescentOneHandSword1"] = { affix = "", "33% chance to gain a Frenzy Charge on kill", statOrder = { 2295 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, }, - ["FrenzyChargeOnKillChanceUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge on kill", statOrder = { 2295 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, }, - ["FrenzyChargeOnKillChanceUnique__2"] = { affix = "", "25% chance to gain a Frenzy Charge on kill", statOrder = { 2295 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, }, - ["FrenzyChargeOnKillChanceProphecy"] = { affix = "", "30% chance to gain a Frenzy Charge on kill", statOrder = { 2295 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, }, - ["PowerChargeOnKillChanceUniqueAmulet15"] = { affix = "", "10% chance to gain a Power Charge on kill", statOrder = { 2297 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, }, - ["PowerChargeOnKillChanceUniqueDescentDagger1"] = { affix = "", "15% chance to gain a Power Charge on kill", statOrder = { 2297 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, }, - ["PowerChargeOnKillChanceUniqueUniqueShieldInt3"] = { affix = "", "10% chance to gain a Power Charge on kill", statOrder = { 2297 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, }, - ["PowerChargeOnKillChanceUnique__1"] = { affix = "", "(25-35)% chance to gain a Power Charge on kill", statOrder = { 2297 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, }, - ["PowerChargeOnKillChanceProphecy_"] = { affix = "", "30% chance to gain a Power Charge on kill", statOrder = { 2297 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, }, - ["EnduranceChargeOnKillChanceProphecy"] = { affix = "", "30% chance to gain an Endurance Charge on kill", statOrder = { 2293 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1054322244, }, - ["EnduranceChargeOnPowerChargeExpiryUniqueAmulet14"] = { affix = "", "Gain an Endurance Charge when you lose a Power Charge", statOrder = { 2300 }, level = 1, group = "EnduranceChargeOnPowerChargeExpiry", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1791875585, }, - ["ChillAndFreezeBasedOffEnergyShieldBelt5Unique"] = { affix = "", "Chill Effect and Freeze Duration on you are based on 100% of Energy Shield", statOrder = { 2262 }, level = 70, group = "ChillAndFreezeDurationBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1194648995, }, - ["MeleeDamageOnFullLifeUniqueAmulet13"] = { affix = "", "60% increased Melee Damage when on Full Life", statOrder = { 2302 }, level = 1, group = "MeleeDamageOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3579807004, }, - ["ConsecrateOnCritChanceToCreateUniqueRing11"] = { affix = "", "Creates Consecrated Ground on Critical Hit", statOrder = { 2303 }, level = 1, group = "ConsecrateOnCritChanceToCreate", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3195625581, }, - ["ProjectileSpeedPerFrenzyChargeUniqueAmulet15"] = { affix = "", "5% increased Projectile Speed per Frenzy Charge", statOrder = { 2304 }, level = 1, group = "ProjectileSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3159161267, }, - ["ProjectileDamagePerPowerChargeUniqueAmulet15"] = { affix = "", "5% increased Projectile Damage per Power Charge", statOrder = { 2305 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3816512110, }, - ["RightRingSlotNoManaRegenUniqueRing13"] = { affix = "", "Right ring slot: You cannot Regenerate Mana", statOrder = { 2312 }, level = 38, group = "RightRingSlotNoManaRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 783864527, }, - ["RightRingSlotEnergyShieldRegenUniqueRing13"] = { affix = "", "Right ring slot: Regenerate 6% of maximum Energy Shield per second", statOrder = { 2313 }, level = 38, group = "RightRingSlotEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3676958605, }, - ["LeftRingSlotManaRegenUniqueRing13"] = { affix = "", "Left ring slot: 100% increased Mana Regeneration Rate", statOrder = { 2323 }, level = 1, group = "LeftRingSlotManaRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 195090426, }, - ["LeftRingSlotNoEnergyShieldRegenUniqueRing13"] = { affix = "", "Left ring slot: You cannot Recharge or Regenerate Energy Shield", statOrder = { 2316 }, level = 1, group = "LeftRingSlotNoEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4263540840, }, - ["EnergyShieldRegenerationUnique__1"] = { affix = "", "Regenerate 1% of maximum Energy Shield per second", statOrder = { 2310 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3594640492, }, - ["EnergyShieldRegenerationUnique__2"] = { affix = "", "Regenerate 1% of maximum Energy Shield per second", statOrder = { 2310 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3594640492, }, - ["EnergyShieldRegenerationUnique__3"] = { affix = "", "Regenerate 2% of maximum Energy Shield per second", statOrder = { 2310 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3594640492, }, - ["FlatEnergyShieldRegenerationUnique__1"] = { affix = "", "Regenerate (80-100) Energy Shield per second", statOrder = { 2309 }, level = 1, group = "FlatEnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1330109706, }, - ["KilledMonsterItemRarityOnCritUniqueRing11"] = { affix = "", "(40-50)% increased Rarity of Items Dropped by Enemies killed with a Critical Hit", statOrder = { 2306 }, level = 1, group = "KilledMonsterItemRarityOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 21824003, }, - ["OnslaughtBuffOnKillUniqueRing12"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2307 }, level = 58, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1195849808, }, - ["OnslaughtBuffOnKillUniqueDagger12"] = { affix = "", "You gain Onslaught for 3 seconds on Kill", statOrder = { 2307 }, level = 1, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1195849808, }, - ["AttackAndCastSpeedPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "4% reduced Attack and Cast Speed per Frenzy Charge", statOrder = { 1708 }, level = 1, group = "AttackAndCastSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 269590092, }, - ["LifeRegenerationPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "Regenerate 0.8% of maximum Life per second per Frenzy Charge", statOrder = { 2292 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2828673491, }, - ["EnemiesOnLowLifeTakeMoreDamagePerFrenzyChargeUniqueBootsDex4"] = { affix = "", "(20-30)% increased Damage per Frenzy Charge with Hits against Enemies on Low Life", statOrder = { 2465 }, level = 1, group = "EnemiesOnLowLifeTakeMoreDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1696792323, }, - ["AvoidIgniteUniqueOneHandSword4"] = { affix = "", "Cannot be Ignited", statOrder = { 1522 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 331731406, }, - ["IncreasedMovementVelictyWhileCursedUniqueOneHandSword4"] = { affix = "", "30% increased Movement Speed while Cursed", statOrder = { 2291 }, level = 1, group = "MovementVelocityWhileCursed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3988943320, }, - ["ShieldBlockChanceUniqueAmulet16"] = { affix = "", "+10% Chance to Block Attack Damage while holding a Shield", statOrder = { 1056 }, level = 1, group = "GlobalShieldBlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 4061558269, }, - ["ReflectDamageToAttackersOnBlockUniqueAmulet16"] = { affix = "", "Reflects 240 to 300 Physical Damage to Attackers on Block", statOrder = { 2257 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHash = 1445684883, }, - ["ReflectDamageToAttackersOnBlockUniqueDescentStaff1"] = { affix = "", "Reflects 8 to 14 Physical Damage to Attackers on Block", statOrder = { 2257 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHash = 1445684883, }, - ["ReflectDamageToAttackersOnBlockUniqueDescentShield1"] = { affix = "", "Reflects 4 to 8 Physical Damage to Attackers on Block", statOrder = { 2257 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHash = 1445684883, }, - ["ReflectDamageToAttackersOnBlockUniqueShieldDex5"] = { affix = "", "Reflects 1000 to 10000 Physical Damage to Attackers on Block", statOrder = { 2257 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHash = 1445684883, }, - ["ReflectDamageToAttackersOnBlockUniqueStaff9"] = { affix = "", "Reflects (22-44) Physical Damage to Attackers on Block", statOrder = { 2257 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, tradeHash = 1445684883, }, - ["GainLifeOnBlockUniqueAmulet16"] = { affix = "", "(34-48) Life gained when you Block", statOrder = { 1445 }, level = 1, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 762600725, }, - ["GainManaOnBlockUniqueAmulet16"] = { affix = "", "(18-24) Mana gained when you Block", statOrder = { 1446 }, level = 57, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHash = 2122183138, }, - ["GainManaOnBlockUnique__1"] = { affix = "", "(30-50) Mana gained when you Block", statOrder = { 1446 }, level = 1, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, tradeHash = 2122183138, }, - ["ZombieLifeUniqueSceptre3"] = { affix = "", "Raised Zombies have +5000 to maximum Life", statOrder = { 2260 }, level = 1, group = "ZombieLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 4116579804, }, - ["ZombieDamageUniqueSceptre3"] = { affix = "", "Raised Zombies deal (100-125)% more Physical Damage", statOrder = { 10005 }, level = 1, group = "ZombieDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHash = 568070507, }, - ["ZombieChaosElementalResistsUniqueSceptre3"] = { affix = "", "Raised Zombies have +(25-30)% to all Resistances", statOrder = { 2261 }, level = 1, group = "ZombieChaosElementalResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance", "minion" }, tradeHash = 3150000576, }, - ["ZombieSizeUniqueSceptre3_"] = { affix = "", "25% increased Raised Zombie Size", statOrder = { 2341 }, level = 1, group = "ZombieSize", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3563667308, }, - ["ZombiesExplodeEnemiesOnHitUniqueSceptre3"] = { affix = "", "Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage", statOrder = { 2343 }, level = 1, group = "ZombiesExplodeEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, tradeHash = 2857427872, }, - ["NumberOfZombiesSummonedPercentageUniqueSceptre3"] = { affix = "", "50% reduced maximum number of Raised Zombies", statOrder = { 2259 }, level = 1, group = "NumberOfZombiesSummonedPercentage", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 4041805509, }, - ["IncreasedIntelligencePerUniqueUniqueRing14"] = { affix = "", "2% increased Intelligence for each Unique Item Equipped", statOrder = { 2263 }, level = 1, group = "IncreasedIntelligencePerUnique", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4207939995, }, - ["IncreasedChanceForMonstersToDropWisdomScrollsUniqueRing14"] = { affix = "", "3% chance for Slain monsters to drop an additional Scroll of Wisdom", statOrder = { 2265 }, level = 1, group = "IncreasedChanceForMonstersToDropWisdomScrolls", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2920230984, }, - ["ConvertColdToFireUniqueRing15"] = { affix = "", "40% of Cold Damage Converted to Fire Damage", statOrder = { 1641 }, level = 1, group = "ConvertColdToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, tradeHash = 268659529, }, - ["IgnitedEnemiesTurnToAshUniqueRing15"] = { affix = "", "Ignited enemies killed by your Hits are destroyed", statOrder = { 2264 }, level = 1, group = "IgnitedEnemiesTurnToAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3173052379, }, - ["UndyingRageOnCritUniqueTwoHandMace6"] = { affix = "", "You gain Onslaught for 4 seconds on Critical Hit", statOrder = { 2340 }, level = 1, group = "UndyingRageOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1055188639, }, - ["NoBonusesFromCriticalStrikes"] = { affix = "", "Your Critical Hits do not deal extra Damage", statOrder = { 1340 }, level = 1, group = "NoBonusesFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 4058681894, }, - ["FlaskItemRarityUniqueFlask1"] = { affix = "", "(20-30)% increased Rarity of Items found during Effect", statOrder = { 777 }, level = 1, group = "FlaskItemRarity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1740200922, }, - ["FlaskItemQuantityUniqueFlask1"] = { affix = "", "(8-12)% increased Quantity of Items found during Effect", statOrder = { 776 }, level = 1, group = "FlaskItemQuantity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3736953565, }, - ["FlaskLightRadiusUniqueFlask1"] = { affix = "", "25% increased Light Radius during Effect", statOrder = { 779 }, level = 1, group = "FlaskLightRadius", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2745936267, }, - ["FlaskMaximumElementalResistancesUniqueFlask1"] = { affix = "", "+4% to all maximum Elemental Resistances during Effect", statOrder = { 766 }, level = 1, group = "FlaskMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "resistance" }, tradeHash = 4026156644, }, - ["FlaskElementalResistancesUniqueFlask1_"] = { affix = "", "+50% to Elemental Resistances during Effect", statOrder = { 782 }, level = 1, group = "FlaskElementalResistances", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "resistance" }, tradeHash = 3110554274, }, - ["SpellDamageModifiersApplyToAttackDamageUniqueHelmetInt7"] = { affix = "", "Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value", statOrder = { 2349 }, level = 1, group = "SpellDamageModifiersApplyToAttackDamage150Percent", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 185598681, }, - ["ConvertFireToChaosUniqueBodyInt4Updated"] = { affix = "", "15% of Fire Damage Converted to Chaos Damage", statOrder = { 1644 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHash = 147385515, }, - ["ConvertFireToChaosUniqueDagger10Updated"] = { affix = "", "30% of Fire Damage Converted to Chaos Damage", statOrder = { 1644 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHash = 147385515, }, - ["MovementVelicityPerEvasionUniqueBodyDex6"] = { affix = "", "1% increased Movement Speed per 600 Evasion Rating, up to 75%", statOrder = { 2337 }, level = 1, group = "MovementVelicityPerEvasion", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2591020064, }, - ["PhysicalDamageCanChillUniqueOneHandAxe1"] = { affix = "", "Physical Damage from Hits also Contributes to Chill Magnitude", statOrder = { 2530 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2227042420, }, - ["PhysicalDamageCanChillUniqueDescentOneHandAxe1"] = { affix = "", "Physical Damage from Hits also Contributes to Chill Magnitude", statOrder = { 2530 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2227042420, }, - ["ItemQuantityWhenFrozenUniqueBow9"] = { affix = "", "15% increased Quantity of Items Dropped by Slain Frozen Enemies", statOrder = { 2357 }, level = 1, group = "ItemQuantityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3304763863, }, - ["ItemRarityWhenShockedUniqueBow9"] = { affix = "", "30% increased Rarity of Items Dropped by Slain Shocked Enemies", statOrder = { 2359 }, level = 1, group = "ItemRarityWhenShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3188291252, }, - ["LocalChaosDamageUniqueOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, - ["LocalChaosDamageUniqueTwoHandSword7"] = { affix = "", "Adds (60-68) to (90-102) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, - ["LocalAddedChaosDamageUnique___1"] = { affix = "", "Adds 1 to 59 Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, - ["LocalAddedChaosDamageUnique__2"] = { affix = "", "Adds (53-67) to (71-89) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, - ["LocalAddedChaosDamageUnique__3"] = { affix = "", "Adds (600-650) to (750-800) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, - ["ChaosDegenerationAuraPlayersUniqueBodyStr3"] = { affix = "", "450 Chaos Damage taken per second", statOrder = { 1620 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2456773909, }, - ["ChaosDegenerationAuraNonPlayersUniqueBodyStr3"] = { affix = "", "250 Chaos Damage taken per second", statOrder = { 1620 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2456773909, }, - ["ChaosDegenerationAuraNonPlayersUnique__1"] = { affix = "", "50 Chaos Damage taken per second", statOrder = { 1620 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2456773909, }, - ["ChaosDegenerationAuraPlayersUnique__1"] = { affix = "", "50 Chaos Damage taken per second", statOrder = { 1620 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2456773909, }, - ["UniqueWingsOfEntropyCountsAsDualWielding"] = { affix = "", "Counts as Dual Wielding", statOrder = { 2361 }, level = 1, group = "CountsAsDualWielding", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2797075304, }, - ["ChaosDegenerationOnKillUniqueBodyStr3"] = { affix = "", "You take 450 Chaos Damage per second for 3 seconds on Kill", statOrder = { 2356 }, level = 1, group = "ChaosDegenerationOnKill", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2785780853, }, - ["ItemBloodFootstepsUniqueBodyStr3"] = { affix = "", "Gore Footprints", statOrder = { 10099 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHash = 4237211014, }, - ["DisplayChaosDegenerationAuraUniqueBodyStr3"] = { affix = "", "Deals 450 Chaos Damage per second to nearby Enemies", statOrder = { 2355 }, level = 1, group = "DisplayChaosDegenerationAura", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2280313599, }, - ["DisplayChaosDegenerationAuraUnique__1"] = { affix = "", "Deals 50 Chaos Damage per second to nearby Enemies", statOrder = { 2355 }, level = 1, group = "DisplayChaosDegenerationAura", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 2280313599, }, - ["ItemBloodFootstepsUniqueBootsDex4"] = { affix = "", "Gore Footprints", statOrder = { 10099 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHash = 4237211014, }, - ["ItemSilverFootstepsUniqueHelmetStrDex2"] = { affix = "", "Mercury Footprints", statOrder = { 10104 }, level = 1, group = "ItemSilverFootsteps", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3970396418, }, - ["ItemBloodFootstepsUnique__1"] = { affix = "", "Gore Footprints", statOrder = { 10099 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHash = 4237211014, }, - ["MaximumBlockChanceUniqueAmulet16"] = { affix = "", "+3% to maximum Block chance", statOrder = { 1659 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 480796730, }, - ["MaximumBlockChanceUnique__1"] = { affix = "", "-10% to maximum Block chance", statOrder = { 1659 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 480796730, }, - ["FasterBurnFromAttacksUniqueOneHandSword4"] = { affix = "", "Ignites you inflict deal Damage 50% faster", statOrder = { 2236 }, level = 1, group = "FasterBurnFromAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHash = 2443492284, }, - ["CannotLeechMana"] = { affix = "", "Cannot Leech Mana", statOrder = { 2240 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1759630226, }, - ["CannotLeechManaUnique__1_"] = { affix = "", "Cannot Leech Mana", statOrder = { 2240 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1759630226, }, - ["CannotLeechOnLowLife"] = { affix = "", "Cannot Leech when on Low Life", statOrder = { 2242 }, level = 1, group = "CannotLeechOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3279535558, }, - ["MeleeDamageIncreaseUniqueHelmetStrDex3"] = { affix = "", "20% increased Melee Damage", statOrder = { 1124 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1002362373, }, - ["MeleeDamageUniqueAmulet12"] = { affix = "", "(30-40)% increased Melee Damage", statOrder = { 1124 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1002362373, }, - ["MeleeDamageImplicitGloves1"] = { affix = "", "(16-20)% increased Melee Damage", statOrder = { 1124 }, level = 78, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1002362373, }, - ["MeleeDamageUnique__1"] = { affix = "", "(20-25)% increased Melee Damage", statOrder = { 1124 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1002362373, }, - ["MeleeDamageUnique__2"] = { affix = "", "(25-40)% increased Melee Damage", statOrder = { 1124 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1002362373, }, - ["DamageAuraUniqueHelmetDexInt2"] = { affix = "", "50% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2154246560, }, - ["IronReflexes"] = { affix = "", "Iron Reflexes", statOrder = { 10059 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 326965591, }, - ["DisplayDamageAuraUniqueHelmetDexInt2"] = { affix = "", "You and nearby allies gain 50% increased Damage", statOrder = { 2363 }, level = 1, group = "DisplayDamageAura", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 637766438, }, - ["MainHandAddedFireDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (75-100) to (165-200) Fire Damage in Main Hand", statOrder = { 1208 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 169657426, }, - ["MainHandAddedFireDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Fire Damage in Main Hand", statOrder = { 1208 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 169657426, }, - ["OffHandAddedChaosDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (75-100) to (165-200) Chaos Damage in Off Hand", statOrder = { 1228 }, level = 1, group = "OffHandAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 3758293500, }, - ["OffHandAddedColdDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Cold Damage in Off Hand", statOrder = { 1214 }, level = 1, group = "OffHandAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2109066258, }, - ["ChaosDamageCanShockUniqueBow10"] = { affix = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2521 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHash = 2418601510, }, - ["ChaosDamageCanShockUnique__1"] = { affix = "", "Chaos Damage from Hits also Contributes to Shock Chance", statOrder = { 2521 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, tradeHash = 2418601510, }, - ["ConvertLightningDamageToChaosUniqueBow10"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1640 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHash = 2109189637, }, - ["ConvertLightningDamageToChaosUniqueBow10Updated"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1640 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHash = 2109189637, }, - ["MaximumShockOverrideUniqueBow10"] = { affix = "", "+40% to Maximum Effect of Shock", statOrder = { 9812 }, level = 1, group = "MaximumShockOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 4007740198, }, - ["AttacksShockAsIfDealingMoreDamageUniqueBow10"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 7266 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHash = 1386792919, }, - ["AttacksShockAsIfDealingMoreDamageUnique__2"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 7266 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, tradeHash = 1386792919, }, - ["EnemiesExplodeOnDeathUniqueTwoHandMace7"] = { affix = "", "Enemies Killed with Attack or Spell Hits Explode, dealing 10% of their Life as Fire Damage", statOrder = { 2367 }, level = 1, group = "EnemiesExplodeOnDeath", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3457687358, }, - ["DisplaySocketedGemGetsReducedManaCostUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Inspiration", statOrder = { 349 }, level = 1, group = "DisplaySocketedGemGetsReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1866911844, }, - ["DisplaySocketedGemsGetFasterCastUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 354 }, level = 1, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2169938251, }, - ["SupportedByFasterCastUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Faster Casting", statOrder = { 354 }, level = 1, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2169938251, }, - ["FlaskRemovePercentageOfEnergyShieldUniqueFlask2"] = { affix = "", "Removes 80% of your maximum Energy Shield on use", statOrder = { 633 }, level = 1, group = "FlaskRemovePercentageOfEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "flask", "defences" }, tradeHash = 2917449574, }, - ["FlaskTakeChaosDamagePercentageOfLifeUniqueFlask2"] = { affix = "", "You take 50% of your maximum Life as Chaos Damage on use", statOrder = { 634 }, level = 1, group = "FlaskTakeChaosDamagePercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, tradeHash = 2301696196, }, - ["FlaskGainFrenzyChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Frenzy Charge on use", statOrder = { 646 }, level = 1, group = "FlaskGainFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask", "frenzy_charge" }, tradeHash = 3230795453, }, - ["FlaskGainPowerChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Power Charge on use", statOrder = { 647 }, level = 1, group = "FlaskGainPowerCharge", weightKey = { }, weightVal = { }, modTags = { "flask", "power_charge" }, tradeHash = 2697049014, }, - ["FlaskGainEnduranceChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Endurance Charge on use", statOrder = { 645 }, level = 1, group = "FlaskGainEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "flask" }, tradeHash = 3986030307, }, - ["FlaskGainEnduranceChargeUnique__1_"] = { affix = "", "Gain 1 Endurance Charge on use", statOrder = { 645 }, level = 1, group = "FlaskGainEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "flask" }, tradeHash = 3986030307, }, - ["CanOnlyDealDamageWithThisWeapon"] = { affix = "", "You can only deal Damage with this Weapon or Ignite", statOrder = { 2374 }, level = 1, group = "CanOnlyDealDamageWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3128318472, }, - ["LocalFlaskChargesUsedUniqueFlask2"] = { affix = "", "(250-300)% increased Charges per use", statOrder = { 1006 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3139816101, }, - ["LocalFlaskChargesUsedUniqueFlask9"] = { affix = "", "(70-100)% increased Charges per use", statOrder = { 1006 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3139816101, }, - ["LocalFlaskChargesUsedUnique__2"] = { affix = "", "(10-20)% reduced Charges per use", statOrder = { 1006 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3139816101, }, - ["LeftRingSlotElementalReflectDamageTakenUniqueRing10"] = { affix = "", "Left ring slot: You and your Minions take 80% reduced Reflected Elemental Damage", statOrder = { 2372 }, level = 57, group = "LeftRingSlotElementalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 2422197812, }, - ["RightRingSlotPhysicalReflectDamageTakenUniqueRing10"] = { affix = "", "Right ring slot: You and your Minions take 80% reduced Reflected Physical Damage", statOrder = { 2373 }, level = 1, group = "RightRingSlotPhysicalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 1357244124, }, - ["IncreasedEnemyFireResistanceUniqueHelmetInt5"] = { affix = "", "Damage Penetrates 25% Fire Resistance", statOrder = { 2613 }, level = 1, group = "EnemyFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, }, - ["UsingFlasksDispelsBurningUniqueHelmetInt5"] = { affix = "", "Removes Burning when you use a Flask", statOrder = { 2411 }, level = 1, group = "UsingFlasksDispelsBurning", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, tradeHash = 1305605911, }, - ["DamageRemovedFromManaBeforeLifeTestMod"] = { affix = "", "30% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 458438597, }, - ["ChanceToShockUniqueBow10"] = { affix = "", "10% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, }, - ["ChanceToShockUniqueOneHandSword7"] = { affix = "", "(15-20)% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, }, - ["ChanceToShockUniqueDescentTwoHandSword1"] = { affix = "", "9% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, }, - ["ChanceToShockUniqueStaff8"] = { affix = "", "15% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, }, - ["ChanceToShockUniqueRing29"] = { affix = "", "25% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, }, - ["ChanceToShockUniqueGlovesStr4"] = { affix = "", "30% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, }, - ["ChanceToShockUnique__1"] = { affix = "", "10% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, }, - ["ChanceToShockUnique__2_"] = { affix = "", "50% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, }, - ["ChanceToShockUnique__3"] = { affix = "", "(5-10)% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, }, - ["ChanceToShockUnique__4_"] = { affix = "", "(10-15)% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, }, - ["FishingLineStrengthUnique__1"] = { affix = "", "100% increased Fishing Line Strength", statOrder = { 2498 }, level = 1, group = "FishingLineStrength", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1842038569, }, - ["FishingPoolConsumptionUnique__1__"] = { affix = "", "50% increased Fishing Pool Consumption", statOrder = { 2499 }, level = 1, group = "FishingPoolConsumption", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1550221644, }, - ["FishingLureTypeUniqueFishingRod1"] = { affix = "", "Siren Worm Bait", statOrder = { 2500 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3360430812, }, - ["FishingLureTypeUnique__1__"] = { affix = "", "Thaumaturgical Lure", statOrder = { 2500 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3360430812, }, - ["FishingCastDistanceUnique__1__"] = { affix = "", "20% increased Fishing Range", statOrder = { 2502 }, level = 1, group = "FishingCastDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 170497091, }, - ["FishingQuantityUniqueFishingRod1"] = { affix = "", "(40-50)% reduced Quantity of Fish Caught", statOrder = { 2503 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3802667447, }, - ["FishingQuantityUnique__2"] = { affix = "", "20% increased Quantity of Fish Caught", statOrder = { 2503 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3802667447, }, - ["FishingQuantityUnique__1"] = { affix = "", "(10-20)% increased Quantity of Fish Caught", statOrder = { 2503 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3802667447, }, - ["FishingRarityUniqueFishingRod1"] = { affix = "", "(50-60)% increased Rarity of Fish Caught", statOrder = { 2504 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3310914132, }, - ["FishingRarityUnique__1"] = { affix = "", "40% increased Rarity of Fish Caught", statOrder = { 2504 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3310914132, }, - ["FishingRarityUnique__2_"] = { affix = "", "(20-30)% increased Rarity of Fish Caught", statOrder = { 2504 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3310914132, }, - ["IncreasedSpellDamagePerBlockChanceUniqueClaw7"] = { affix = "", "8% increased Spell Damage per 5% Chance to Block Attack Damage", statOrder = { 2394 }, level = 1, group = "SpellDamagePerBlockChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2449668043, }, - ["LifeGainedOnSpellHitUniqueClaw7"] = { affix = "", "Gain (15-20) Life per Enemy Hit with Spells", statOrder = { 1429 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 2018035324, }, - ["LifeGainedOnSpellHitUniqueDescentClaw1"] = { affix = "", "Gain 3 Life per Enemy Hit with Spells", statOrder = { 1429 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 2018035324, }, - ["LifeGainedOnSpellHitUnique__1"] = { affix = "", "Gain 4 Life per Enemy Hit with Spells", statOrder = { 1429 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 2018035324, }, - ["LoseLifeOnSpellHitUnique__1"] = { affix = "", "Lose (10-15) Life per Enemy Hit with Spells", statOrder = { 1429 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 2018035324, }, - ["AttackSpeedPerGreenSocketUniqueOneHandSword5"] = { affix = "", "12% increased Global Attack Speed per Green Socket", statOrder = { 2382 }, level = 1, group = "AttackSpeedPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 250876318, }, - ["PhysicalDamgePerRedSocketUniqueOneHandSword5"] = { affix = "", "25% increased Global Physical Damage with Weapons per Red Socket", statOrder = { 2380 }, level = 1, group = "PhysicalDamgePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2112615899, }, - ["ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUniqueOneHandSword5"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2385 }, level = 1, group = "ManaLeechPermyriadFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 172852114, }, - ["ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUnique"] = { affix = "", "0.3% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2385 }, level = 1, group = "ManaLeechPermyriadFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 172852114, }, - ["MeleeRangePerWhiteSocketUniqueOneHandSword5"] = { affix = "", "+2 to Melee Strike Range per White Socket", statOrder = { 2389 }, level = 1, group = "MeleeRangePerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2076080860, }, - ["MeleeDamageTakenUniqueAmulet12"] = { affix = "", "60% increased Damage taken from Melee Attacks", statOrder = { 2404 }, level = 1, group = "MeleeDamageTaken", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2626398389, }, - ["ArmourAsLifeRegnerationOnBlockUniqueShieldStrInt6"] = { affix = "", "Regenerate 2% of your Armour as Life over 1 second when you Block", statOrder = { 2485 }, level = 1, group = "ArmourAsLifeRegnerationOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 3002650433, }, - ["LoseEnergyShieldOnBlockUniqueShieldStrInt6"] = { affix = "", "Lose 10% of your maximum Energy Shield when you Block", statOrder = { 2396 }, level = 1, group = "LoseEnergyShieldOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "energy_shield", "defences" }, tradeHash = 4059516437, }, - ["ChaosDamageAsPortionOfDamageUniqueRing16"] = { affix = "", "Gain (40-60)% of Physical Damage as extra Chaos Damage", statOrder = { 1607 }, level = 87, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 459352300, }, - ["ChaosDamageAsPortionOfDamageUnique__1"] = { affix = "", "Gain (30-40)% of Physical Damage as extra Chaos Damage", statOrder = { 1607 }, level = 1, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 459352300, }, - ["ChaosDamageAsPortionOfFireDamageUnique__1"] = { affix = "", "Gain (6-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1613 }, level = 1, group = "ChaosDamageAsPortionOfFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHash = 2105236138, }, - ["ChaosDamageAsPortionOfColdDamageUnique__1"] = { affix = "", "Gain (6-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1612 }, level = 1, group = "ChaosDamageAsPortionOfColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHash = 1036710490, }, - ["ChaosDamageAsPortionOfLightningDamageUnique__1"] = { affix = "", "Gain (6-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1610 }, level = 1, group = "ChaosDamageAsPortionOfLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHash = 502598927, }, - ["PhysicalDamageTakenAsLightningPercentUniqueBodyStrDex2"] = { affix = "", "50% of Physical damage from Hits taken as Lightning damage", statOrder = { 2121 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, tradeHash = 425242359, }, - ["OffHandChillDurationUniqueOneHandAxe2"] = { affix = "", "100% increased Chill Duration on Enemies when in Off Hand", statOrder = { 2423 }, level = 1, group = "OffHandChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 4199402748, }, - ["TrapThrowSpeedUniqueBootsDex6"] = { affix = "", "(14-18)% increased Trap Throwing Speed", statOrder = { 1597 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 118398748, }, - ["TrapThrowSpeedUnique__1_"] = { affix = "", "(20-30)% reduced Trap Throwing Speed", statOrder = { 1597 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 118398748, }, - ["MovementSpeedOnTrapThrowUniqueBootsDex6"] = { affix = "", "30% increased Movement Speed for 9 seconds on Throwing a Trap", statOrder = { 2427 }, level = 1, group = "MovementSpeedOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1620219216, }, - ["MovementSpeedOnTrapThrowUnique__1"] = { affix = "", "15% increased Movement Speed for 9 seconds on Throwing a Trap", statOrder = { 2427 }, level = 1, group = "MovementSpeedOnTrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3102860761, }, - ["DisplaySupportedByTrapUniqueBootsDex6"] = { affix = "", "Socketed Gems are Supported by Level 15 Trap", statOrder = { 319 }, level = 1, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1122134690, }, - ["DisplaySupportedByTrapUniqueStaff4"] = { affix = "", "Socketed Gems are Supported by Level 8 Trap", statOrder = { 319 }, level = 1, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1122134690, }, - ["DisplaySupportedByTrapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Trap", statOrder = { 319 }, level = 40, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1122134690, }, - ["TrapDurationUniqueBelt6"] = { affix = "", "(50-75)% reduced Trap Duration", statOrder = { 1592 }, level = 47, group = "TrapDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2001530951, }, - ["TrapDurationUnique__1"] = { affix = "", "10% reduced Trap Duration", statOrder = { 1592 }, level = 1, group = "TrapDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2001530951, }, - ["TrapDamageUniqueBelt6"] = { affix = "", "(30-40)% increased Trap Damage", statOrder = { 854 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2941585404, }, - ["TrapDamageUniqueShieldDexInt1"] = { affix = "", "(18-28)% increased Trap Damage", statOrder = { 854 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2941585404, }, - ["TrapDamageUnique___1"] = { affix = "", "(15-25)% increased Trap Damage", statOrder = { 854 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2941585404, }, - ["RegenerateLifeOnCastUniqueWand4"] = { affix = "", "Regenerate (6-8) Life over 1 second when you Cast a Spell", statOrder = { 2484 }, level = 1, group = "RegenerateLifeOnCast", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1955882986, }, - ["PhasingUniqueBootsStrDex4"] = { affix = "", "Phasing", statOrder = { 2474 }, level = 1, group = "Phasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 963290143, }, - ["CullingCriticalStrikes"] = { affix = "", "Critical Strikes have Culling Strike", statOrder = { 3028 }, level = 1, group = "CullingCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 2996445420, }, - ["IncreasedFireDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Fire Damage taken", statOrder = { 1892 }, level = 1, group = "FireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHash = 3743301799, }, - ["ReducedFireDamageTakenUnique__1"] = { affix = "", "-(200-100) Fire Damage taken from Hits", statOrder = { 1887 }, level = 1, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHash = 614758785, }, - ["FrenzyChargeOnIgniteUniqueTwoHandSword6"] = { affix = "", "Gain a Frenzy Charge if an Attack Ignites an Enemy", statOrder = { 2491 }, level = 1, group = "FrenzyChargeOnIgnite", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 3598983877, }, - ["CullingAgainstBurningEnemiesUniqueTwoHandSword6"] = { affix = "", "Culling Strike against Burning Enemies", statOrder = { 2490 }, level = 1, group = "CullingAgainstBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1777334641, }, - ["ChaosDamageTakenUniqueBodyStr4"] = { affix = "", "-(40-30) Chaos Damage taken", statOrder = { 2493 }, level = 1, group = "ChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 496011033, }, - ["IncreasedCurseDurationUniqueShieldDex4"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 5539 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1435748744, }, - ["IncreasedCurseDurationUniqueShieldStrDex2"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 5539 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1435748744, }, - ["IncreasedCurseDurationUniqueHelmetInt9"] = { affix = "", "Curse Skills have (30-50)% increased Skill Effect Duration", statOrder = { 5539 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1435748744, }, - ["IncreaseSocketedCurseGemLevelUniqueShieldDex4"] = { affix = "", "+3 to Level of Socketed Curse Gems", statOrder = { 135 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 3691695237, }, - ["IncreaseSocketedCurseGemLevelUniqueHelmetInt9"] = { affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 135 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 3691695237, }, - ["IncreaseSocketedCurseGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 135 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 3691695237, }, - ["IncreaseSocketedCurseGemLevelUnique__2"] = { affix = "", "+3 to Level of Socketed Curse Gems", statOrder = { 135 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 3691695237, }, - ["IncreasedSelfCurseDurationUniqueShieldStrDex2"] = { affix = "", "100% increased Duration of Curses on you", statOrder = { 1836 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2920970371, }, - ["ReducedSelfCurseDurationUniqueShieldDex3"] = { affix = "", "50% reduced Duration of Curses on you", statOrder = { 1836 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2920970371, }, - ["ChaosResistanceWhileUsingFlaskUniqueBootsStrDex3"] = { affix = "", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 2902 }, level = 1, group = "ChaosResistanceWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos", "resistance" }, tradeHash = 392168009, }, - ["SetElementalResistancesUniqueHelmetStrInt4"] = { affix = "", "You have no Elemental Resistances", statOrder = { 2489 }, level = 1, group = "SetElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1776968075, }, - ["IncreasedAccuracyPercentImplicitQuiver7"] = { affix = "", "(20-30)% increased Accuracy Rating", statOrder = { 1268 }, level = 5, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 624954515, }, - ["IncreasedAccuracyPercentImplicitQuiver7New"] = { affix = "", "(20-30)% increased Accuracy Rating", statOrder = { 1268 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 624954515, }, - ["IncreasedAccuracyPercentUnique__1"] = { affix = "", "(30-40)% increased Accuracy Rating", statOrder = { 1268 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 624954515, }, - ["DisplaySocketedSkillsChainUniqueOneHandMace3"] = { affix = "", "Socketed Gems Chain 1 additional times", statOrder = { 387 }, level = 1, group = "DisplaySocketedSkillsChain", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 2788729902, }, - ["LocalIncreaseSocketedVaalGemLevelUniqueGlovesStrDex4"] = { affix = "", "+5 to Level of Socketed Vaal Gems", statOrder = { 139 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "vaal", "gem" }, tradeHash = 1170386874, }, - ["LocalIncreaseSocketedNonVaalGemLevelUnique__1"] = { affix = "", "-5 to Level of Socketed Non-Vaal Gems", statOrder = { 142 }, level = 1, group = "LocalIncreaseSocketedNonVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 2574694107, }, - ["LocalIncreaseSocketedVaalGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Vaal Gems", statOrder = { 139 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "vaal", "gem" }, tradeHash = 1170386874, }, - ["CriticalStrikesLeechInstantlyUniqueGlovesStr3"] = { affix = "", "Leech from Critical Hits is instant", statOrder = { 2208 }, level = 94, group = "CriticalStrikesLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3389184522, }, - ["LocalArmourAndEvasionAndEnergyShieldUniqueBodyStrDexInt1i"] = { affix = "", "(270-340)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 94, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHash = 3523867985, }, - ["ArrowPierceAppliesToProjectileDamageUniqueQuiver3"] = { affix = "", "Arrows deal 50% increased Damage with Hits to Targets they Pierce", statOrder = { 4309 }, level = 45, group = "ArrowPierceAppliesToProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3647471922, }, - ["ArrowDamageAgainstPiercedTargetsUnique__1"] = { affix = "", "Arrows deal 50% increased Damage with Hits to Targets they Pierce", statOrder = { 4308 }, level = 45, group = "ArrowDamageAgainstPiercedTargets", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1019891080, }, - ["OnslaughtOnVaalSkillUseUniqueGlovesStrDex4"] = { affix = "", "You gain Onslaught for 20 seconds on using a Vaal Skill", statOrder = { 2560 }, level = 1, group = "OnslaughtOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHash = 2654043939, }, - ["LocalIncreaseSocketedSupportGemLevelUniqueTwoHandAxe7"] = { affix = "", "+2 to Level of Socketed Support Gems", statOrder = { 140 }, level = 94, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4154259475, }, - ["LocalIncreaseSocketedSupportGemLevelUniqueStaff12"] = { affix = "", "+1 to Level of Socketed Support Gems", statOrder = { 140 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4154259475, }, - ["LocalIncreaseSocketedSupportGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Support Gems", statOrder = { 140 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4154259475, }, - ["AdditionalChainUniqueOneHandMace3"] = { affix = "", "Skills Chain +1 times", statOrder = { 1474 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1787073323, }, - ["AdditionalChainUnique__1"] = { affix = "", "Skills Chain +2 times", statOrder = { 1474 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1787073323, }, - ["AdditionalChainUnique__2"] = { affix = "", "Skills Chain +1 times", statOrder = { 1474 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1787073323, }, - ["CurseTransferOnKillUniqueQuiver5"] = { affix = "", "Hexes Transfer to all Enemies in a range of 30 when Hexed Enemy dies", statOrder = { 2572 }, level = 5, group = "CurseTransferOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 986616727, }, - ["AdditionalMeleeDamageToBurningEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Ignited Enemies", statOrder = { 1129 }, level = 1, group = "AdditionalMeleeDamageToBurningEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 17354819, }, - ["AdditionalMeleeDamageToShockedEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Shocked Enemies", statOrder = { 1127 }, level = 1, group = "AdditionalMeleeDamageToShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1138694108, }, - ["AdditionalMeleeDamageToFrozenEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Frozen Enemies", statOrder = { 1125 }, level = 1, group = "AdditionalMeleeDamageToFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 298331790, }, - ["ProjectileShockChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Shock", statOrder = { 2366 }, level = 1, group = "ProjectileShockChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2803352419, }, - ["ProjectileFreezeChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Freeze", statOrder = { 2365 }, level = 1, group = "ProjectileFreezeChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3733737728, }, - ["SupportedByLifeLeechUniqueBodyStrInt5"] = { affix = "", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 343 }, level = 1, group = "SupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 891277550, }, - ["SupportedByLifeLeechUnique__1"] = { affix = "", "Socketed Gems are supported by Level 10 Life Leech", statOrder = { 343 }, level = 1, group = "SupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 891277550, }, - ["SupportedByChanceToBleedUnique__1"] = { affix = "", "Socketed Gems are supported by Level 1 Chance to Bleed", statOrder = { 344 }, level = 1, group = "SupportedByChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2178803872, }, - ["ElementalDamageTakenAsChaosUniqueBodyStrInt5"] = { affix = "", "25% of Elemental damage from Hits taken as Chaos damage", statOrder = { 2126 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, tradeHash = 1175213674, }, - ["ArcaneVisionUniqueBodyStrInt5"] = { affix = "", "Light Radius is based on Energy Shield instead of Life", statOrder = { 2397 }, level = 1, group = "ArcaneVision", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3836017971, }, - ["PhysicalDamageFromBeastsUniqueBodyDex6"] = { affix = "", "-(50-40) Physical Damage taken from Hits by Animals", statOrder = { 2566 }, level = 1, group = "PhysicalDamageFromBeasts", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3277537093, }, - ["WeaponLightningDamageUniqueOneHandMace3"] = { affix = "", "(80-100)% increased Lightning Damage", statOrder = { 857 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, }, - ["DamageTakenPerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "1% increased Damage taken per Frenzy Charge", statOrder = { 2568 }, level = 1, group = "IncreaseDamageTakenPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1625103793, }, - ["IncreaseLightningDamagePerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "(15-20)% increased Lightning Damage per Frenzy Charge", statOrder = { 2569 }, level = 1, group = "IncreaseLightningDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3693130674, }, - ["LifeGainedOnEnemyDeathPerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "20 Life gained on Kill per Frenzy Charge", statOrder = { 2570 }, level = 1, group = "LifeGainedOnEnemyDeathPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1269609669, }, - ["CannotBeKnockedBack"] = { affix = "", "Cannot be Knocked Back", statOrder = { 1345 }, level = 1, group = "CannotBeKnockedBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4212255859, }, - ["UnwaveringStance"] = { affix = "", "Unwavering Stance", statOrder = { 10072 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 1683578560, }, - ["ReducedEnergyShieldRegenerationRateUniqueQuiver7"] = { affix = "", "40% reduced Energy Shield Recharge Rate", statOrder = { 966 }, level = 81, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, }, - ["LocalFlaskInstantRecoverPercentOfLifeUniqueFlask6"] = { affix = "", "Recover (75-100)% of maximum Life on use", statOrder = { 635 }, level = 1, group = "LocalFlaskInstantRecoverPercentOfLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 2629106530, }, - ["LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealingUniqueFlask6"] = { affix = "", "25% of Maximum Life taken as Chaos Damage per second", statOrder = { 636 }, level = 1, group = "LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealing", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, tradeHash = 3232201443, }, - ["PowerChargeOnKnockbackUniqueStaff7"] = { affix = "", "10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage", statOrder = { 2574 }, level = 1, group = "PowerChargeOnKnockback", weightKey = { }, weightVal = { }, modTags = { "power_charge", "attack" }, tradeHash = 2179619644, }, - ["GrantsBearTrapUniqueShieldDexInt1"] = { affix = "", "Grants Level 25 Bear Trap Skill", statOrder = { 449 }, level = 1, group = "BearTrapSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3541114083, }, - ["PowerChargeOnTrapThrowChanceUniqueShieldDexInt1"] = { affix = "", "25% chance to gain a Power Charge when you Throw a Trap", statOrder = { 2575 }, level = 1, group = "PowerChargeOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 1936544447, }, - ["CritChancePercentPerStrengthUniqueOneHandSword8_"] = { affix = "", "1% increased Critical Hit Chance per 8 Strength", statOrder = { 2576 }, level = 1, group = "CritChancePercentPerStrength", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3068290007, }, - ["IncreasedAttackSpeedWhileIgnitedUniqueRing24"] = { affix = "", "(25-40)% increased Attack Speed while Ignited", statOrder = { 2577 }, level = 1, group = "AttackSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2047819517, }, - ["IncreasedAttackSpeedWhileIgnitedUniqueJewel20"] = { affix = "", "(10-20)% increased Attack Speed while Ignited", statOrder = { 2577 }, level = 1, group = "AttackSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2047819517, }, - ["IncreasedCastSpeedWhileIgnitedUniqueRing24"] = { affix = "", "(25-40)% increased Cast Speed while Ignited", statOrder = { 2578 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 3660039923, }, - ["IncreasedCastSpeedWhileIgnitedUniqueJewel20_"] = { affix = "", "(10-20)% increased Cast Speed while Ignited", statOrder = { 2578 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 3660039923, }, - ["IncreasedChanceToBeIgnitedUniqueRing24"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2583 }, level = 1, group = "IncreasedChanceToBeIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1618339429, }, - ["IncreasedChanceToBeIgnitedUnique__1"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2583 }, level = 1, group = "IncreasedChanceToBeIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1618339429, }, - ["CausesPoisonOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Poison on Critical Hit", statOrder = { 7333 }, level = 1, group = "LocalCausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHash = 374737750, }, - ["CausesPoisonOnCritUnique__1"] = { affix = "", "Melee Critical Hits Poison the Enemy", statOrder = { 2428 }, level = 1, group = "CausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, tradeHash = 2635385320, }, - ["BlockIncreasedDuringFlaskEffectUniqueFlask7"] = { affix = "", "+(8-12)% Chance to Block Attack Damage during Effect", statOrder = { 767 }, level = 85, group = "BlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHash = 2519106214, }, - ["BlockIncreasedDuringFlaskEffectUnique__1"] = { affix = "", "+(35-50)% Chance to Block Attack Damage during Effect", statOrder = { 767 }, level = 85, group = "BlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, tradeHash = 2519106214, }, - ["EvasionRatingIncreasesWeaponDamageUniqueOneHandSword9"] = { affix = "", "1% increased Attack Damage per 450 Evasion Rating", statOrder = { 2581 }, level = 1, group = "EvasionRatingIncreasesWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 93696421, }, - ["IncreasedDamageToIgnitedTargetsUniqueBootsStrInt3"] = { affix = "", "(25-40)% increased Damage with Hits against Ignited Enemies", statOrder = { 6742 }, level = 1, group = "IncreasedDamageToIgnitedTargets", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3585754616, }, - ["MovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8"] = { affix = "", "20% increased Movement Speed while on Full Energy Shield", statOrder = { 2603 }, level = 1, group = "MovementSpeedWhileOnFullEnergyShield", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2825197711, }, - ["ChanceForEnemyToFleeOnBlockUniqueShieldDex4"] = { affix = "", "100% Chance to Cause Monster to Flee on Block", statOrder = { 2594 }, level = 1, group = "ChanceForEnemyToFleeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3212461220, }, - ["IncreasedChaosDamageUniqueBodyStrDex4"] = { affix = "", "(50-80)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, - ["IncreasedChaosDamageUniqueCorruptedJewel2"] = { affix = "", "(15-20)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, - ["IncreasedChaosDamageUniqueShieldDex7"] = { affix = "", "(20-30)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, - ["IncreasedChaosDamageUnique__1"] = { affix = "", "(30-35)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, - ["IncreasedChaosDamageUnique__2"] = { affix = "", "(80-100)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, - ["IncreasedChaosDamageUnique__3"] = { affix = "", "(7-13)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, - ["IncreasedChaosDamageUnique__4"] = { affix = "", "(60-80)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, - ["IncreasedChaosDamageUnique__4_2"] = { affix = "", "(20-30)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, - ["IncreasedChaosDamageUnique__5"] = { affix = "", "(20-40)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, - ["IncreasedChaosDamageImplicit1_"] = { affix = "", "(17-23)% increased Chaos Damage", statOrder = { 858 }, level = 100, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, - ["IncreasedChaosDamageImplicitUnique__1"] = { affix = "", "30% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, - ["IncreasedLifeLeechRateUniqueBodyStrDex4"] = { affix = "", "Leech Life 100% faster", statOrder = { 1821 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1570501432, }, - ["IncreasedLifeLeechRateUniqueAmulet20"] = { affix = "", "Leech 30% faster", statOrder = { 1819 }, level = 1, group = "LifeManaESLeechRate", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "mana", "defences" }, tradeHash = 2460686383, }, - ["IncreasedLifeLeechRateUnique__1"] = { affix = "", "Leech Life 50% faster", statOrder = { 1821 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1570501432, }, - ["ReducedLifeLeechRateUniqueJewel19"] = { affix = "", "Leech Life (10-20)% slower", statOrder = { 1821 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1570501432, }, - ["IncreasedLifeLeechRateUnique__2"] = { affix = "", "Leech Life (500-1000)% faster", statOrder = { 1821 }, level = 52, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1570501432, }, - ["IncreasedManaLeechRateUnique__1"] = { affix = "", "Leech Mana (500-1000)% faster", statOrder = { 1823 }, level = 52, group = "IncreasedManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3554867738, }, - ["SpellAddedChaosDamageUniqueWand7"] = { affix = "", "Adds (90-130) to (140-190) Chaos Damage to Spells", statOrder = { 1244 }, level = 1, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHash = 2300399854, }, - ["SpellAddedChaosDamageUnique__1"] = { affix = "", "Adds (48-56) to (73-84) Chaos Damage to Spells", statOrder = { 1244 }, level = 81, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHash = 2300399854, }, - ["SpellAddedChaosDamageUnique__2"] = { affix = "", "Adds (16-21) to (31-36) Chaos Damage to Spells", statOrder = { 1244 }, level = 1, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, tradeHash = 2300399854, }, - ["HealOnRampageUniqueGlovesStrDex5"] = { affix = "", "Recover 20% of maximum Life on Rampage", statOrder = { 2588 }, level = 1, group = "HealOnRampage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2737492258, }, - ["DispelStatusAilmentsOnRampageUniqueGlovesStrInt2"] = { affix = "", "Removes Elemental Ailments on Rampage", statOrder = { 2589 }, level = 1, group = "DispelStatusAilmentsOnRampage", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 627889781, }, - ["PhysicalDamageImmunityOnRampageUniqueGlovesStrInt2"] = { affix = "", "Gain Immunity to Physical Damage for 1.5 seconds on Rampage", statOrder = { 2590 }, level = 1, group = "PhysicalDamageImmunityOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3100457893, }, - ["VaalSoulsOnRampageUniqueGlovesStrDex5"] = { affix = "", "Kills grant an additional Vaal Soul if you have Rampaged Recently", statOrder = { 6316 }, level = 1, group = "AdditionalVaalSoulOnRampage", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHash = 3271016161, }, - ["GroundSmokeOnRampageUniqueGlovesDexInt6"] = { affix = "", "Creates a Smoke Cloud on Rampage", statOrder = { 2601 }, level = 1, group = "GroundSmokeOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3321583955, }, - ["PhasingOnRampageUniqueGlovesDexInt6"] = { affix = "", "Enemies do not block your movement for 4 seconds on Rampage", statOrder = { 2602 }, level = 1, group = "PhasingOnRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 376956212, }, - ["GlobalChanceToBlindOnHitUniqueSceptre8"] = { affix = "", "10% Global chance to Blind Enemies on Hit", statOrder = { 2592 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2221570601, }, - ["LifeRegenerationPerLevelUniqueTwoHandSword7"] = { affix = "", "Regenerate 0.2 Life per second per Level", statOrder = { 2595 }, level = 1, group = "LifeRegenerationPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1384864963, }, - ["CriticalStrikeChancePerLevelUniqueTwoHandAxe8"] = { affix = "", "3% increased Global Critical Hit Chance per Level", statOrder = { 2596 }, level = 1, group = "CriticalStrikeChancePerLevel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3081076859, }, - ["AttackDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Attack Damage per Level", statOrder = { 2597 }, level = 1, group = "AttackDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 63607615, }, - ["SpellDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Spell Damage per Level", statOrder = { 2598 }, level = 1, group = "SpellDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 797084288, }, - ["FlaskChargesOnCritUniqueTwoHandAxe8"] = { affix = "", "Gain a Flask Charge when you deal a Critical Hit", statOrder = { 2599 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHash = 1546046884, }, - ["ChanceToReflectChaosDamageToSelfUniqueTwoHandSword7_"] = { affix = "", "Enemies you Attack have 20% chance to Reflect 35 to 50 Chaos Damage to you", statOrder = { 2604 }, level = 1, group = "ChanceToReflectChaosDamageToSelf", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 515996808, }, - ["SimulatedRampageStrDex5"] = { affix = "", "Rampage", statOrder = { 10018 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2397408229, }, - ["SimulatedRampageDexInt6"] = { affix = "", "Rampage", statOrder = { 10018 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2397408229, }, - ["SimulatedRampageStrInt2"] = { affix = "", "Rampage", statOrder = { 10018 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2397408229, }, - ["SimulatedRampageUnique__1"] = { affix = "", "Melee Hits count as Rampage Kills", "Rampage", statOrder = { 10017, 10017.1 }, level = 1, group = "SimulatedRampageMeleeHits", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2889807051, }, - ["SimulatedRampageUnique__2"] = { affix = "", "Rampage", statOrder = { 10018 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2397408229, }, - ["SimulatedRampageUnique__3_"] = { affix = "", "Rampage", statOrder = { 10018 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2397408229, }, - ["BlindImmunityUniqueSceptre8"] = { affix = "", "Cannot be Blinded", statOrder = { 2608 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1436284579, }, - ["BlindImmunityUnique__1"] = { affix = "", "Cannot be Blinded", statOrder = { 2608 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1436284579, }, - ["ManaGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Mana on Kill per Level", statOrder = { 2606 }, level = 1, group = "ManaGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1064067689, }, - ["EnergyShieldGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Energy Shield on Kill per Level", statOrder = { 2607 }, level = 1, group = "EnergyShieldGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 294153754, }, - ["LocalIncreaseSocketedActiveSkillGemLevelUniqueTwoHandSword7_"] = { affix = "", "+1 to Level of Socketed Skill Gems", statOrder = { 141 }, level = 1, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 524797741, }, - ["IncreasedChaosDamagePerLevelUniqueTwoHandSword7"] = { affix = "", "1% increased Elemental Damage per Level", statOrder = { 2609 }, level = 1, group = "ChaosDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2094646950, }, - ["IncreasedElementalDamagePerLevelUniqueTwoHandSword7"] = { affix = "", "1% increased Chaos Damage per Level", statOrder = { 2610 }, level = 1, group = "ElementalDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 4084331136, }, - ["LifeGainedOnEnemyDeathPerLevelUniqueTwoHandSword7"] = { affix = "", "Gain 1 Life on Kill per Level", statOrder = { 2605 }, level = 1, group = "LifeGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 4228691877, }, - ["SocketedGemHasElementalEquilibriumUniqueRing25"] = { affix = "", "Socketed Gems have Elemental Equilibrium", statOrder = { 431 }, level = 1, group = "SocketedGemHasElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, tradeHash = 1592277680, }, - ["SocketedGemHasSecretsOfSufferingUnique__1"] = { affix = "", "Socketed Gems have Secrets of Suffering", statOrder = { 433 }, level = 1, group = "SocketedGemHasSecretsOfSuffering", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental", "fire", "cold", "lightning", "critical", "ailment", "gem" }, tradeHash = 4051493629, }, - ["ImmuneToElementalAilmentsWhileLifeAndManaCloseUnique__1"] = { affix = "", "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500", statOrder = { 9756 }, level = 1, group = "ImmuneToElementalAilmentsWhileLifeAndManaClose", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 2716882575, }, - ["FireResistanceWhenSocketedWithRedGemUniqueRing25"] = { affix = "", "+(75-100)% to Fire Resistance when Socketed with a Red Gem", statOrder = { 1411 }, level = 1, group = "FireResistanceWhenSocketedWithRedGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance", "gem" }, tradeHash = 3051845758, }, - ["LightningResistanceWhenSocketedWithBlueGemUniqueRing25"] = { affix = "", "+(75-100)% to Lightning Resistance when Socketed with a Blue Gem", statOrder = { 1418 }, level = 1, group = "LightningResistanceWhenSocketedWithBlueGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance", "gem" }, tradeHash = 289814996, }, - ["ColdResistanceWhenSocketedWithGreenGemUniqueRing25"] = { affix = "", "+(75-100)% to Cold Resistance when Socketed with a Green Gem", statOrder = { 1415 }, level = 1, group = "ColdResistanceWhenSocketedWithGreenGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance", "gem" }, tradeHash = 1064331314, }, - ["LightningPenetrationUniqueStaff8"] = { affix = "", "Damage Penetrates 20% Lightning Resistance", statOrder = { 2615 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, }, - ["LightningPenetrationUnique__1"] = { affix = "", "Damage Penetrates 20% Lightning Resistance", statOrder = { 2615 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, }, - ["FirePenetrationUnique__1"] = { affix = "", "Damage Penetrates 10% Fire Resistance", statOrder = { 2613 }, level = 81, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, }, - ["SocketedGemsGetIncreasedItemQuantityUniqueShieldInt4"] = { affix = "", "Enemies slain by Socketed Gems drop 10% increased item quantity", statOrder = { 384 }, level = 1, group = "SocketedGemsGetIncreasedItemQuantity", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 85122299, }, - ["IncreaseDamageOnBlindedEnemiesUniqueQuiver9_"] = { affix = "", "(40-60)% increased Damage with Hits against Blinded Enemies", statOrder = { 6753 }, level = 69, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2242791457, }, - ["IncreaseDamageOnBlindedEnemiesUnique__1"] = { affix = "", "(25-40)% increased Damage with Hits against Blinded Enemies", statOrder = { 6753 }, level = 1, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2242791457, }, - ["SmokeCloudWhenHitUniqueQuiver9"] = { affix = "", "25% chance to create a Smoke Cloud when Hit", statOrder = { 2248 }, level = 1, group = "SmokeCloudWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 953314356, }, - ["IncreasedWeaponElementalDamageDuringFlaskUniqueBelt10"] = { affix = "", "30% increased Elemental Damage with Attack Skills during any Flask Effect", statOrder = { 2413 }, level = 1, group = "IncreasedWeaponElementalDamageDuringFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 782323220, }, - ["IncreasedFireDamageTakenUniqueBodyStrDex5"] = { affix = "", "20% increased Fire Damage taken", statOrder = { 1892 }, level = 1, group = "FireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHash = 3743301799, }, - ["FireDamageTakenConvertedToPhysicalUniqueBodyStrDex5"] = { affix = "", "10% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2118 }, level = 1, group = "FireDamageTakenAsPhysicalNegate", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHash = 1029319062, }, - ["FireDamageTakenConvertedToPhysicalUnique__1"] = { affix = "", "100% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2117 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, tradeHash = 3205239847, }, - ["LocalAddedFireDamageAgainstIgnitedEnemiesUniqueSceptre9"] = { affix = "", "Adds 15 to 25 Fire Damage to Attacks against Ignited Enemies", statOrder = { 1149 }, level = 1, group = "AddedFireDamageVsIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 627339348, }, - ["CastSocketedMinionSpellsOnKillUniqueBow12"] = { affix = "", "Trigger Socketed Minion Spells on Kill with this Weapon", "Minion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses", statOrder = { 535, 535.1 }, level = 1, group = "CastSocketedMinionSpellsOnKill", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "minion" }, tradeHash = 2816098341, }, - ["IncreasedMinionDamagePerDexterityUniqueBow12"] = { affix = "", "Minions deal 1% increased Damage per 5 Dexterity", statOrder = { 1649 }, level = 1, group = "IncreasedMinionDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 4187741589, }, - ["CastSocketedSpellsOnShockedEnemyKillUnique__1"] = { affix = "", "50% chance to Trigger Socketed Spells on killing a Shocked enemy", statOrder = { 534 }, level = 1, group = "CastSocketedSpellsOnShockedEnemyKill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 2770461177, }, - ["MaxPowerChargesIsZeroUniqueAmulet19"] = { affix = "", "Cannot gain Power Charges", statOrder = { 2640 }, level = 1, group = "MaxPowerChargesIsZero", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2503253050, }, - ["IncreasedDamagePerCurseUniqueHelmetInt9"] = { affix = "", "(10-20)% increased Damage with Hits per Curse on Enemy", statOrder = { 2639 }, level = 1, group = "IncreasedDamagePerCurse", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1818773442, }, - ["StealChargesOnHitPercentUniqueGlovesStrDex6"] = { affix = "", "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2618 }, level = 1, group = "StealChargesOnHitPercent", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 875143443, }, - ["StealChargesOnHitPercentUnique__1"] = { affix = "", "Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2618 }, level = 1, group = "StealChargesOnHitPercent", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 875143443, }, - ["IncreasedPhysicalDamagePerEnduranceChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Physical Damage per Endurance Charge", statOrder = { 1803 }, level = 1, group = "IncreasedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2481358827, }, - ["IncreasedPhysicalDamagePerEnduranceChargeUnique__1"] = { affix = "", "10% increased Physical Damage per Endurance Charge", statOrder = { 1803 }, level = 1, group = "IncreasedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2481358827, }, - ["IncreasedDamageVsFullLifePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "2% increased Damage per Power Charge with Hits against Enemies that are on Full Life", statOrder = { 2622 }, level = 1, group = "DamageVsFullLifePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2111067745, }, - ["IncreasedDamageVsLowLifePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "2% increased Damage per Power Charge with Hits against Enemies on Low Life", statOrder = { 2623 }, level = 1, group = "DamageVsLowLivePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 82392902, }, - ["ElementalPenetrationPerFrenzyChargeUniqueGlovesStrDex6"] = { affix = "", "Penetrate 1% Elemental Resistances per Frenzy Charge", statOrder = { 2621 }, level = 1, group = "ElementalPenetrationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2724643145, }, - ["ChargeDurationUniqueBodyDexInt3"] = { affix = "", "(100-200)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 2651 }, level = 1, group = "ChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 2839036860, }, - ["ElementalStatusAilmentDurationUniqueAmulet19"] = { affix = "", "20% reduced Duration of Elemental Ailments on Enemies", statOrder = { 1544 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 2604619892, }, - ["ElementalStatusAilmentDurationDescentUniqueQuiver1"] = { affix = "", "50% increased Duration of Elemental Ailments on Enemies", statOrder = { 1544 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 2604619892, }, - ["ElementalStatusAilmentDurationUnique__1_"] = { affix = "", "(10-15)% increased Duration of Elemental Ailments on Enemies", statOrder = { 1544 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 2604619892, }, - ["CanOnlyKillFrozenEnemiesUniqueGlovesStrInt3"] = { affix = "", "Your Hits can only Kill Frozen Enemies", statOrder = { 2646 }, level = 1, group = "CanOnlyKillFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2740359895, }, - ["FreezeDurationUniqueGlovesStrInt3"] = { affix = "", "100% increased Freeze Duration on Enemies", statOrder = { 1541 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 496146175, }, - ["FreezeChillDurationUnique__1"] = { affix = "", "10000% increased Chill Duration on Enemies", "10000% increased Freeze Duration on Enemies", statOrder = { 1539, 1541 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 496146175, }, - ["FreezeDurationUnique__1"] = { affix = "", "25% increased Freeze Duration on Enemies", statOrder = { 1541 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 496146175, }, - ["ElementalPenetrationMarakethSceptreImplicit1"] = { affix = "", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2612 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2101383955, }, - ["ElementalPenetrationMarakethSceptreImplicit2"] = { affix = "", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2612 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2101383955, }, - ["UniqueEnemiesInPresenceHaveFireExposure1"] = { affix = "", "Enemies in your Presence have Exposure", statOrder = { 5945 }, level = 1, group = "EnemiesInPresenceHaveExposure", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHash = 2360818866, }, - ["UniqueBearSkillDamageConvertedToFire1"] = { affix = "", "Bear Skills Convert 80% of Physical Damage to Fire Damage", statOrder = { 1629 }, level = 1, group = "UniqueBearSkillDamageConvertedToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 4287372938, }, - ["UniqueSkillsGainXGloryEvery2Seconds1"] = { affix = "", "Skills which require Glory generate (2-5) Glory every 2 seconds", statOrder = { 3999 }, level = 1, group = "UniqueSkillsGainXGloryEvery2Seconds", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2480962043, }, - ["MinonAreaOfEffectUniqueRing33"] = { affix = "", "Minions have 10% increased Area of Effect", statOrder = { 2649 }, level = 1, group = "MinionAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3811191316, }, - ["MinionAreaOfEffectUnique__1"] = { affix = "", "Minions have (6-8)% increased Area of Effect", statOrder = { 2649 }, level = 1, group = "MinionAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3811191316, }, - ["PhysicalDamageToSelfOnMinionDeathUniqueRing33"] = { affix = "", "350 Physical Damage taken on Minion Death", statOrder = { 2652 }, level = 25, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 4176970656, }, - ["PhysicalDamageToSelfOnMinionDeathESPercentUniqueRing33_"] = { affix = "", "8% of Maximum Energy Shield taken as Physical Damage on Minion Death", statOrder = { 2648 }, level = 1, group = "SelfPhysicalDamageOnMinionDeathPerES", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1617739170, }, - ["DealNoPhysicalDamageUniqueBelt14"] = { affix = "", "Deal no Physical Damage", statOrder = { 2445 }, level = 65, group = "DealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3900877792, }, - ["DealNoNonPhysicalDamageUniqueBelt__1"] = { affix = "", "Deal no Non-Physical Damage", statOrder = { 2446 }, level = 65, group = "DealNoNonPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 282353000, }, - ["RangedAttacksConsumeAmmoUniqueBelt__1"] = { affix = "", "Attacks that Fire Projectiles Consume up to 1 additional Steel Shard", statOrder = { 4446 }, level = 1, group = "RangedAttacksConsumeAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 591162856, }, - ["AdditionalProjectilesAfterAmmoConsumedUniqueBelt__1"] = { affix = "", "Skills Fire 3 additional Projectiles for 4 seconds after", "you consume a total of 12 Steel Shards", statOrder = { 9321, 9321.1 }, level = 1, group = "AdditionalProjectilesAfterAmmoConsumed", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2511521167, }, - ["FasterBurnFromAttacksEnemiesUniqueBelt14"] = { affix = "", "Ignites you inflict with Attacks deal Damage 35% faster", statOrder = { 2238 }, level = 65, group = "FasterBurnFromAttacksEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack", "ailment" }, tradeHash = 1420236871, }, - ["SocketedGemsProjectilesNovaUniqueStaff10"] = { affix = "", "Socketed Gems fire Projectiles in a circle", statOrder = { 436 }, level = 1, group = "DisplaySocketedGemsNova", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 967556848, }, - ["SocketedGemsProjectilesNovaUnique__1"] = { affix = "", "Socketed Projectile Spells fire Projectiles in a circle", statOrder = { 437 }, level = 1, group = "DisplaySocketedSpellsNova", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 3235941702, }, - ["SocketedGemsAdditionalProjectilesUniqueStaff10_"] = { affix = "", "Socketed Gems fire 4 additional Projectiles", statOrder = { 434 }, level = 1, group = "DisplaySocketedGemAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4016885052, }, - ["SocketedGemsAdditionalProjectilesUniqueWand9"] = { affix = "", "Socketed Gems fire an additional Projectile", statOrder = { 434 }, level = 1, group = "DisplaySocketedGemAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 4016885052, }, - ["SocketedGemsAdditionalProjectilesUnique__1__"] = { affix = "", "Socketed Projectile Spells fire 4 additional Projectiles", statOrder = { 435 }, level = 1, group = "DisplaySocketedSpellsAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 973574623, }, - ["SocketedGemsReducedDurationUniqueStaff10"] = { affix = "", "Socketed Gems have 70% reduced Skill Effect Duration", statOrder = { 438 }, level = 1, group = "DisplaySocketedGemReducedDuration", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 678608747, }, - ["SupportedByReducedManaUniqueBodyDexInt4"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 349 }, level = 1, group = "DisplaySocketedGemGetsReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1866911844, }, - ["SupportedByGenerosityUniqueBodyDexInt4_"] = { affix = "", "Socketed Gems are Supported by Level 30 Generosity", statOrder = { 350 }, level = 1, group = "DisplaySocketedGemGenerosity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2593773031, }, - ["IncreasedAuraEffectUniqueBodyDexInt4"] = { affix = "", "(10-15)% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3145 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1880071428, }, - ["IncreasedAuraEffectUniqueJewel45"] = { affix = "", "3% increased Magnitudes of Non-Curse Auras from your Skills", statOrder = { 3145 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1880071428, }, - ["IncreasedAuraRadiusUniqueBodyDexInt4"] = { affix = "", "(20-40)% increased Area of Effect of Aura Skills", statOrder = { 1874 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 895264825, }, - ["IncreasedAuraRadiusUnique__1"] = { affix = "", "20% increased Area of Effect of Aura Skills", statOrder = { 1874 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 895264825, }, - ["IncreasedElementalDamagePerFrenzyChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Elemental Damage per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "IncreasedElementalDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 1586440250, }, - ["MinesMultipleDetonationUniqueStaff11"] = { affix = "", "Mines can be Detonated an additional time", statOrder = { 2656 }, level = 1, group = "MinesMultipleDetonation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 325437053, }, - ["GainOnslaughtWhenCullingEnemyUniqueOneHandAxe6"] = { affix = "", "You gain Onslaught for 3 seconds on Culling Strike", statOrder = { 2653 }, level = 1, group = "GainOnslaughtOnCull", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3818161429, }, - ["LocalAddedPhysicalDamageUniqueOneHandAxe6"] = { affix = "", "Adds (3-5) to (7-10) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe6"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, - ["LifeLeechPermyriadUniqueOneHandAxe6"] = { affix = "", "Leeches 2% of Physical Damage as Life", statOrder = { 972 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, }, - ["CannotBeChilledWhenOnslaughtUniqueOneHandAxe6"] = { affix = "", "100% chance to Avoid being Chilled during Onslaught", statOrder = { 2655 }, level = 1, group = "CannotBeChilledDuringOnslaught", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2872105818, }, - ["LifeRegenerationRatePercentageUniqueAmulet21"] = { affix = "", "Regenerate 4% of maximum Life per second", statOrder = { 1617 }, level = 20, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, - ["LifeRegenerationRatePercentageUniqueShieldStrInt3"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, - ["LifeRegenerationRatePercentageUniqueJewel24"] = { affix = "", "Regenerate 2% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, - ["LifeRegenerationRatePercentUniqueShieldStr5"] = { affix = "", "You and your Totems Regenerate 0.5% of maximum Life per second for each Summoned Totem", statOrder = { 9940 }, level = 1, group = "LifeRegenerationRatePercentagePerTotem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1496370423, }, - ["LifeRegenerationRatePercentUnique__1"] = { affix = "", "Regenerate 2% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, - ["LifeRegenerationRatePercentUnique__2"] = { affix = "", "Regenerate 10% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, - ["LifeRegenerationRatePercentUnique__3"] = { affix = "", "Regenerate 1% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, - ["LifeRegenerationRatePercentUnique__4_"] = { affix = "", "Regenerate 1% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, - ["LifeRegenerationRatePercentUnique__5"] = { affix = "", "Regenerate 3% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, - ["LifeRegenerationRatePercentImplicitUnique__5"] = { affix = "", "Regenerate (1-2)% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 836936635, }, - ["RemoteMineLayingSpeedUniqueStaff11"] = { affix = "", "(40-60)% increased Mine Throwing Speed", statOrder = { 1598 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1896971621, }, - ["RemoteMineLayingSpeedUnique__1"] = { affix = "", "(10-15)% reduced Mine Throwing Speed", statOrder = { 1598 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1896971621, }, - ["RemoteMineArmingSpeedUnique__1"] = { affix = "", "Mines have (40-50)% increased Detonation Speed", statOrder = { 8399 }, level = 1, group = "MineArmingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3085465082, }, - ["LessMineDamageUniqueStaff11"] = { affix = "", "35% less Mine Damage", statOrder = { 1092 }, level = 1, group = "LessMineDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3298440988, }, - ["SupportedByRemoteMineUniqueStaff11"] = { affix = "", "Socketed Gems are Supported by Level 10 Blastchain Mine", statOrder = { 352 }, level = 1, group = "SupportedByRemoteMineLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1710508327, }, - ["ColdWeaponDamageUniqueOneHandMace4"] = { affix = "", "(30-40)% increased Cold Damage with Attack Skills", statOrder = { 5310 }, level = 1, group = "ColdWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 860668586, }, - ["AddedLightningDamageWhileUnarmedUniqueGloves_1"] = { affix = "", "Adds 1 to (77-111) Lightning Damage to Unarmed Melee Hits", statOrder = { 2110 }, level = 1, group = "AddedLightningDamageWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3835522656, }, - ["AddedLightningDamageWhileUnarmedUniqueGlovesStr4_"] = { affix = "", "Adds (150-225) to (525-600) Lightning Damage to Unarmed Melee Hits", statOrder = { 2110 }, level = 1, group = "AddedLightningDamageWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3835522656, }, - ["AddedLightningDamagetoSpellsWhileUnarmedUniqueGlovesStr4"] = { affix = "", "Adds (90-135) to (315-360) Lightning Damage to Spells while Unarmed", statOrder = { 2111 }, level = 1, group = "AddedLightningDamagetoSpellsWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 3597806437, }, - ["GainEnergyShieldOnKillShockedEnemyUniqueGlovesStr4"] = { affix = "", "+(200-250) Energy Shield gained on killing a Shocked enemy", statOrder = { 2244 }, level = 1, group = "GainEnergyShieldOnKillShockedEnemy", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 347328113, }, - ["GainEnergyShieldOnKillShockedEnemyUnique__1_"] = { affix = "", "+(90-120) Energy Shield gained on killing a Shocked enemy", statOrder = { 2244 }, level = 1, group = "GainEnergyShieldOnKillShockedEnemy", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 347328113, }, - ["CannotKnockBackUniqueOneHandMace5_"] = { affix = "", "Cannot Knock Enemies Back", statOrder = { 2636 }, level = 1, group = "CannotKnockBack", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2095084973, }, - ["ChillOnAttackStunUniqueOneHandMace5"] = { affix = "", "All Attack Damage Chills when you Stun", statOrder = { 2637 }, level = 1, group = "ChillOnAttackStun", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack", "ailment" }, tradeHash = 2437193018, }, - ["DisplayLifeRegenerationAuraUniqueAmulet21"] = { affix = "", "Nearby Allies gain 4% of maximum Life Regenerated per second", statOrder = { 2625 }, level = 1, group = "DisplayLifeRegenerationAura", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3462673103, }, - ["DisplayManaRegenerationAuaUniqueAmulet21"] = { affix = "", "Nearby Allies gain 80% increased Mana Regeneration Rate", statOrder = { 2630 }, level = 1, group = "DisplayManaRegenerationAua", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 778848857, }, - ["IncreasedRarityWhenSlayingFrozenUniqueOneHandMace4"] = { affix = "", "40% increased Rarity of Items Dropped by Frozen Enemies", statOrder = { 2360 }, level = 1, group = "IncreasedRarityWhenSlayingFrozen", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2138434718, }, - ["SwordPhysicalDamageToAddAsFireUniqueOneHandSword10"] = { affix = "", "Gain (66-99)% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3342 }, level = 1, group = "SwordPhysicalDamageToAddAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHash = 3606204707, }, - ["CannotBeBuffedByAlliedAurasUniqueOneHandSword11"] = { affix = "", "Allies' Aura Buffs do not affect you", statOrder = { 2643 }, level = 1, group = "CannotBeBuffedByAlliedAuras", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 1489905076, }, - ["AurasCannotBuffAlliesUniqueOneHandSword11"] = { affix = "", "Your Aura Buffs do not affect Allies", statOrder = { 2645 }, level = 1, group = "AurasCannotBuffAllies", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 4196775867, }, - ["IncreasedBuffEffectivenessUniqueOneHandSword11"] = { affix = "", "10% increased effect of Buffs on you", statOrder = { 1808 }, level = 1, group = "IncreasedBuffEffectiveness", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 306104305, }, - ["IncreasedBuffEffectivenessBodyInt12"] = { affix = "", "30% increased effect of Buffs on you", statOrder = { 1808 }, level = 1, group = "IncreasedBuffEffectiveness", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 306104305, }, - ["EnemyKnockbackDirectionReversedUniqueGlovesStr5_"] = { affix = "", "Knockback direction is reversed", statOrder = { 2642 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 281201999, }, - ["DisplaySupportedByKnockbackUniqueGlovesStr5"] = { affix = "", "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 356 }, level = 1, group = "DisplaySupportedByKnockback", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 4066711249, }, - ["LifeRegenPerMinutePerEnduranceChargeUniqueBodyDexInt3"] = { affix = "", "Regenerate 75 Life per second per Endurance Charge", statOrder = { 2635 }, level = 1, group = "LifeRegenPerMinutePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1898967950, }, - ["LifeRegenPerMinutePerEnduranceChargeUnique__1"] = { affix = "", "Regenerate (100-140) Life per second per Endurance Charge", statOrder = { 2635 }, level = 1, group = "LifeRegenPerMinutePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1898967950, }, - ["MonstersFleeOnFlaskUseUniqueFlask9"] = { affix = "", "75% chance to cause Enemies to Flee on use", statOrder = { 654 }, level = 1, group = "MonstersFleeOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1457911472, }, - ["PhysicalDamageOnFlaskUseUniqueFlask9"] = { affix = "", "(7-10)% more Melee Physical Damage during effect", statOrder = { 789 }, level = 1, group = "PhysicalDamageOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "physical_damage", "damage", "physical", "attack" }, tradeHash = 3636096208, }, - ["KnockbackOnFlaskUseUniqueFlask9"] = { affix = "", "Adds Knockback to Melee Attacks during Effect", statOrder = { 716 }, level = 1, group = "KnockbackOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "attack" }, tradeHash = 251342217, }, - ["CausesBleedingImplicitMarakethRapier1"] = { affix = "", "Causes Bleeding on Hit", statOrder = { 2150 }, level = 1, group = "CausesBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2091621414, }, - ["LifeAndManaOnHitImplicitMarakethClaw1"] = { affix = "", "Grants 6 Life and Mana per Enemy Hit", statOrder = { 1431 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 1420170973, }, - ["LifeAndManaOnHitImplicitMarakethClaw2"] = { affix = "", "Grants 10 Life and Mana per Enemy Hit", statOrder = { 1431 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 1420170973, }, - ["LifeAndManaOnHitImplicitMarakethClaw3"] = { affix = "", "Grants 14 Life and Mana per Enemy Hit", statOrder = { 1431 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 1420170973, }, - ["LifeAndManaOnHitSeparatedImplicitMarakethClaw1"] = { affix = "", "Grants 15 Life per Enemy Hit", "Grants 6 Mana per Enemy Hit", statOrder = { 974, 1434 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 2259391009, }, - ["LifeAndManaOnHitSeparatedImplicitMarakethClaw2"] = { affix = "", "Grants 28 Life per Enemy Hit", "Grants 10 Mana per Enemy Hit", statOrder = { 974, 1434 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 2259391009, }, - ["LifeAndManaOnHitSeparatedImplicitMarakethClaw3"] = { affix = "", "Grants 38 Life per Enemy Hit", "Grants 14 Mana per Enemy Hit", statOrder = { 974, 1434 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHash = 2259391009, }, - ["IcestormUniqueStaff12"] = { affix = "", "Grants Level 1 Icestorm Skill", statOrder = { 484 }, level = 1, group = "IcestormActiveSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3164659793, }, - ["PowerChargeOnMeleeStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun with Melee Damage", statOrder = { 2425 }, level = 1, group = "PowerChargeOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2318615887, }, - ["PowerChargeOnStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun", statOrder = { 2426 }, level = 1, group = "PowerChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3470535775, }, - ["ChanceToAvoidElementalStatusAilmentsUniqueAmulet22"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["ChanceToAvoidElementalStatusAilmentsUniqueJewel46"] = { affix = "", "10% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, }, - ["ChanceToBePiercedUniqueBodyStr6"] = { affix = "", "Enemy Projectiles Pierce you", statOrder = { 8989 }, level = 1, group = "ProjectilesAlwaysPierceYou", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1457679290, }, - ["IronWillUniqueGlovesStrInt4__"] = { affix = "", "Iron Will", statOrder = { 10060 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 281311123, }, - ["GluttonyOfElementsUniqueAmulet23"] = { affix = "", "Grants Level 10 Gluttony of Elements Skill", statOrder = { 467 }, level = 7, group = "DisplayGluttonyOfElements", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3321235265, }, - ["SocketedGemsSupportedByPierceUniqueBodyStr6"] = { affix = "", "Socketed Gems are Supported by Level 15 Pierce", statOrder = { 363 }, level = 1, group = "DisplaySupportedByPierce", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 254728692, }, - ["LifeRegenPerActiveBuffUniqueBodyInt12"] = { affix = "", "Regenerate (12-20) Life per second per Buff on you", statOrder = { 7023 }, level = 1, group = "LifeRegenPerBuff", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 996053100, }, - ["MaceDamageJewel"] = { affix = "Brutal", "(14-16)% increased Damage with Maces", statOrder = { 1186 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHash = 1181419800, }, - ["AxeDamageJewel"] = { affix = "Sinister", "(14-16)% increased Damage with Axes", statOrder = { 1170 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 3314142259, }, - ["SwordDamageJewel"] = { affix = "Vicious", "(14-16)% increased Damage with Swords", statOrder = { 1196 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 83050999, }, - ["BowDamageJewel"] = { affix = "Fierce", "(14-16)% increased Damage with Bows", statOrder = { 1190 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHash = 4188894176, }, - ["ClawDamageJewel"] = { affix = "Savage", "(14-16)% increased Damage with Claws", statOrder = { 1178 }, level = 1, group = "IncreasedClawDamageForJewel", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHash = 1069260037, }, - ["DaggerDamageJewel"] = { affix = "Lethal", "(14-16)% increased Damage with Daggers", statOrder = { 1182 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHash = 3586984690, }, - ["WandDamageJewel"] = { affix = "Cruel", "(14-16)% increased Damage with Wands", statOrder = { 2579 }, level = 1, group = "IncreasedWandDamageForJewel", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHash = 379328644, }, - ["StaffDamageJewel"] = { affix = "Judging", "(14-16)% increased Damage with Quarterstaves", statOrder = { 1175 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 1, 0, 0, 1 }, modTags = { "damage", "attack" }, tradeHash = 4045894391, }, - ["OneHandedMeleeDamageJewel"] = { affix = "Soldier's", "(12-14)% increased Damage with One Handed Weapons", statOrder = { 2935 }, level = 1, group = "IncreasedOneHandedMeleeDamageForJewel", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 1010549321, }, - ["TwoHandedMeleeDamageJewel"] = { affix = "Champion's", "(12-14)% increased Damage with Two Handed Weapons", statOrder = { 2936 }, level = 1, group = "IncreasedTwoHandedMeleeDamageForJewel", weightKey = { "bow", "wand", "one_handed_mod", "dual_wielding_mod", "shield_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 1836374041, }, - ["DualWieldingMeleeDamageJewel"] = { affix = "Gladiator's", "(12-14)% increased Attack Damage while Dual Wielding", statOrder = { 1154 }, level = 1, group = "IncreasedDualWieldlingDamageForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 444174528, }, - ["UnarmedMeleeDamageJewel"] = { affix = "Brawling", "(14-16)% increased Melee Physical Damage with Unarmed Attacks", statOrder = { 1169 }, level = 1, group = "IncreasedUnarmedDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 515842015, }, - ["MeleeDamageJewel_"] = { affix = "of Combat", "(10-12)% increased Melee Damage", statOrder = { 1124 }, level = 1, group = "MeleeDamageForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 1002362373, }, - ["ProjectileDamageJewel"] = { affix = "of Archery", "(10-12)% increased Projectile Damage", statOrder = { 1663 }, level = 1, group = "ProjectileDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "damage" }, tradeHash = 1839076647, }, - ["ProjectileDamageJewelUniqueJewel41"] = { affix = "", "10% increased Projectile Damage", statOrder = { 1663 }, level = 1, group = "ProjectileDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1839076647, }, - ["SpellDamageJewel"] = { affix = "of Mysticism", "(10-12)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "SpellDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, - ["StaffSpellDamageJewel"] = { affix = "Wizard's", "(14-16)% increased Spell Damage while wielding a Staff", statOrder = { 1118 }, level = 1, group = "StaffSpellDamageForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 1, 0, 0, 0, 0, 1 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 3496944181, }, - ["DualWieldingSpellDamageJewel_"] = { affix = "Sorcerer's", "(14-16)% increased Spell Damage while Dual Wielding", statOrder = { 1121 }, level = 1, group = "DualWieldingSpellDamageForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 1 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 1678690824, }, - ["ShieldSpellDamageJewel"] = { affix = "Battlemage's", "(14-16)% increased Spell Damage while holding a Shield", statOrder = { 1120 }, level = 1, group = "ShieldSpellDamageForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "bow", "staff", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 1 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 1766142294, }, - ["TrapDamageJewel"] = { affix = "Trapping", "(14-16)% increased Trap Damage", statOrder = { 854 }, level = 1, group = "TrapDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2941585404, }, - ["MineDamageJewel"] = { affix = "Sabotage", "(14-16)% increased Mine Damage", statOrder = { 1091 }, level = 1, group = "MineDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2137912951, }, - ["DamageJewel"] = { affix = "of Wounding", "(8-10)% increased Damage", statOrder = { 1087 }, level = 1, group = "DamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "damage" }, tradeHash = 2154246560, }, - ["MinionDamageJewel"] = { affix = "Leadership", "Minions deal (14-16)% increased Damage", statOrder = { 1646 }, level = 1, group = "MinionDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "damage", "minion" }, tradeHash = 1589917703, }, - ["FireDamageJewel"] = { affix = "Flaming", "(14-16)% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, }, - ["ColdDamageJewel"] = { affix = "Chilling", "(14-16)% increased Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, }, - ["LightningDamageJewel"] = { affix = "Humming", "(14-16)% increased Lightning Damage", statOrder = { 857 }, level = 1, group = "LightningDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, }, - ["PhysicalDamageJewel"] = { affix = "Sharpened", "(14-16)% increased Global Physical Damage", statOrder = { 1122 }, level = 1, group = "PhysicalDamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1310194496, }, - ["PhysicalDamagePercentUnique___1"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1122 }, level = 1, group = "PhysicalDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1310194496, }, - ["DamageOverTimeJewel"] = { affix = "of Entropy", "(10-12)% increased Damage over Time", statOrder = { 1104 }, level = 1, group = "DamageOverTimeForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "damage" }, tradeHash = 967627487, }, - ["DamageOverTimeUnique___1"] = { affix = "", "(8-12)% increased Damage over Time", statOrder = { 1104 }, level = 1, group = "DamageOverTimeForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 967627487, }, - ["ChaosDamageJewel"] = { affix = "Chaotic", "(9-13)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "ChaosDamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, - ["AreaDamageJewel"] = { affix = "of Blasting", "(10-12)% increased Area Damage", statOrder = { 1699 }, level = 1, group = "AreaDamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "damage" }, tradeHash = 4251717817, }, - ["MaceAttackSpeedJewel"] = { affix = "Beating", "(6-8)% increased Attack Speed with Maces or Sceptres", statOrder = { 1259 }, level = 1, group = "MaceAttackSpeedForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHash = 2515515064, }, - ["AxeAttackSpeedJewel"] = { affix = "Cleaving", "(6-8)% increased Attack Speed with Axes", statOrder = { 1255 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3550868361, }, - ["SwordAttackSpeedJewel"] = { affix = "Fencing", "(6-8)% increased Attack Speed with Swords", statOrder = { 1261 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 1, 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3293699237, }, - ["BowAttackSpeedJewel"] = { affix = "Volleying", "(6-8)% increased Attack Speed with Bows", statOrder = { 1260 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHash = 3759735052, }, - ["ClawAttackSpeedJewel"] = { affix = "Ripping", "(6-8)% increased Attack Speed with Claws", statOrder = { 1257 }, level = 1, group = "ClawAttackSpeedForJewel", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHash = 1421645223, }, - ["DaggerAttackSpeedJewel"] = { affix = "Slicing", "(6-8)% increased Attack Speed with Daggers", statOrder = { 1258 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHash = 2538566497, }, - ["WandAttackSpeedJewel"] = { affix = "Jinxing", "(6-8)% increased Attack Speed with Wands", statOrder = { 1262 }, level = 1, group = "WandAttackSpeedForJewel", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHash = 3720627346, }, - ["StaffAttackSpeedJewel"] = { affix = "Blunt", "(6-8)% increased Attack Speed with Quarterstaves", statOrder = { 1256 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 1, 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHash = 3283482523, }, - ["OneHandedMeleeAttackSpeedJewel"] = { affix = "Bandit's", "(4-6)% increased Attack Speed with One Handed Melee Weapons", statOrder = { 1254 }, level = 1, group = "OneHandedMeleeAttackSpeedForJewel", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 1813451228, }, - ["TwoHandedMeleeAttackSpeedJewel"] = { affix = "Warrior's", "(4-6)% increased Attack Speed with Two Handed Melee Weapons", statOrder = { 1253 }, level = 1, group = "TwoHandedMeleeAttackSpeedForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "bow", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 1917910910, }, - ["DualWieldingAttackSpeedJewel"] = { affix = "Harmonic", "(4-6)% increased Attack Speed while Dual Wielding", statOrder = { 1250 }, level = 1, group = "AttackSpeedWhileDualWieldingForJewel", weightKey = { "shield_mod", "two_handed_mod", "default", }, weightVal = { 0, 0, 1 }, modTags = { "attack", "speed" }, tradeHash = 4249220643, }, - ["DualWieldingCastSpeedJewel"] = { affix = "Resonant", "(3-5)% increased Cast Speed while Dual Wielding", statOrder = { 1281 }, level = 1, group = "CastSpeedWhileDualWieldingForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 1 }, modTags = { "caster", "speed" }, tradeHash = 2382196858, }, - ["ShieldAttackSpeedJewel"] = { affix = "Charging", "(4-6)% increased Attack Speed while holding a Shield", statOrder = { 1252 }, level = 1, group = "AttackSpeedWithAShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 1 }, modTags = { "attack", "speed" }, tradeHash = 3805075944, }, - ["ShieldCastSpeedJewel"] = { affix = "Warding", "(3-5)% increased Cast Speed while holding a Shield", statOrder = { 1282 }, level = 1, group = "CastSpeedWithAShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 1 }, modTags = { "caster", "speed" }, tradeHash = 1612163368, }, - ["StaffCastSpeedJewel"] = { affix = "Wright's", "(3-5)% increased Cast Speed while wielding a Staff", statOrder = { 1283 }, level = 1, group = "CastSpeedWithAStaffForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 1, 0, 0, 1 }, modTags = { "caster", "speed" }, tradeHash = 2066542501, }, - ["UnarmedAttackSpeedJewel"] = { affix = "Furious", "(6-8)% increased Unarmed Attack Speed with Melee Skills", statOrder = { 1265 }, level = 1, group = "AttackSpeedWhileUnarmedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHash = 1584440377, }, - ["AttackSpeedJewel"] = { affix = "of Berserking", "(3-5)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeedForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, - ["ProjectileSpeedJewel"] = { affix = "of Soaring", "(6-8)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "IncreasedProjectileSpeedForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "speed" }, tradeHash = 3759663284, }, - ["CastSpeedJewel"] = { affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["TrapThrowSpeedJewel"] = { affix = "Honed", "(6-8)% increased Trap Throwing Speed", statOrder = { 1597 }, level = 1, group = "TrapThrowSpeedForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 118398748, }, - ["MineLaySpeedJewel"] = { affix = "Arming", "(6-8)% increased Mine Throwing Speed", statOrder = { 1598 }, level = 1, group = "MineLaySpeedForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 1896971621, }, - ["AttackAndCastSpeedJewel"] = { affix = "of Zeal", "(2-4)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, - ["AttackAndCastSpeedJewelUniqueJewel43"] = { affix = "", "4% increased Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, - ["AttackAndCastSpeedUnique__1"] = { affix = "", "(10-15)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 75, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, - ["AttackAndCastSpeedUnique__2"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, - ["AttackAndCastSpeedUnique__3"] = { affix = "", "(6-9)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, - ["AttackAndCastSpeedUnique__4"] = { affix = "", "(6-10)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, - ["AttackAndCastSpeedUnique__5"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, - ["AttackAndCastSpeedUnique__6"] = { affix = "", "(5-7)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, - ["AttackAndCastSpeedUnique__7"] = { affix = "", "(5-8)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, - ["StrengthDexterityUnique__1"] = { affix = "", "+20 to Strength and Dexterity", statOrder = { 1075 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 538848803, }, - ["StrengthDexterityImplicitSword_1"] = { affix = "", "+50 to Strength and Dexterity", statOrder = { 1075 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 538848803, }, - ["StrengthIntelligenceUnique__1"] = { affix = "", "+20 to Strength and Intelligence", statOrder = { 1076 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1535626285, }, - ["StrengthIntelligenceUnique__2"] = { affix = "", "+(10-30) to Strength and Intelligence", statOrder = { 1076 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1535626285, }, - ["DexterityIntelligenceUnique__1__"] = { affix = "", "+20 to Dexterity and Intelligence", statOrder = { 1077 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 2300185227, }, - ["PhysicalDamageWhileHoldingAShield"] = { affix = "Flanking", "(12-14)% increased Attack Damage while holding a Shield", statOrder = { 1101 }, level = 1, group = "DamageWhileHoldingAShieldForJewel", weightKey = { "bow", "wand", "dual_wielding_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 1393393937, }, - ["FireGemCastSpeedJewel"] = { affix = "Pyromantic", "(3-5)% increased Cast Speed with Fire Skills", statOrder = { 1210 }, level = 1, group = "FireGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "elemental", "fire", "caster", "speed" }, tradeHash = 1476643878, }, - ["ColdGemCastSpeedJewel"] = { affix = "Cryomantic", "(3-5)% increased Cast Speed with Cold Skills", statOrder = { 1218 }, level = 1, group = "ColdGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "elemental", "cold", "caster", "speed" }, tradeHash = 928238845, }, - ["LightningGemCastSpeedJewel_"] = { affix = "Electromantic", "(3-5)% increased Cast Speed with Lightning Skills", statOrder = { 1223 }, level = 1, group = "LightningGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "elemental", "lightning", "caster", "speed" }, tradeHash = 1788635023, }, - ["ChaosGemCastSpeedJewel"] = { affix = "Withering", "(3-5)% increased Cast Speed with Chaos Skills", statOrder = { 1229 }, level = 1, group = "ChaosGemCastSpeedForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "speed" }, tradeHash = 2054902222, }, - ["CurseCastSpeedJewel_"] = { affix = "of Blasphemy", "Curse Skills have (5-10)% increased Cast Speed", statOrder = { 1869 }, level = 1, group = "CurseCastSpeedForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed", "curse" }, tradeHash = 2378065031, }, - ["StrengthJewel"] = { affix = "of Strength", "+(12-16) to Strength", statOrder = { 947 }, level = 1, group = "StrengthForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["DexterityJewel"] = { affix = "of Dexterity", "+(12-16) to Dexterity", statOrder = { 948 }, level = 1, group = "DexterityForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["IntelligenceJewel"] = { affix = "of Intelligence", "+(12-16) to Intelligence", statOrder = { 949 }, level = 1, group = "IntelligenceForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["StrengthDexterityJewel"] = { affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrder = { 1075 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHash = 538848803, }, - ["StrengthIntelligenceJewel"] = { affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrder = { 1076 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHash = 1535626285, }, - ["DexterityIntelligenceJewel"] = { affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrder = { 1077 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "attribute" }, tradeHash = 2300185227, }, - ["AllAttributesJewel"] = { affix = "of Adaption", "+(6-8) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributesForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "attribute" }, tradeHash = 1379411836, }, - ["IncreasedLifeJewel"] = { affix = "Healthy", "+(8-12) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLifeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, tradeHash = 3299347043, }, - ["PercentIncreasedLifeJewel"] = { affix = "Vivid", "(5-7)% increased maximum Life", statOrder = { 870 }, level = 1, group = "PercentIncreasedLifeForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "resource", "life" }, tradeHash = 983749596, }, - ["IncreasedManaJewel"] = { affix = "Learned", "+(8-12) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, tradeHash = 1050105434, }, - ["PercentIncreasedManaJewel"] = { affix = "Enlightened", "(8-10)% increased maximum Mana", statOrder = { 872 }, level = 1, group = "PercentIncreasedManaForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "resource", "mana" }, tradeHash = 2748665614, }, - ["IncreasedManaRegenJewel"] = { affix = "Energetic", "(12-15)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "IncreasedManaRegenForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["IncreasedEnergyShieldJewel_"] = { affix = "Glowing", "+(8-12) to maximum Energy Shield", statOrder = { 867 }, level = 1, group = "IncreasedEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3489782002, }, - ["EnergyShieldJewel"] = { affix = "Shimmering", "(6-8)% increased maximum Energy Shield", statOrder = { 868 }, level = 1, group = "EnergyShieldForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, }, - ["IncreasedLifeAndManaJewel"] = { affix = "Determined", "+(4-6) to maximum Life", "+(4-6) to maximum Mana", statOrder = { 869, 871 }, level = 1, group = "LifeAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, tradeHash = 1843765141, }, - ["PercentIncreasedLifeAndManaJewel"] = { affix = "Passionate", "(2-4)% increased maximum Life", "(4-6)% increased maximum Mana", statOrder = { 870, 872 }, level = 1, group = "PercentageLifeAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "green_herring", "resource", "life", "mana" }, tradeHash = 815489141, }, - ["EnergyShieldAndManaJewel"] = { affix = "Wise", "(2-4)% increased maximum Energy Shield", "(4-6)% increased maximum Mana", statOrder = { 868, 872 }, level = 1, group = "EnergyShieldAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "energy_shield", "resource", "mana", "defences" }, tradeHash = 90481046, }, - ["LifeAndEnergyShieldJewel"] = { affix = "Faithful", "(2-4)% increased maximum Energy Shield", "(2-4)% increased maximum Life", statOrder = { 868, 870 }, level = 1, group = "LifeAndEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 1207485992, }, - ["LifeLeechPermyriadJewel"] = { affix = "Hungering", "Leech (0.2-0.4)% of Physical Attack Damage as Life", statOrder = { 971 }, level = 1, group = "LifeLeechPermyriadForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 1 }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 2557965901, }, - ["ManaLeechPermyriadJewel"] = { affix = "Thirsting", "Leech (0.2-0.4)% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 1, group = "ManaLeechPermyriadForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 1 }, modTags = { "resource", "mana", "physical", "attack" }, tradeHash = 707457662, }, - ["LifeOnHitJewel"] = { affix = "of Rejuvenation", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 973 }, level = 1, group = "LifeGainPerTargetForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 1 }, modTags = { "resource", "life", "attack" }, tradeHash = 2797971005, }, - ["ManaOnHitJewel"] = { affix = "of Absorption", "Gain (1-2) Mana per Enemy Hit with Attacks", statOrder = { 1433 }, level = 1, group = "ManaGainPerTargetForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 1 }, modTags = { "resource", "mana", "attack" }, tradeHash = 820939409, }, - ["EnergyShieldOnHitJewel"] = { affix = "of Focus", "Gain (2-3) Energy Shield per Enemy Hit with Attacks", statOrder = { 1436 }, level = 1, group = "EnergyShieldGainPerTargetForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "energy_shield", "defences", "attack" }, tradeHash = 211381198, }, - ["LifeRecoupJewel"] = { affix = "of Infusion", "(4-6)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "resource", "life" }, tradeHash = 1444556985, }, - ["IncreasedArmourJewel"] = { affix = "Armoured", "(14-18)% increased Armour", statOrder = { 864 }, level = 1, group = "IncreasedArmourForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 1 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, }, - ["IncreasedEvasionJewel"] = { affix = "Evasive", "(14-18)% increased Evasion Rating", statOrder = { 866 }, level = 1, group = "IncreasedEvasionForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 1 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, }, - ["ArmourEvasionJewel"] = { affix = "Fighter's", "(6-12)% increased Armour", "(6-12)% increased Evasion Rating", statOrder = { 864, 866 }, level = 1, group = "ArmourEvasionForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "armour", "evasion", "defences" }, tradeHash = 855315578, }, - ["ArmourEnergyShieldJewel"] = { affix = "Paladin's", "(6-12)% increased Armour", "(2-4)% increased maximum Energy Shield", statOrder = { 864, 868 }, level = 1, group = "ArmourEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 1627905397, }, - ["EvasionEnergyShieldJewel"] = { affix = "Rogue's", "(6-12)% increased Evasion Rating", "(2-4)% increased maximum Energy Shield", statOrder = { 866, 868 }, level = 1, group = "EvasionEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 3667468782, }, - ["IncreasedDefensesJewel"] = { affix = "Defensive", "(4-6)% increased Global Defences", statOrder = { 2486 }, level = 1, group = "IncreasedDefensesForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, tradeHash = 1389153006, }, - ["ItemRarityJewel"] = { affix = "of Raiding", "(4-6)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemRarityForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHash = 3917489142, }, - ["IncreasedAccuracyJewel"] = { affix = "of Accuracy", "+(20-40) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracyForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, tradeHash = 803737631, }, - ["PercentIncreasedAccuracyJewel"] = { affix = "of Precision", "(10-14)% increased Accuracy Rating", statOrder = { 1268 }, level = 1, group = "IncreasedAccuracyPercentForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 1 }, modTags = { "attack" }, tradeHash = 624954515, }, - ["PercentIncreasedAccuracyJewelUnique__1"] = { affix = "", "20% increased Accuracy Rating", statOrder = { 1268 }, level = 1, group = "IncreasedAccuracyPercentForJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 624954515, }, - ["AccuracyAndCritsJewel"] = { affix = "of Deadliness", "(6-10)% increased Critical Hit Chance", "(6-10)% increased Accuracy Rating", statOrder = { 933, 1268 }, level = 1, group = "AccuracyAndCritsForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 1 }, modTags = { "attack", "critical" }, tradeHash = 2639697810, }, - ["CriticalStrikeChanceJewel"] = { affix = "of Menace", "(8-12)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CritChanceForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "critical" }, tradeHash = 587431675, }, - ["CriticalStrikeMultiplierJewel"] = { affix = "of Potency", "(9-12)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CritMultiplierForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "damage", "critical" }, tradeHash = 3556824919, }, - ["CritChanceWithMaceJewel"] = { affix = "of Striking FIX ME", "(12-16)% increased Critical Hit Chance with Maces or Sceptres", statOrder = { 1301 }, level = 1, group = "CritChanceWithMaceForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHash = 107161577, }, - ["CritChanceWithAxeJewel"] = { affix = "of Biting FIX ME", "(12-16)% increased Critical Hit Chance with Axes", statOrder = { 1304 }, level = 1, group = "CritChanceWithAxeForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHash = 2560468845, }, - ["CritChanceWithSwordJewel"] = { affix = "of Stinging FIX ME", "(12-16)% increased Critical Hit Chance with Swords", statOrder = { 1300 }, level = 1, group = "CritChanceWithSwordForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHash = 2630620421, }, - ["CritChanceWithBowJewel"] = { affix = "of the Sniper FIX ME", "(12-16)% increased Critical Hit Chance with Bows", statOrder = { 1297 }, level = 1, group = "CritChanceWithBowForJewel", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHash = 2091591880, }, - ["CritChanceWithClawJewel"] = { affix = "of the Eagle FIX ME", "(12-16)% increased Critical Hit Chance with Claws", statOrder = { 1298 }, level = 1, group = "CritChanceWithClawForJewel", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHash = 3428039188, }, - ["CritChanceWithDaggerJewel"] = { affix = "of Needling FIX ME", "(12-16)% increased Critical Hit Chance with Daggers", statOrder = { 1299 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHash = 4018186542, }, - ["CritChanceWithWandJewel"] = { affix = "of Divination FIX ME", "(12-16)% increased Critical Hit Chance with Wands", statOrder = { 1303 }, level = 1, group = "CritChanceWithWandForJewel", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHash = 1729982003, }, - ["CritChanceWithStaffJewel"] = { affix = "of Tyranny FIX ME", "(12-16)% increased Critical Hit Chance with Quarterstaves", statOrder = { 1302 }, level = 1, group = "CritChanceWithStaffForJewel", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, tradeHash = 3621953418, }, - ["CritMultiplierWithMaceJewel"] = { affix = "of Crushing FIX ME", "+(8-10)% to Critical Damage Bonus with Maces or Sceptres", statOrder = { 1321 }, level = 1, group = "CritMultiplierWithMaceForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 458899422, }, - ["CritMultiplierWithAxeJewel"] = { affix = "of Execution FIX ME", "+(8-10)% to Critical Damage Bonus with Axes", statOrder = { 1322 }, level = 1, group = "CritMultiplierWithAxeForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 4219746989, }, - ["CritMultiplierWithSwordJewel"] = { affix = "of Severing FIX ME", "+(8-10)% to Critical Damage Bonus with Swords", statOrder = { 1324 }, level = 1, group = "CritMultiplierWithSwordForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 3114492047, }, - ["CritMultiplierWithBowJewel"] = { affix = "of the Hunter FIX ME", "(8-10)% increased Critical Damage Bonus with Bows", statOrder = { 1323 }, level = 1, group = "CritMultiplierWithBowForJewel", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 1712221299, }, - ["CritMultiplierWithClawJewel"] = { affix = "of the Bear FIX ME", "+(8-10)% to Critical Damage Bonus with Claws", statOrder = { 1326 }, level = 1, group = "CritMultiplierWithClawForJewel", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 2811834828, }, - ["CritMultiplierWithDaggerJewel"] = { affix = "of Assassination FIX ME", "(8-10)% increased Critical Damage Bonus with Daggers", statOrder = { 1320 }, level = 1, group = "CritMultiplierWithDaggerForJewel", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 3998601568, }, - ["CritMultiplierWithWandJewel_"] = { affix = "of Evocation FIX ME", "+(8-10)% to Critical Damage Bonus with Wands", statOrder = { 1325 }, level = 1, group = "CritMultiplierWithWandForJewel", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 1241396104, }, - ["CritMultiplierWithStaffJewel"] = { affix = "of Trauma FIX ME", "(8-10)% increased Critical Damage Bonus with Quarterstaves", statOrder = { 1327 }, level = 1, group = "CritMultiplierWithStaffForJewel", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 1661096452, }, - ["OneHandedCritChanceJewel"] = { affix = "Harming", "(14-18)% increased Critical Hit Chance with One Handed Melee Weapons", statOrder = { 1310 }, level = 1, group = "OneHandedCritChanceForJewel", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 2381842786, }, - ["TwoHandedCritChanceJewel"] = { affix = "Sundering", "(14-18)% increased Critical Hit Chance with Two Handed Melee Weapons", statOrder = { 1308 }, level = 1, group = "TwoHandedCritChanceForJewel", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 764295120, }, - ["DualWieldingCritChanceJewel"] = { affix = "Technical", "(14-18)% increased Attack Critical Hit Chance while Dual Wielding", statOrder = { 1312 }, level = 1, group = "DualWieldingCritChanceForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 3702513529, }, - ["ShieldCritChanceJewel"] = { affix = "", "(10-14)% increased Critical Hit Chance while holding a Shield", statOrder = { 1306 }, level = 1, group = "ShieldCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "critical" }, tradeHash = 1215447494, }, - ["MeleeCritChanceJewel"] = { affix = "of Weight", "(10-14)% increased Melee Critical Hit Chance", statOrder = { 1311 }, level = 1, group = "MeleeCritChanceForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 1199429645, }, - ["SpellCritChanceJewel"] = { affix = "of Annihilation", "(10-14)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCritChanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "caster", "critical" }, tradeHash = 737908626, }, - ["TrapCritChanceJewel_"] = { affix = "Inescapable", "(12-16)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 1, group = "TrapCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHash = 1192661666, }, - ["TrapCritChanceUnique__1"] = { affix = "", "(100-120)% increased Critical Hit Chance with Traps", statOrder = { 936 }, level = 1, group = "TrapCritChanceForJewel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1192661666, }, - ["MineCritChanceJewel"] = { affix = "Crippling", "(12-16)% increased Critical Hit Chance with Mines", statOrder = { 1307 }, level = 1, group = "MineCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, tradeHash = 214031493, }, - ["FireCritChanceJewel"] = { affix = "Incinerating", "(14-18)% increased Critical Hit Chance with Fire Skills", statOrder = { 1313 }, level = 1, group = "FireCritChanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "fire", "critical" }, tradeHash = 1104796138, }, - ["ColdCritChanceJewel"] = { affix = "Avalanching", "(14-18)% increased Critical Hit Chance with Cold Skills", statOrder = { 1315 }, level = 1, group = "ColdCritChanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "cold", "critical" }, tradeHash = 3337344042, }, - ["LightningCritChanceJewel"] = { affix = "Thundering", "(14-18)% increased Critical Hit Chance with Lightning Skills", statOrder = { 1314 }, level = 1, group = "LightningCritChanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "lightning", "critical" }, tradeHash = 1186596295, }, - ["ElementalCritChanceJewel"] = { affix = "of the Apocalypse", "(10-14)% increased Critical Hit Chance with Elemental Skills", statOrder = { 1316 }, level = 1, group = "ElementalCritChanceForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "critical" }, tradeHash = 439950087, }, - ["ChaosCritChanceJewel"] = { affix = "Obliterating", "(12-16)% increased Critical Hit Chance with Chaos Skills", statOrder = { 1317 }, level = 1, group = "ChaosCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, tradeHash = 1424360933, }, - ["OneHandCritMultiplierJewel_"] = { affix = "Piercing", "(15-18)% increased Critical Damage Bonus with One Handed Melee Weapons", statOrder = { 1329 }, level = 1, group = "OneHandCritMultiplierForJewel", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 670153687, }, - ["TwoHandCritMultiplierJewel"] = { affix = "Rupturing", "+(15-18)% to Critical Damage Bonus with Two Handed Melee Weapons", statOrder = { 1309 }, level = 1, group = "TwoHandCritMultiplierForJewel", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 252507949, }, - ["DualWieldingCritMultiplierJewel"] = { affix = "Puncturing", "+(15-18)% to Critical Damage Bonus while Dual Wielding", statOrder = { 3811 }, level = 1, group = "DualWieldingCritMultiplierForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 2546185479, }, - ["ShieldCritMultiplierJewel"] = { affix = "", "+(6-8)% to Melee Critical Damage Bonus while holding a Shield", statOrder = { 1332 }, level = 1, group = "ShieldCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 3668589927, }, - ["MeleeCritMultiplier"] = { affix = "of Demolishing", "+(12-15)% to Melee Critical Damage Bonus", statOrder = { 1330 }, level = 1, group = "MeleeCritMultiplierForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 1, 0 }, modTags = { "damage", "attack", "critical" }, tradeHash = 4237442815, }, - ["SpellCritMultiplier"] = { affix = "of Unmaking", "(12-15)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHash = 274716455, }, - ["TrapCritMultiplier"] = { affix = "Debilitating", "+(8-10)% to Critical Damage Bonus with Traps", statOrder = { 940 }, level = 1, group = "TrapCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHash = 1780168381, }, - ["MineCritMultiplier"] = { affix = "Incapacitating", "+(8-10)% to Critical Damage Bonus with Mines", statOrder = { 1333 }, level = 1, group = "MineCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, tradeHash = 2529112796, }, - ["FireCritMultiplier"] = { affix = "Infernal", "+(15-18)% to Critical Damage Bonus with Fire Skills", statOrder = { 1334 }, level = 1, group = "FireCritMultiplierForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "critical" }, tradeHash = 2307547323, }, - ["ColdCritMultiplier"] = { affix = "Arctic", "+(15-18)% to Critical Damage Bonus with Cold Skills", statOrder = { 1336 }, level = 1, group = "ColdCritMultiplierForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "critical" }, tradeHash = 915908446, }, - ["LightningCritMultiplier"] = { affix = "Surging", "+(15-18)% to Critical Damage Bonus with Lightning Skills", statOrder = { 1335 }, level = 1, group = "LightningCritMultiplierForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "critical" }, tradeHash = 2441475928, }, - ["ElementalCritMultiplier"] = { affix = "of the Elements", "+(12-15)% to Critical Damage Bonus with Elemental Skills", statOrder = { 1337 }, level = 1, group = "ElementalCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, tradeHash = 1569407745, }, - ["ChaosCritMultiplier"] = { affix = "", "+(8-10)% to Critical Damage Bonus with Chaos Skills", statOrder = { 1338 }, level = 1, group = "ChaosCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, tradeHash = 2710238363, }, - ["FireResistanceJewel"] = { affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["ColdResistanceJewel"] = { affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["LightningResistanceJewel"] = { affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["FireColdResistanceJewel"] = { affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrder = { 2454 }, level = 1, group = "FireColdResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "fire", "cold", "resistance" }, tradeHash = 2915988346, }, - ["FireLightningResistanceJewel"] = { affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrder = { 2455 }, level = 1, group = "FireLightningResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "fire", "lightning", "resistance" }, tradeHash = 3441501978, }, - ["ColdLightningResistanceJewel"] = { affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrder = { 2456 }, level = 1, group = "ColdLightningResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "cold", "lightning", "resistance" }, tradeHash = 4277795662, }, - ["AllResistancesJewel"] = { affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistancesForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "resistance" }, tradeHash = 2901986750, }, - ["ChaosResistanceJewel"] = { affix = "of Order", "+(7-13)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistanceForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "chaos", "resistance" }, tradeHash = 2923486259, }, - ["StunDurationJewel"] = { affix = "of Stunning", "(10-14)% increased Stun Duration on Enemies", statOrder = { 986 }, level = 1, group = "StunDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { }, tradeHash = 2517001139, }, - ["StunRecoveryJewel"] = { affix = "of Recovery", "(25-35)% increased Stun Recovery", statOrder = { 993 }, level = 1, group = "StunRecoveryForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { }, tradeHash = 2511217560, }, - ["ManaCostReductionJewel"] = { affix = "of Efficiency", "(3-5)% reduced Mana Cost of Skills", statOrder = { 1560 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "resource", "mana" }, tradeHash = 474294393, }, - ["ManaCostReductionUniqueJewel44"] = { affix = "", "3% reduced Mana Cost of Skills", statOrder = { 1560 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 474294393, }, - ["ManaCostIncreasedUniqueCorruptedJewel3"] = { affix = "", "50% increased Mana Cost of Skills", statOrder = { 1560 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 474294393, }, - ["FasterAilmentDamageJewel"] = { affix = "Decrepifying", "Damaging Ailments deal damage (4-6)% faster", statOrder = { 5671 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "ailment" }, tradeHash = 538241406, }, - ["AuraRadiusJewel"] = { affix = "Hero's FIX ME", "(10-15)% increased Area of Effect of Aura Skills", statOrder = { 1874 }, level = 1, group = "AuraRadiusForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, tradeHash = 895264825, }, - ["CurseRadiusJewel"] = { affix = "Hexing FIX ME", "(8-10)% increased Area of Effect of Curses", statOrder = { 1875 }, level = 1, group = "CurseRadiusForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, tradeHash = 153777645, }, - ["AvoidIgniteJewel"] = { affix = "Dousing FIX ME", "(6-8)% chance to Avoid being Ignited", statOrder = { 1529 }, level = 1, group = "AvoidIgniteForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1783006896, }, - ["AvoidShockJewel"] = { affix = "Insulating FIX ME", "(6-8)% chance to Avoid being Shocked", statOrder = { 1531 }, level = 1, group = "AvoidShockForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1871765599, }, - ["AvoidFreezeJewel"] = { affix = "Thawing FIX ME", "(6-8)% chance to Avoid being Frozen", statOrder = { 1528 }, level = 1, group = "AvoidFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1514829491, }, - ["AvoidChillJewel"] = { affix = "Heating FIX ME", "(6-8)% chance to Avoid being Chilled", statOrder = { 1527 }, level = 1, group = "AvoidChillForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3483999943, }, - ["AvoidStunJewel"] = { affix = "FIX ME", "(6-8)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStunForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHash = 4262448838, }, - ["ChanceToFreezeJewel"] = { affix = "FIX ME", "(2-3)% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 44571480, }, - ["ChanceToShockJewel"] = { affix = "FIX ME", "(2-3)% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShockForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1538773178, }, - ["EnduranceChargeDurationJewel"] = { affix = "of Endurance", "(10-14)% increased Endurance Charge Duration", statOrder = { 1789 }, level = 1, group = "EnduranceChargeDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge" }, tradeHash = 1170174456, }, - ["FrenzyChargeDurationJewel"] = { affix = "of Frenzy", "(10-14)% increased Frenzy Charge Duration", statOrder = { 1791 }, level = 1, group = "FrenzyChargeDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge" }, tradeHash = 3338298622, }, - ["PowerChargeDurationJewel_"] = { affix = "of Power", "(10-14)% increased Power Charge Duration", statOrder = { 1806 }, level = 1, group = "PowerChargeDurationForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge" }, tradeHash = 3872306017, }, - ["KnockbackChanceJewel_"] = { affix = "of Fending", "(4-6)% chance to Knock Enemies Back on hit", statOrder = { 1662 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, tradeHash = 977908611, }, - ["KnockbackChanceUnique__1"] = { affix = "", "10% chance to Knock Enemies Back on hit", statOrder = { 1662 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 977908611, }, - ["BlockDualWieldingJewel"] = { affix = "Parrying", "+1% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1060 }, level = 1, group = "BlockDualWieldingForJewel", weightKey = { "staff", "two_handed_mod", "shield_mod", "default", }, weightVal = { 0, 0, 0, 1 }, modTags = { "block" }, tradeHash = 2166444903, }, - ["BlockShieldJewel"] = { affix = "Shielding", "+1% Chance to Block Attack Damage while holding a Shield", statOrder = { 1056 }, level = 1, group = "BlockShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "default", }, weightVal = { 0, 0, 1 }, modTags = { "block" }, tradeHash = 4061558269, }, - ["BlockStaffJewel"] = { affix = "Deflecting", "+1% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1059 }, level = 1, group = "BlockStaffForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "default", }, weightVal = { 0, 1, 0, 0, 0, 1, 0 }, modTags = { "block" }, tradeHash = 1778298516, }, - ["FreezeDurationJewel"] = { affix = "of the Glacier", "(12-16)% increased Chill and Freeze Duration on Enemies", statOrder = { 5264 }, level = 1, group = "FreezeDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1308198396, }, - ["ShockDurationJewel"] = { affix = "of the Storm", "(12-16)% increased Shock Duration", statOrder = { 1540 }, level = 1, group = "ShockDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3668351662, }, - ["IgniteDurationJewel"] = { affix = "of Immolation", "(3-5)% increased Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "BurnDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1086147743, }, - ["ChillAndShockEffectOnYouJewel"] = { affix = "of Insulation", "15% reduced effect of Chill and Shock on you", statOrder = { 9259 }, level = 1, group = "ChillAndShockEffectOnYouJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, tradeHash = 1984113628, }, - ["CurseEffectOnYouJewel"] = { affix = "of Hexwarding", "(25-30)% reduced effect of Curses on you", statOrder = { 1835 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "curse" }, tradeHash = 3407849389, }, - ["IgniteDurationOnYouJewel"] = { affix = "of the Flameruler", "(30-35)% reduced Ignite Duration on you", statOrder = { 996 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 986397080, }, - ["ChillEffectOnYouJewel"] = { affix = "of the Snowbreather", "(30-35)% reduced Effect of Chill on you", statOrder = { 1422 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1478653032, }, - ["ShockEffectOnYouJewel"] = { affix = "of the Stormdweller", "(30-35)% reduced effect of Shock on you", statOrder = { 9261 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3801067695, }, - ["PoisonDurationOnYouJewel"] = { affix = "of Neutralisation", "(30-35)% reduced Poison Duration on you", statOrder = { 1000 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "default", }, weightVal = { 1 }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3301100256, }, - ["BleedDurationOnYouJewel"] = { affix = "of Stemming", "(30-35)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 1, group = "ReducedBleedDuration", weightKey = { "default", }, weightVal = { 1 }, modTags = { "bleed", "physical", "ailment" }, tradeHash = 1692879867, }, - ["ManaReservationEfficiencyJewel"] = { affix = "Cerebral", "(2-3)% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 1 }, modTags = { "resource", "mana" }, tradeHash = 4237190083, }, - ["FlaskDurationJewel"] = { affix = "Prolonging", "(6-10)% increased Flask Effect Duration", statOrder = { 879 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHash = 3741323227, }, - ["FreezeChanceAndDurationJewel"] = { affix = "of Freezing", "(3-5)% chance to Freeze", "(12-16)% increased Freeze Duration on Enemies", statOrder = { 989, 1541 }, level = 1, group = "FreezeChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1936010701, }, - ["ShockChanceAndDurationJewel"] = { affix = "of Shocking", "(3-5)% chance to Shock", "(12-16)% increased Shock Duration", statOrder = { 991, 1540 }, level = 1, group = "ShockChanceAndDurationForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2971420375, }, - ["IgniteChanceAndDurationJewel"] = { affix = "of Burning", "(6-8)% increased Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1413663783, }, - ["PoisonChanceAndDurationForJewel"] = { affix = "of Poisoning", "(6-8)% increased Poison Duration", "(3-5)% chance to Poison on Hit", statOrder = { 2786, 2789 }, level = 1, group = "PoisonChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2866047695, }, - ["BleedChanceAndDurationForJewel__"] = { affix = "of Bleeding", "Attacks have (3-5)% chance to cause Bleeding", "(12-16)% increased Bleeding Duration", statOrder = { 2159, 4522 }, level = 1, group = "BleedChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 6403334, }, - ["ImpaleChanceForJewel_"] = { affix = "of Impaling", "(5-7)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4455 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "physical", "attack" }, tradeHash = 3739863694, }, - ["BurningDamageForJewel"] = { affix = "of Combusting", "(16-20)% increased Burning Damage", statOrder = { 1554 }, level = 1, group = "BurningDamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHash = 1175385867, }, - ["EnergyShieldDelayJewel"] = { affix = "Serene", "(4-6)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelayForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, }, - ["EnergyShieldRateJewel"] = { affix = "Fevered", "(6-8)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRechargeRateForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, }, - ["MinionBlockJewel"] = { affix = "of the Wall", "Minions have +(2-4)% Chance to Block Attack Damage", statOrder = { 2552 }, level = 1, group = "MinionBlockForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "block", "minion" }, tradeHash = 3374054207, }, - ["MinionLifeJewel"] = { affix = "Master's", "Minions have (8-12)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLifeForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, }, - ["MinionElementalResistancesJewel"] = { affix = "of Resilience", "Minions have +(11-15)% to all Elemental Resistances", statOrder = { 2558 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "elemental", "resistance", "minion" }, tradeHash = 1423639565, }, - ["MinionAccuracyRatingJewel"] = { affix = "of Training", "(22-26)% increased Minion Accuracy Rating", statOrder = { 8446 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "attack", "minion" }, tradeHash = 1718147982, }, - ["MinionElementalResistancesUnique__1"] = { affix = "", "Minions have +(7-10)% to all Elemental Resistances", statOrder = { 2558 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, tradeHash = 1423639565, }, - ["TotemDamageJewel"] = { affix = "Shaman's", "(12-16)% increased Totem Damage", statOrder = { 1089 }, level = 1, group = "TotemDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "damage" }, tradeHash = 3851254963, }, - ["ReducedTotemDamageUniqueJewel26"] = { affix = "", "(30-50)% reduced Totem Damage", statOrder = { 1089 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3851254963, }, - ["TotemDamageUnique__1_"] = { affix = "", "40% increased Totem Damage", statOrder = { 1089 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3851254963, }, - ["TotemLifeJewel"] = { affix = "Carved", "(8-12)% increased Totem Life", statOrder = { 1459 }, level = 1, group = "TotemLifeForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "resource", "life" }, tradeHash = 686254215, }, - ["TotemElementalResistancesJewel"] = { affix = "of Runes", "Totems gain +(6-10)% to all Elemental Resistances", statOrder = { 2442 }, level = 1, group = "TotemElementalResistancesForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "resistance" }, tradeHash = 1809006367, }, - ["JewelStrToDex"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 2671 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 2850960254, }, - ["JewelStrToDexUniqueJewel13"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 2671 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 2850960254, }, - ["DexterityUniqueJewel13"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["JewelDexToInt"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 2674 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1971303613, }, - ["JewelDexToIntUniqueJewel11"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 2674 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1971303613, }, - ["IntelligenceUniqueJewel11"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["JewelIntToStr"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 2675 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1903968940, }, - ["JewelIntToStrUniqueJewel34"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 2675 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1903968940, }, - ["StrengthUniqueJewel34"] = { affix = "", "+(16-24) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["JewelStrToInt"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 2672 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 2332369917, }, - ["JewelStrToIntUniqueJewel35"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 2672 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 2332369917, }, - ["IntelligenceUniqueJewel35"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 328541901, }, - ["JewelIntToDex"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 2676 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1956000455, }, - ["JewelIntToDexUniqueJewel36"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 2676 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1956000455, }, - ["DexterityUniqueJewel36"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3261801346, }, - ["JewelDexToStr"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 2673 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3577105420, }, - ["JewelDexToStrUniqueJewel37"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 2673 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 3577105420, }, - ["StrengthUniqueJewel37"] = { affix = "", "+(16-24) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4080418644, }, - ["ReducedAttackAndCastSpeedUniqueGlovesStrInt4"] = { affix = "", "(20-30)% reduced Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, - ["AttackAndCastSpeedUniqueRing39"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2672805335, }, - ["LifeLeechLocalPermyriadUniqueOneHandMace8__"] = { affix = "", "Leeches 1% of Physical Damage as Life", statOrder = { 972 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, }, - ["AoEKnockBackOnFlaskUseUniqueFlask9_"] = { affix = "", "Knocks Back Enemies in an Area when you use a Flask", statOrder = { 653 }, level = 1, group = "AoEKnockBackOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3591397930, }, - ["AttacksCostNoManaUniqueTwoHandAxe9"] = { affix = "", "Your Attacks do not cost Mana", statOrder = { 1569 }, level = 1, group = "AttacksCostNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 4080656180, }, - ["CannotLeechOrRegenerateManaUniqueTwoHandAxe9"] = { affix = "", "Cannot Leech or Regenerate Mana", statOrder = { 2241 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 2918242917, }, - ["CannotLeechOrRegenerateManaUnique__1_"] = { affix = "", "Cannot Leech or Regenerate Mana", statOrder = { 2241 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 2918242917, }, - ["ResoluteTechniqueUniqueTwoHandAxe9"] = { affix = "", "Resolute Technique", statOrder = { 10078 }, level = 1, group = "ResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 3943945975, }, - ["JewelUniqueAllocateDisconnectedPassives"] = { affix = "", "Passives in Radius can be Allocated without being connected to your tree", statOrder = { 806 }, level = 1, group = "JewelUniqueAllocateDisconnectedPassives", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2719662643, }, - ["JewelRingRadiusValuesUnique__1"] = { affix = "", "Only affects Passives in Very Small Ring", statOrder = { 13 }, level = 1, group = "JewelRingRadiusValues", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3642528642, }, - ["JewelRingRadiusValuesUnique__2"] = { affix = "", "Only affects Passives in Medium-Large Ring", statOrder = { 13 }, level = 1, group = "JewelRingRadiusValues", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3642528642, }, - ["AllocateDisconnectedPassivesDonutUnique__1"] = { affix = "", "Passives in Radius can be Allocated without being connected to your tree", statOrder = { 806 }, level = 1, group = "AllocateDisconnectedPassivesDonut", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4077035099, }, - ["AvoidStunUniqueRingVictors"] = { affix = "", "(10-20)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, }, - ["AvoidStunUnique__1"] = { affix = "", "30% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, }, - ["AvoidElementalAilmentsUnique__1_"] = { affix = "", "30% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, }, - ["AvoidElementalAilmentsUnique__2"] = { affix = "", "(20-25)% chance to Avoid Elemental Ailments", statOrder = { 1526 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3005472710, }, - ["LocalChanceToBleedImplicitMarakethRapier1"] = { affix = "", "15% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, - ["LocalChanceToBleedImplicitMarakethRapier2"] = { affix = "", "20% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, - ["LocalChanceToBleedUniqueDagger12"] = { affix = "", "30% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, - ["LocalChanceToBleedUniqueOneHandMace8"] = { affix = "", "30% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, - ["LocalChanceToBleedUnique__1__"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, - ["ChanceToBleedUnique__1_"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2159 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3204820200, }, - ["ChanceToBleedUnique__2__"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2159 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3204820200, }, - ["ChanceToBleedUnique__3_"] = { affix = "", "Attacks have 15% chance to cause Bleeding", statOrder = { 2159 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3204820200, }, - ["StealRareModUniqueJewel3"] = { affix = "", "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 2680 }, level = 1, group = "JewelStealRareMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3355050323, }, - ["UnarmedAreaOfEffectUniqueJewel4"] = { affix = "", "(10-15)% increased Area of Effect while Unarmed", statOrder = { 2677 }, level = 1, group = "UnarmedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2216127021, }, - ["UnarmedStrikeRangeUniqueJewel__1_"] = { affix = "", "+(3-4) to Melee Strike Range while Unarmed", statOrder = { 2698 }, level = 1, group = "UnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3273962791, }, - ["UniqueJewelMeleeToBow"] = { affix = "", "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers", statOrder = { 2687 }, level = 1, group = "UniqueJewelMeleeToBow", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2018468320, }, - ["ChaosDamageIncreasedPerIntUniqueJewel2"] = { affix = "", "5% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius", statOrder = { 2691 }, level = 1, group = "ChaosDamageIncreasedPerInt", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 3540967981, }, - ["PassivesApplyToMinionsUniqueJewel7"] = { affix = "", "Passives in Radius apply to Minions instead of you", statOrder = { 2692 }, level = 1, group = "PassivesApplyToMinionsJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2054270841, }, - ["SpellDamagePerIntelligenceUniqueStaff12"] = { affix = "", "2% increased Spell Damage per 10 Intelligence", statOrder = { 2395 }, level = 1, group = "SpellDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2818518881, }, - ["NearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { affix = "", "Culling Strike", statOrder = { 1700 }, level = 1, group = "GrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2524254339, }, - ["NearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "IncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3917489142, }, - ["NearbyAlliesHaveCullingStrikeUnique__1"] = { affix = "", "Culling Strike", statOrder = { 1700 }, level = 1, group = "GrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2524254339, }, - ["NearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "IncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3917489142, }, - ["NearbyAlliesHaveCriticalStrikeMultiplierUnique__1"] = { affix = "", "50% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3556824919, }, - ["LifeOnCorpseRemovalUniqueJewel14"] = { affix = "", "Recover 2% of maximum Life when you Consume a corpse", statOrder = { 2678 }, level = 1, group = "LifeOnCorpseRemoval", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2715345125, }, - ["TotemLifePerStrengthUniqueJewel15"] = { affix = "", "3% increased Totem Life per 10 Strength Allocated in Radius", statOrder = { 2679 }, level = 1, group = "TotemLifePerStrengthInRadius", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 768628581, }, - ["TotemsCannotBeStunnedUniqueJewel15"] = { affix = "", "Totems cannot be Stunned", statOrder = { 2684 }, level = 1, group = "TotemsCannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 335735137, }, - ["FireDamagePerBuffUniqueJewel17"] = { affix = "", "Adds (3-5) to (8-12) Fire Attack Damage per Buff on you", statOrder = { 1150 }, level = 1, group = "FireDamagePerBuff", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 761505024, }, - ["FireSpellDamagePerBuffUniqueJewel17"] = { affix = "", "Adds (2-3) to (5-8) Fire Spell Damage per Buff on you", statOrder = { 1151 }, level = 1, group = "FireSpellDamagePerBuff", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 3434279150, }, - ["MinionLifeRecoveryOnBlockUniqueJewel18"] = { affix = "", "Minions Recover 2% of their maximum Life when they Block", statOrder = { 2683 }, level = 1, group = "MinionLifeRecoveryOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life", "minion" }, tradeHash = 676967140, }, - ["MinionLifeRecoveryOnBlockUnique__1"] = { affix = "", "Minions Recover 10% of their maximum Life when they Block", statOrder = { 2683 }, level = 1, group = "MinionLifeRecoveryOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life", "minion" }, tradeHash = 676967140, }, - ["IncreasedDamageWhileLeechingLifeUniqueJewel19"] = { affix = "", "(25-30)% increased Damage while Leeching", statOrder = { 2685 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 310246444, }, - ["IncreasedDamageWhileLeechingUnique__1"] = { affix = "", "(30-40)% increased Damage while Leeching", statOrder = { 2685 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 310246444, }, - ["IncreasedDamageWhileLeechingUnique__2__"] = { affix = "", "(15-25)% increased Damage while Leeching", statOrder = { 2685 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 310246444, }, - ["MovementVelocityWhileIgnitedUniqueJewel20"] = { affix = "", "(10-20)% increased Movement Speed while Ignited", statOrder = { 2460 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 581625445, }, - ["MovementVelocityWhileIgnitedUnique__1"] = { affix = "", "10% increased Movement Speed while Ignited", statOrder = { 2460 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 581625445, }, - ["MovementVelocityWhileIgnitedUnique__2"] = { affix = "", "(10-20)% increased Movement Speed while Ignited", statOrder = { 2460 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 581625445, }, - ["FortifyOnMeleeHitUniqueJewel22"] = { affix = "", "Melee Hits have 10% chance to Fortify", statOrder = { 1938 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1166417447, }, - ["DamageTakenUniqueJewel24"] = { affix = "", "10% increased Damage taken", statOrder = { 1888 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3691641145, }, - ["IncreasedDamagePerMagicItemJewel25"] = { affix = "", "(20-25)% increased Damage for each Magic Item Equipped", statOrder = { 2699 }, level = 1, group = "IncreasedDamagePerMagicItem", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 886366428, }, - ["AdditionalTotemProjectilesUniqueJewel26"] = { affix = "", "Totems fire 2 additional Projectiles", statOrder = { 2701 }, level = 1, group = "AdditionalTotemProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 736847554, }, - ["SpellDamageWithNoManaReservedUniqueJewel30"] = { affix = "", "(40-60)% increased Spell Damage while no Mana is Reserved", statOrder = { 2702 }, level = 1, group = "SpellDamageWithNoManaReserved", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 3779823630, }, - ["AllAttributesPerAssignedKeystoneUniqueJewel32"] = { affix = "", "4% increased Attributes per allocated Keystone", statOrder = { 2705 }, level = 1, group = "AllAttributesPerAssignedKeystone", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 1212897608, }, - ["LifeOnHitPerStatusAilmentOnEnemyUniqueJewel33"] = { affix = "", "Gain 3 Life per Elemental Ailment on Enemies Hit with Attacks", statOrder = { 2694 }, level = 1, group = "LifeOnHitPerStatusAilmentOnEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, tradeHash = 1609999275, }, - ["LifeOnSpellHitPerStatusAilmentOnEnemyUniqueJewel33"] = { affix = "", "Gain 3 Life per Elemental Ailment on Enemies Hit with Spells", statOrder = { 2695 }, level = 1, group = "LifeOnSpellHitPerStatusAilmentOnEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, tradeHash = 622657842, }, - ["ItemLimitUniqueJewel8"] = { affix = "", "Survival", statOrder = { 9994 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2995661301, }, - ["ItemLimitUniqueJewel9"] = { affix = "", "Survival", statOrder = { 9994 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2995661301, }, - ["ItemLimitUniqueJewel10"] = { affix = "", "Survival", statOrder = { 9994 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2995661301, }, - ["DisplayNearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have Culling Strike", statOrder = { 2202 }, level = 1, group = "DisplayGrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1560540713, }, - ["DisplayNearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have 30% increased Item Rarity", statOrder = { 1391 }, level = 1, group = "DisplayIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1722463112, }, - ["DisplayNearbyAlliesHaveCriticalStrikeMultiplierTwoHandAxe9"] = { affix = "", "Nearby Allies have +50% to Critical Damage Bonus", statOrder = { 7204 }, level = 1, group = "DisplayGrantsCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3152714748, }, - ["DisplayNearbyAlliesHaveFortifyTwoHandAxe9"] = { affix = "", "Nearby Allies have +10 Fortification", statOrder = { 7206 }, level = 1, group = "DisplayGrantsFortify", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 244825991, }, - ["AdditionalVaalSoulOnKillUniqueCorruptedJewel4_"] = { affix = "", "(20-30)% chance to gain an additional Vaal Soul on Kill", statOrder = { 2722 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHash = 1962922582, }, - ["VaalSkillDurationUniqueCorruptedJewel5"] = { affix = "", "(15-20)% increased Vaal Skill Effect Duration", statOrder = { 2723 }, level = 1, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHash = 547412107, }, - ["VaalSkillRefundChanceUniqueCorruptedJewel5"] = { affix = "", "Vaal Skills have (15-20)% chance to regain consumed Souls when used", statOrder = { 9823 }, level = 1, group = "VaalSkillRefundChance", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHash = 2833218772, }, - ["VaalSkillCriticalStrikeChanceCorruptedJewel6"] = { affix = "", "(80-120)% increased Vaal Skill Critical Hit Chance", statOrder = { 2725 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical", "vaal" }, tradeHash = 3165492062, }, - ["VaalSkillCriticalStrikeMultiplierCorruptedJewel6"] = { affix = "", "+(22-30)% to Vaal Skill Critical Damage Bonus", statOrder = { 2726 }, level = 1, group = "VaalSkillCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical", "vaal" }, tradeHash = 2070982674, }, - ["AttackDamageUniqueJewel42"] = { affix = "", "10% increased Attack Damage", statOrder = { 1093 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2843214518, }, - ["IncreasedFlaskEffectUniqueJewel45"] = { affix = "", "Flasks applied to you have 8% increased Effect", statOrder = { 2398 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 114734841, }, - ["CurseEffectivenessUniqueJewel45"] = { affix = "", "4% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2353576063, }, - ["CurseEffectivenessUnique__2_"] = { affix = "", "(15-20)% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2353576063, }, - ["CurseEffectivenessUnique__3_"] = { affix = "", "(5-10)% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2353576063, }, - ["CurseEffectivenessUnique__4"] = { affix = "", "(10-15)% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2353576063, }, - ["ManaCostOfTotemAurasUniqueCorruptedJewel8"] = { affix = "", "60% reduced Cost of Aura Skills that summon Totems", statOrder = { 2728 }, level = 1, group = "ManaCostOfTotemAuras", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2701327257, }, - ["AdditionalVaalSoulOnShatterUniqueCorruptedJewel7"] = { affix = "", "50% chance to gain an additional Vaal Soul per Enemy Shattered", statOrder = { 2727 }, level = 1, group = "AdditionalVaalSoulOnShatter", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHash = 1633381214, }, - ["IncreasedCorruptedGemExperienceUniqueCorruptedJewel9"] = { affix = "", "10% increased Experience Gain for Corrupted Gems", statOrder = { 2729 }, level = 1, group = "IncreasedCorruptedGemExperience", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 47271484, }, - ["CorruptThresholdSoulEaterOnVaalSkillUseUniqueCorruptedJewel11"] = { affix = "", "With 5 Corrupted Items Equipped: Gain Soul Eater for 10 seconds on Vaal Skill use", statOrder = { 2730 }, level = 1, group = "CorruptThresholdSoulEaterOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, tradeHash = 1677654268, }, - ["ManaGainedOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Recover 1% of maximum Mana on Kill", statOrder = { 1443 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1604736568, }, - ["LifeLostOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Lose 1% of maximum Life on Kill", statOrder = { 1442 }, level = 1, group = "LifeLostOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 751813227, }, - ["EnergyShieldLostOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Lose 1% of maximum Energy Shield on Kill", statOrder = { 1444 }, level = 1, group = "EnergyShieldLostOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1699499433, }, - ["PunishmentSelfCurseOnKillUniqueCorruptedJewel13"] = { affix = "", "(20-30)% chance to Curse you with Punishment on Kill", statOrder = { 2738 }, level = 1, group = "PunishmentSelfCurseOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1556263668, }, - ["AdditionalCurseOnSelfUniqueCorruptedJewel13"] = { affix = "", "An additional Curse can be applied to you", statOrder = { 1834 }, level = 1, group = "AdditionalCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3112863846, }, - ["IncreasedDamagePerCurseOnSelfCorruptedJewel13_"] = { affix = "", "(10-20)% increased Damage per Curse on you", statOrder = { 1110 }, level = 1, group = "IncreasedDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1019020209, }, - ["DamageTakenOnFullESUniqueCorruptedJewel15"] = { affix = "", "10% increased Damage taken while on Full Energy Shield", statOrder = { 1894 }, level = 1, group = "DamageTakenOnFullES", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 969865219, }, - ["DamageTakenOnFullESUnique__1"] = { affix = "", "15% increased Damage taken while on Full Energy Shield", statOrder = { 1894 }, level = 1, group = "DamageTakenOnFullES", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 969865219, }, - ["ConvertLightningToColdUniqueRing34"] = { affix = "", "40% of Lightning Damage Converted to Cold Damage", statOrder = { 1639 }, level = 25, group = "ConvertLightningToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHash = 3627052716, }, - ["SpellChanceToShockFrozenEnemiesUniqueRing34"] = { affix = "", "Your spells have 100% chance to Shock against Frozen Enemies", statOrder = { 2564 }, level = 1, group = "SpellChanceToShockFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "caster", "ailment" }, tradeHash = 288651645, }, - ["ClawPhysDamageAndEvasionPerDexUniqueJewel47"] = { affix = "", "1% increased Evasion Rating per 3 Dexterity Allocated in Radius", "1% increased Claw Physical Damage per 3 Dexterity Allocated in Radius", "1% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius", statOrder = { 2740, 2741, 2756 }, level = 1, group = "ClawPhysDamageAndEvasionPerDex", weightKey = { }, weightVal = { }, modTags = { "evasion", "physical_damage", "defences", "damage", "physical", "attack" }, tradeHash = 869956483, }, - ["ColdAndPhysicalNodesInRadiusSwapPropertiesUniqueJewel48_"] = { affix = "", "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage", "Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage", statOrder = { 2743, 2744 }, level = 1, group = "ColdAndPhysicalNodesInRadiusSwapProperties", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHash = 3834234392, }, - ["AllDamageInRadiusBecomesFireUniqueJewel49"] = { affix = "", "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage", statOrder = { 2742 }, level = 1, group = "AllDamageInRadiusBecomesFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 1421711266, }, - ["EnergyShieldInRadiusIncreasesArmourUniqueJewel50"] = { affix = "", "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value", statOrder = { 2745 }, level = 1, group = "EnergyShieldInRadiusIncreasesArmour", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3208876368, }, - ["LifeInRadiusBecomesEnergyShieldAtHalfValueUniqueJewel51"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield", statOrder = { 2746 }, level = 1, group = "LifeInRadiusBecomesEnergyShieldAtHalfValue", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 1380481398, }, - ["LifePerIntelligenceInRadusUniqueJewel52"] = { affix = "", "Adds 1 to Maximum Life per 3 Intelligence Allocated in Radius", statOrder = { 2751 }, level = 1, group = "LifePerIntelligenceInRadus", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3833699760, }, - ["AddedLightningDamagePerDexInRadiusUniqueJewel53"] = { affix = "", "Adds 1 to 2 Lightning damage to Attacks", "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius", statOrder = { 846, 2750 }, level = 1, group = "AddedLightningDamagePerDexInRadius", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 2402140837, }, - ["LifePassivesBecomeManaPassivesInRadiusUniqueJewel54"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value", statOrder = { 2754 }, level = 1, group = "LifePassivesBecomeManaPassivesInRadius", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 3364361256, }, - ["DexterityAndIntelligenceGiveStrengthMeleeBonusInRadiusUniqueJewel55"] = { affix = "", "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus", statOrder = { 2755 }, level = 1, group = "DexterityAndIntelligenceGiveStrengthMeleeBonusInRadius", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1880450502, }, - ["LifeGainOnEndurangeChargeConsumptionUniqueBodyStrInt6"] = { affix = "", "Gain 100 Life when you lose an Endurance Charge", statOrder = { 2638 }, level = 1, group = "LifeGainOnEnduranceChargeConsumption", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3915702459, }, - ["SummonTotemCastSpeedUnique__1"] = { affix = "", "(14-20)% increased Totem Placement speed", statOrder = { 2250 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, }, - ["SummonTotemCastSpeedUnique__2"] = { affix = "", "(30-50)% increased Totem Placement speed", statOrder = { 2250 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, }, - ["SummonTotemCastSpeedImplicit1"] = { affix = "", "(20-30)% increased Totem Placement speed", statOrder = { 2250 }, level = 93, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3374165039, }, - ["AttackDamageAgainstBleedingUniqueDagger11"] = { affix = "", "40% increased Attack Damage against Bleeding Enemies", statOrder = { 2161 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3944782785, }, - ["AttackDamageAgainstBleedingUniqueOneHandMace8"] = { affix = "", "30% increased Attack Damage against Bleeding Enemies", statOrder = { 2161 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3944782785, }, - ["AttackDamageAgainstBleedingUnique__1__"] = { affix = "", "(25-40)% increased Attack Damage against Bleeding Enemies", statOrder = { 2161 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 3944782785, }, - ["FlammabilityOnHitUniqueOneHandAxe7"] = { affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2186 }, level = 1, group = "FlammabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 654274615, }, - ["FlammabilityOnHitUnique__1"] = { affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2199 }, level = 1, group = "FlammabilityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 338121249, }, - ["LightningWarpSkillUniqueOneHandAxe8"] = { affix = "", "Grants Level 1 Lightning Warp Skill", statOrder = { 513 }, level = 1, group = "LightningWarpSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 243713911, }, - ["StunAvoidanceUniqueOneHandSword13"] = { affix = "", "20% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, }, - ["StunAvoidanceUnique___1"] = { affix = "", "20% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4262448838, }, - ["SupportedByMultistrikeUniqueOneHandSword13"] = { affix = "", "Socketed Gems are supported by Level 1 Multistrike", statOrder = { 341 }, level = 1, group = "SupportedByMultistrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2501237765, }, - ["MeleeDamageAgainstBleedingEnemiesUniqueOneHandMace6"] = { affix = "", "30% increased Melee Damage against Bleeding Enemies", statOrder = { 2162 }, level = 1, group = "MeleeDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1282978314, }, - ["MeleeDamageAgainstBleedingEnemiesUnique__1"] = { affix = "", "50% increased Melee Damage against Bleeding Enemies", statOrder = { 2162 }, level = 1, group = "MeleeDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1282978314, }, - ["SpellAddedFireDamageUniqueWand10"] = { affix = "", "Adds (4-6) to (8-12) Fire Damage to Spells", statOrder = { 1241 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, }, - ["SpellAddedFireDamageUnique__1"] = { affix = "", "Adds 100 to 100 Fire Damage to Spells", statOrder = { 1241 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, }, - ["SpellAddedFireDamageUnique__2_"] = { affix = "", "Adds (20-30) to 40 Fire Damage to Spells", statOrder = { 1241 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, }, - ["SpellAddedFireDamageUnique__3"] = { affix = "", "Adds (20-24) to (38-46) Fire Damage to Spells", statOrder = { 1241 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, }, - ["SpellAddedFireDamageUnique__4"] = { affix = "", "Adds (2-3) to (5-6) Fire Damage to Spells", statOrder = { 1241 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, }, - ["SpellAddedFireDamageUnique__5"] = { affix = "", "Battlemage", statOrder = { 10032 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 448903047, }, - ["SpellAddedFireDamageUnique__6_"] = { affix = "", "Adds (14-16) to (30-32) Fire Damage to Spells", statOrder = { 1241 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHash = 1133016593, }, - ["SpellAddedColdDamageUniqueBootsStrDex5"] = { affix = "", "Adds (25-30) to (40-50) Cold Damage to Spells", statOrder = { 1242 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, }, - ["SpellAddedColdDamageUnique__1"] = { affix = "", "Adds 100 to 100 Cold Damage to Spells", statOrder = { 1242 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, }, - ["SpellAddedColdDamageUnique__2"] = { affix = "", "Adds (20-30) to 40 Cold Damage to Spells", statOrder = { 1242 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, }, - ["SpellAddedColdDamageUnique__3"] = { affix = "", "Adds (2-3) to (5-6) Cold Damage to Spells", statOrder = { 1242 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, }, - ["SpellAddedColdDamageUnique__4"] = { affix = "", "Adds (40-60) to (90-110) Cold Damage to Spells", statOrder = { 1242 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, }, - ["SpellAddedColdDamageUnique__5"] = { affix = "", "Adds (35-39) to (54-60) Cold Damage to Spells", statOrder = { 1242 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, }, - ["SpellAddedColdDamageUnique__6__"] = { affix = "", "Adds (10-12) to (24-28) Cold Damage to Spells", statOrder = { 1242 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, }, - ["SpellAddedColdDamageUnique__7"] = { affix = "", "Adds (120-140) to (150-170) Cold Damage to Spells", statOrder = { 1242 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 2469416729, }, - ["SpellAddedLightningDamageUnique__1"] = { affix = "", "Adds 100 to 100 Lightning Damage to Spells", statOrder = { 1243 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, }, - ["SpellAddedLightningDamageUnique__2"] = { affix = "", "Adds (1-10) to (150-200) Lightning Damage to Spells", statOrder = { 1243 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, }, - ["SpellAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (10-12) Lightning Damage to Spells", statOrder = { 1243 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, }, - ["SpellAddedLightningDamageUnique__4"] = { affix = "", "Adds 1 to (60-70) Lightning Damage to Spells", statOrder = { 1243 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, }, - ["SpellAddedLightningDamageUnique__5"] = { affix = "", "Adds (26-35) to (95-105) Lightning Damage to Spells", statOrder = { 1243 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, }, - ["SpellAddedLightningDamageUnique__6_"] = { affix = "", "Adds (13-18) to (50-56) Lightning Damage to Spells", statOrder = { 1243 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, }, - ["SpellAddedLightningDamageUnique__7"] = { affix = "", "Adds 1 to (60-68) Lightning Damage to Spells", statOrder = { 1243 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, }, - ["SpellAddedLightningDamageTwoHandUniqueStaff8d"] = { affix = "", "Adds (5-15) to (100-140) Lightning Damage to Spells", statOrder = { 1243 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 2831165374, }, - ["IncreasedDamagePerCurseOnSelfUniqueCorruptedJewel8"] = { affix = "", "(10-20)% increased Damage per Curse on you", statOrder = { 1110 }, level = 1, group = "IncreasedDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1019020209, }, - ["LocalAddedChaosDamageImplicitE1"] = { affix = "", "Adds (23-33) to (45-60) Chaos damage", statOrder = { 1227 }, level = 30, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, - ["LocalAddedChaosDamageImplicitE2"] = { affix = "", "Adds (38-48) to (70-90) Chaos damage", statOrder = { 1227 }, level = 50, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, - ["LocalAddedChaosDamageImplicitE3_"] = { affix = "", "Adds (40-55) to (80-98) Chaos damage", statOrder = { 1227 }, level = 70, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, - ["DamageWithMovementSkillsUniqueClaw9"] = { affix = "", "20% increased Damage with Movement Skills", statOrder = { 1266 }, level = 1, group = "DamageWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 856021430, }, - ["DamageWithMovementSkillsUniqueBodyDex5"] = { affix = "", "(60-100)% increased Damage with Movement Skills", statOrder = { 1266 }, level = 1, group = "DamageWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 856021430, }, - ["AttackSpeedWithMovementSkillsUniqueClaw9"] = { affix = "", "15% increased Attack Speed with Movement Skills", statOrder = { 1267 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 3683134121, }, - ["AttackSpeedWithMovementSkillsUniqueBodyDex5"] = { affix = "", "(10-20)% increased Attack Speed with Movement Skills", statOrder = { 1267 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 3683134121, }, - ["LifeGainedOnKillingIgnitedEnemiesUniqueWand10_"] = { affix = "", "Gain 10 Life per Ignited Enemy Killed", statOrder = { 1441 }, level = 1, group = "LifeGainedOnKillingIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 893903361, }, - ["LifeGainedOnKillingIgnitedEnemiesUnique__1"] = { affix = "", "Gain (200-300) Life per Ignited Enemy Killed", statOrder = { 1441 }, level = 1, group = "LifeGainedOnKillingIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 893903361, }, - ["DamageTakenFromSkeletonsUniqueOneHandSword12_"] = { affix = "", "10% increased Damage taken from Skeletons", statOrder = { 1897 }, level = 1, group = "DamageTakenFromSkeletons", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 705686721, }, - ["DamageTakenFromGhostsUniqueOneHandSword12"] = { affix = "", "10% increased Damage taken from Ghosts", statOrder = { 1898 }, level = 1, group = "DamageTakenFromGhosts", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2156764291, }, - ["CannotBeShockedWhileFrozenUniqueStaff14"] = { affix = "", "You cannot be Shocked while Frozen", statOrder = { 2547 }, level = 1, group = "CannotBeShockedWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 798853218, }, - ["PhysicalDamageWhileFrozenUnique___1"] = { affix = "", "100% increased Global Physical Damage while Frozen", statOrder = { 2943 }, level = 1, group = "PhysicalDamageWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2614654450, }, - ["AttacksThatStunCauseBleedingUnique__1"] = { affix = "", "Hits that Stun inflict Bleeding", statOrder = { 2154 }, level = 1, group = "AttacksThatStunCauseBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1454946771, }, - ["GrantEnemiesOnslaughtOnKillUnique__1"] = { affix = "", "5% chance to grant Onslaught to nearby Enemies on Kill", statOrder = { 2977 }, level = 1, group = "GrantEnemiesOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1924591908, }, - ["OnslaugtOnKillPercentChanceUnique__1"] = { affix = "", "10% chance to gain Onslaught for 10 seconds on kill", statOrder = { 5159 }, level = 1, group = "OnslaugtOnKill10SecondsPercentChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2453026567, }, - ["MaximumLifeOnKillPercentUnique__1"] = { affix = "", "Recover 1% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, - ["MaximumLifeOnKillPercentUnique__2"] = { affix = "", "Recover (1-3)% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, - ["MaximumLifeOnKillPercentUnique__3__"] = { affix = "", "Recover (3-5)% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, - ["MaximumLifeOnKillPercentUnique__4_"] = { affix = "", "Recover 1% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, - ["MaximumLifeOnKillPercentUnique__5"] = { affix = "", "Recover (3-5)% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, - ["MaximumManaOnKillPercentUnique__1"] = { affix = "", "Recover (1-3)% of maximum Mana on Kill", statOrder = { 1439 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1030153674, }, - ["MaximumEnergyShieldOnKillPercentUnique__1"] = { affix = "", "Recover (3-5)% of maximum Energy Shield on Kill", statOrder = { 1438 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2406605753, }, - ["MaximumEnergyShieldOnKillPercentUnique__2"] = { affix = "", "Recover 1% of maximum Energy Shield on Kill", statOrder = { 1438 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2406605753, }, - ["BurningArrowThresholdJewelUnique__1"] = { affix = "", "+10% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 1, group = "BurningArrowGroundTarAndFire", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1038686782, }, - ["DisplayManifestWeaponUnique__1"] = { affix = "", "Triggers Level 15 Manifest Dancing Dervishes on Rampage", "Cannot be used while Manifested", "Manifested Dancing Dervishes die when Rampage ends", statOrder = { 2939, 2940, 2941 }, level = 1, group = "DisplayManifestWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 855357523, }, - ["DisplayManifestWeaponUnique__2"] = { affix = "", "Triggers Level 15 Manifest Dancing Dervishes on Rampage", "Cannot be used while Manifested", "Manifested Dancing Dervishes die when Rampage ends", statOrder = { 2939, 2940, 2941 }, level = 1, group = "DisplayManifestWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 855357523, }, - ["BarrageThresholdUnique__1"] = { affix = "", "With at least 40 Dexterity in Radius, Barrage fires an additional 6 Projectiles simultaneously on the first and final attacks", statOrder = { 2870 }, level = 1, group = "BarrageThreshold", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3988316455, }, - ["GroundSlamThresholdUnique__1"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam", "has a 50% increased angle", statOrder = { 2864, 2864.1 }, level = 1, group = "GroundSlamThreshold", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3902917146, }, - ["GroundSlamThresholdUnique__2"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam has a 35% chance", "to grant an Endurance Charge when you Stun an Enemy", statOrder = { 2863, 2863.1 }, level = 1, group = "GroundSlamThreshold2", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1559361866, }, - ["SummonSkeletonsThresholdUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages", statOrder = { 2853 }, level = 1, group = "SummonSkeletonsThreshold", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2077634227, }, - ["AddedDamagePerDexterityUnique__1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity", statOrder = { 2987 }, level = 1, group = "AddedDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2066426995, }, - ["AddedDamagePerStrengthUnique__1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks per 25 Strength", statOrder = { 4412 }, level = 1, group = "AddedDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 787185456, }, - ["DisplayBlindAuraUnique__1"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 2988 }, level = 1, group = "DisplayBlindAura", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2826979740, }, - ["DisplayNearbyEnemiesAreSlowedUnique__1"] = { affix = "", "Nearby Enemies are Hindered, with 25% reduced Movement Speed", statOrder = { 2995 }, level = 1, group = "DisplayNearbyEnemiesAreSlowed", weightKey = { }, weightVal = { }, modTags = { "speed", "aura" }, tradeHash = 607839150, }, - ["DisplaySupportedByHypothermiaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Hypothermia", statOrder = { 364 }, level = 1, group = "DisplaySupportedByHypothermia", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 13669281, }, - ["DisplaySupportedByIceBiteUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Ice Bite", statOrder = { 365 }, level = 1, group = "DisplaySupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1384629003, }, - ["DisplaySupportedByIceBiteUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Ice Bite", statOrder = { 365 }, level = 1, group = "DisplaySupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1384629003, }, - ["DisplaySupportedByColdPenetrationUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Cold Penetration", statOrder = { 366 }, level = 1, group = "DisplaySupportedByColdPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1991958615, }, - ["DisplaySupportedByManaLeechUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Mana Leech", statOrder = { 367 }, level = 1, group = "DisplaySupportedByManaLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2608615082, }, - ["DisplaySupportedByAddedColdDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Added Cold Damage", statOrder = { 368 }, level = 1, group = "DisplaySupportedByAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 4020144606, }, - ["DisplaySupportedByReducedManaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 369 }, level = 1, group = "DisplaySupportedByReducedMana", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 749770518, }, - ["DisplaySupportedByReducedManaUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 369 }, level = 1, group = "DisplaySupportedByReducedMana", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 749770518, }, - ["FlaskConsumesFrenzyChargesUnique__1"] = { affix = "", "Consumes Frenzy Charges on use", statOrder = { 642 }, level = 1, group = "FlaskConsumesFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "flask", "frenzy_charge" }, tradeHash = 570159344, }, - ["CriticalChanceAgainstBlindedEnemiesUnique__1"] = { affix = "", "(120-140)% increased Critical Hit Chance against Blinded Enemies", statOrder = { 2998 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1939202111, }, - ["CriticalChanceAgainstBlindedEnemiesUnique__2__"] = { affix = "", "(30-50)% increased Critical Hit Chance against Blinded Enemies", statOrder = { 2998 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1939202111, }, - ["DamageAgainstNearEnemiesUnique__1"] = { affix = "", "100% increased Damage with Hits against Hindered Enemies", statOrder = { 3663 }, level = 1, group = "DamageAgainstNearEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 528422616, }, - ["BeltSoulEaterDuringFlaskEffect__1"] = { affix = "", "Gain Soul Eater during any Flask Effect", statOrder = { 3018 }, level = 57, group = "BeltSoulEaterDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3968454273, }, - ["BeltSoulsRemovedOnFlaskUse__1"] = { affix = "", "Lose all Eaten Souls when you use a Flask", statOrder = { 3019 }, level = 1, group = "BeltSoulsRemovedOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3577316952, }, - ["FireDamageToNearbyEnemiesOnKillUnique"] = { affix = "", "Trigger Level 1 Fire Burst on Kill", statOrder = { 543 }, level = 1, group = "FireDamageToNearbyEnemiesOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4240751513, }, - ["SocketedAurasReserveNoManaUnique__1"] = { affix = "", "Socketed Gems have no Reservation", "Your Blessing Skills are Disabled", statOrder = { 379, 379.1 }, level = 48, group = "SocketedAurasReserveNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHash = 2497009514, }, - ["ItemGrantsIllusoryWarpUnique__1"] = { affix = "", "Grants Level 20 Illusory Warp Skill", statOrder = { 448 }, level = 1, group = "ItemGrantsIllusoryWarp", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3279574030, }, - ["LocalDoubleImplicitMods"] = { affix = "", "Implicit Modifier magnitudes are doubled", statOrder = { 49 }, level = 65, group = "LocalModifiesImplicitMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2304729532, }, - ["LocalTripleImplicitModsUnique__1__"] = { affix = "", "Implicit Modifier magnitudes are tripled", statOrder = { 49 }, level = 1, group = "LocalModifiesImplicitMods", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2304729532, }, - ["UnarmedDamageVsBleedingEnemiesUnique__1"] = { affix = "", "100% increased Damage with Unarmed Attacks against Bleeding Enemies", statOrder = { 3146 }, level = 1, group = "UnarmedDamageVsBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3919199754, }, - ["ClawDamageModsAlsoAffectUnarmedUnique__1"] = { affix = "", "Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills", statOrder = { 3150 }, level = 1, group = "ClawDamageModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2865232420, }, - ["BaseUnarmedCriticalStrikeChanceUnique__1"] = { affix = "", "+7% to Unarmed Melee Attack Critical Hit Chance", statOrder = { 3149 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3613173483, }, - ["BaseUnarmedCriticalStrikeChanceUnique__2"] = { affix = "", "+(0.1-1.1)% to Unarmed Melee Attack Critical Hit Chance", statOrder = { 3149 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3613173483, }, - ["LifeGainVsBleedingEnemiesUnique__1"] = { affix = "", "Gain 30 Life per Bleeding Enemy Hit", statOrder = { 3148 }, level = 1, group = "LifeGainVsBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3148570142, }, - ["SummonWolfOnKillUnique__1"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 566 }, level = 62, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1468606528, }, - ["SummonWolfOnKillUnique__1New"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 566 }, level = 25, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1468606528, }, - ["SummonWolfOnKillUnique__2_"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 566 }, level = 1, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1468606528, }, - ["SummonWolfOnCritUnique__1"] = { affix = "", "20% chance to Trigger Level 25 Summon Spectral Wolf on Critical Hit with this Weapon", statOrder = { 527 }, level = 1, group = "SummonWolfOnCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHash = 4169720975, }, - ["SwordPhysicalAttackSpeedUnique__1"] = { affix = "", "35% increased Attack Speed with Swords", statOrder = { 1261 }, level = 80, group = "SwordAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 3293699237, }, - ["AxePhysicalDamageUnique__1"] = { affix = "", "80% increased Physical Damage with Axes", statOrder = { 1171 }, level = 80, group = "AxePhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2008219439, }, - ["DualWieldingPhysicalDamageUnique__1"] = { affix = "", "40% increased Physical Attack Damage while Dual Wielding", statOrder = { 1155 }, level = 1, group = "DualWieldingPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1274831335, }, - ["ProjectilesForkUnique____1"] = { affix = "", "Arrows Fork", statOrder = { 3159 }, level = 70, group = "ArrowsFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2421436896, }, - ["ClawAttackSpeedModsAlsoAffectUnarmed__1"] = { affix = "", "Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills", statOrder = { 3151 }, level = 1, group = "ClawAttackSpeedModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2988055461, }, - ["ClawCritModsAlsoAffectUnarmed__1"] = { affix = "", "Modifiers to Claw Critical Hit Chance also apply to Unarmed Critical Hit Chance with Melee Skills", statOrder = { 3152 }, level = 35, group = "ClawCritModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 531932482, }, - ["EnergyShieldDelayDuringFlaskEffect__1"] = { affix = "", "50% slower start of Energy Shield Recharge during any Flask Effect", statOrder = { 3155 }, level = 35, group = "EnergyShieldDelayDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "flask", "defences" }, tradeHash = 1912660783, }, - ["ESRechargeRateDuringFlaskEffect__1"] = { affix = "", "(150-200)% increased Energy Shield Recharge Rate during any Flask Effect", statOrder = { 3157 }, level = 1, group = "ESRechargeRateDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "flask", "defences" }, tradeHash = 1827657795, }, - ["IncreasedColdDamagePerBlockChanceUnique__1"] = { affix = "", "1% increased Cold Damage per 1% Chance to Block Attack Damage", statOrder = { 3162 }, level = 74, group = "IncreasedColdDamagePerBlockChance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 4150597533, }, - ["IncreasedArmourWhileChilledOrFrozenUnique__1"] = { affix = "", "300% increased Armour while Chilled or Frozen", statOrder = { 3163 }, level = 1, group = "IncreasedArmourWhileChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1857635068, }, - ["AddedColdDamageToSpellsAndAttacksUnique__1"] = { affix = "", "Adds (15-25) to (40-50) Cold Damage to Spells and Attacks", statOrder = { 1216 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHash = 1662717006, }, - ["AddedColdDamageToSpellsAndAttacksUnique__2"] = { affix = "", "Adds (5-7) to (13-15) Cold Damage to Spells and Attacks", statOrder = { 1216 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, tradeHash = 1662717006, }, - ["UtilityFlaskSmokeCloud"] = { affix = "", "Creates a Smoke Cloud on Use", statOrder = { 655 }, level = 1, group = "UtilityFlaskSmokeCloud", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 538730182, }, - ["UtilityFlaskConsecrate"] = { affix = "", "Creates Consecrated Ground on Use", statOrder = { 637 }, level = 1, group = "UtilityFlaskConsecrate", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2146730404, }, - ["UtilityFlaskChilledGround"] = { affix = "", "Creates Chilled Ground on Use", statOrder = { 638 }, level = 1, group = "UtilityFlaskChilledGround", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3311869501, }, - ["UtilityFlaskTaunt_"] = { affix = "", "Taunts nearby Enemies on use", statOrder = { 652 }, level = 1, group = "UtilityFlaskTaunt", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2005503156, }, - ["UtilityFlaskWard"] = { affix = "", "Restores Ward on use", statOrder = { 674 }, level = 1, group = "UtilityFlaskWard", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2451856207, }, - ["SummonsWormsOnUse"] = { affix = "", "2 Enemy Writhing Worms escape the Flask when used", "Writhing Worms are destroyed when Hit", statOrder = { 675, 675.1 }, level = 1, group = "SummonsWormsOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 2434293916, }, - ["PowerChargeOnHitUnique__1"] = { affix = "", "20% chance to gain a Power Charge on Hit", statOrder = { 1516 }, level = 1, group = "PowerChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 1453197917, }, - ["LosePowerChargesOnMaxPowerChargesUnique__1"] = { affix = "", "Lose all Power Charges on reaching maximum Power Charges", statOrder = { 3178 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2135899247, }, - ["LosePowerChargesOnMaxPowerChargesUnique__2"] = { affix = "", "Lose all Power Charges on reaching maximum Power Charges", statOrder = { 3178 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2135899247, }, - ["LoseEnduranceChargesOnMaxEnduranceChargesUnique__1_"] = { affix = "", "You lose all Endurance Charges on reaching maximum Endurance Charges", statOrder = { 2408 }, level = 1, group = "LoseEnduranceChargesOnMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 3590104875, }, - ["ShockOnMaxPowerChargesUnique__1"] = { affix = "", "Shocks you when you reach maximum Power Charges", statOrder = { 3179 }, level = 1, group = "ShockOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 4256314560, }, - ["MoltenBurstOnMeleeHitUnique__1"] = { affix = "", "20% chance to Trigger Level 16 Molten Burst on Melee Hit", statOrder = { 558 }, level = 1, group = "MoltenBurstOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHash = 4125471110, }, - ["PenetrateEnemyFireResistUnique__1"] = { affix = "", "Damage Penetrates 20% Fire Resistance", statOrder = { 2613 }, level = 1, group = "PenetrateEnemyFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, }, - ["LocalFlaskPetrifiedUnique__1"] = { affix = "", "Petrified during Effect", statOrder = { 745 }, level = 1, group = "LocalFlaskPetrified", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1935500672, }, - ["LocalFlaskPhysicalDamageReductionUnique__1"] = { affix = "", "(40-50)% additional Physical Damage Reduction during Effect", statOrder = { 728 }, level = 1, group = "LocalFlaskPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "flask", "physical" }, tradeHash = 677302513, }, - ["LightningDegenAuraUniqueDisplay__1"] = { affix = "", "Nearby Enemies take 50 Lightning Damage per second", statOrder = { 2781 }, level = 1, group = "LightningDegenAuraDisplay", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1415558356, }, - ["CannotBeAffectedByFlasksUnique__1"] = { affix = "", "Flasks do not apply to you", statOrder = { 3319 }, level = 38, group = "CannotBeAffectedByFlasks", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3003321700, }, - ["FlasksApplyToMinionsUnique__1"] = { affix = "", "Flasks you Use apply to your Raised Zombies and Spectres", statOrder = { 3320 }, level = 1, group = "FlasksApplyToMinions", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, tradeHash = 3127641775, }, - ["RepeatingShockwave"] = { affix = "", "Triggers Level 7 Abberath's Fury when Equipped", statOrder = { 542 }, level = 1, group = "RepeatingShockwave", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3250579936, }, - ["LifeRegenerationWhileFrozenUnique__1"] = { affix = "", "Regenerate 10% of maximum Life per second while Frozen", statOrder = { 3313 }, level = 1, group = "LifeRegenerationWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2656696317, }, - ["KnockbackOnCounterattackChanceUnique__1"] = { affix = "", "100% chance to knockback on Counterattack", statOrder = { 3197 }, level = 1, group = "KnockbackOnCounterattack", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 399854017, }, - ["EnergyShieldRechargeOnBlockUnique__1"] = { affix = "", "20% chance for Energy Shield Recharge to start when you Block", statOrder = { 3014 }, level = 1, group = "EnergyShieldRechargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "energy_shield", "defences" }, tradeHash = 762154651, }, - ["LocalAttacksAlwaysCritUnique__1"] = { affix = "", "This Weapon's Critical Hit Chance is 100%", statOrder = { 3360 }, level = 1, group = "LocalAttacksAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 3384885789, }, - ["LocalDoubleDamageToChilledEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon deal Double Damage to Chilled Enemies", statOrder = { 3329 }, level = 1, group = "LocalDoubleDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 625037258, }, - ["LocalElementalPenetrationUnique__1"] = { affix = "", "Attacks with this Weapon Penetrate 30% Elemental Resistances", statOrder = { 3330 }, level = 1, group = "LocalElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHash = 4064396395, }, - ["FlaskZealotsOathUnique__1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield during Effect", "Zealot's Oath during Effect", statOrder = { 620, 803 }, level = 1, group = "FlaskZealotsOath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "flask", "resource", "life", "defences" }, tradeHash = 2650716659, }, - ["IncreasedDamageAtNoFrenzyChargesUnique__1"] = { affix = "", "(60-80)% increased Damage while you have no Frenzy Charges", statOrder = { 3334 }, level = 1, group = "DamageOnNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3905661226, }, - ["CriticalChanceAgainstEnemiesOnFullLifeUnique__1"] = { affix = "", "100% increased Critical Hit Chance against Enemies that are on Full Life", statOrder = { 3335 }, level = 1, group = "CriticalChanceAgainstEnemiesOnFullLife", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 47954913, }, - ["AddedPhysicalToMinionAttacksUnique__1"] = { affix = "", "Minions deal (5-8) to (12-16) additional Attack Physical Damage", statOrder = { 3336 }, level = 1, group = "AddedPhysicalToMinionAttacks", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, tradeHash = 797833282, }, - ["AttackPhysicalDamageAddedAsLightningUnique__1"] = { affix = "", "Gain 15% of Physical Damage as Extra Lightning Damage with Attacks", statOrder = { 3344 }, level = 1, group = "AttackPhysicalDamageAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, tradeHash = 2329121140, }, - ["AttackPhysicalDamageAddedAsFireUnique__1"] = { affix = "", "Gain 15% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3342 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHash = 3606204707, }, - ["AttackPhysicalDamageAddedAsFireUnique__2"] = { affix = "", "Gain (30-40)% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3342 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHash = 3606204707, }, - ["EnergyShieldPer5StrengthUnique__1"] = { affix = "", "+2 maximum Energy Shield per 5 Strength", statOrder = { 3345 }, level = 1, group = "EnergyShieldPer5Strength", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3788706881, }, - ["MaximumGolemsUnique__1"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3262 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2821079699, }, - ["MaximumGolemsUnique__2"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3262 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2821079699, }, - ["MaximumGolemsUnique__3"] = { affix = "", "+3 to maximum number of Summoned Golems", statOrder = { 3262 }, level = 43, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2821079699, }, - ["MaximumGolemsUnique__4_"] = { affix = "", "-1 to maximum number of Summoned Golems", statOrder = { 3262 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2821079699, }, - ["GrantsLevel12StoneGolem"] = { affix = "", "Grants Level 12 Summon Stone Golem Skill", statOrder = { 450 }, level = 1, group = "GrantsStoneGolemSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3056188914, }, - ["ZealotsOathUnique__1"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9143 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 632761194, }, - ["WeaponCountsAsAllOneHandedWeapons__1"] = { affix = "", "Counts as all One Handed Melee Weapon Types", statOrder = { 3347 }, level = 1, group = "CountsAsAllOneHandMeleeWeapons", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1524882321, }, - ["SocketedGemsSupportedByFortifyUnique____1"] = { affix = "", "Socketed Gems are Supported by Level 12 Fortify", statOrder = { 351 }, level = 1, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 107118693, }, - ["CannotBePoisonedUnique__1"] = { affix = "", "Cannot be Poisoned", statOrder = { 2967 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3835551335, }, - ["EnergyShieldRecoveryRateUnique__1"] = { affix = "", "(50-100)% increased Energy Shield Recovery rate", statOrder = { 1370 }, level = 1, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 988575597, }, - ["IncreasedDamageTakenUnique__1"] = { affix = "", "10% increased Damage taken", statOrder = { 1888 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3691641145, }, - ["FlaskImmuneToDamage__1"] = { affix = "", "Immunity to Damage during Effect", statOrder = { 741 }, level = 1, group = "FlaskImmuneToDamage", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 4267616253, }, - ["LocalAlwaysCrit"] = { affix = "", "This Weapon's Critical Hit Chance is 100%", statOrder = { 3360 }, level = 1, group = "LocalAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 3384885789, }, - ["IncreasePhysicalDegenDamagePerDexterityUnique__1"] = { affix = "", "2% increased Physical Damage Over Time per 10 Dexterity", statOrder = { 3363 }, level = 1, group = "IncreasePhysicalDegenDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 555311393, }, - ["IncreaseBleedDurationPerIntelligenceUnique__1"] = { affix = "", "1% increased Bleeding Duration per 12 Intelligence", statOrder = { 3364 }, level = 1, group = "IncreaseBleedDurationPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "ailment" }, tradeHash = 1030835421, }, - ["BleedingEnemiesFleeOnHitUnique__1"] = { affix = "", "30% Chance to cause Bleeding Enemies to Flee on hit", statOrder = { 3365 }, level = 1, group = "BleedingEnemiesFleeOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2072206041, }, - ["ChanceToAvoidFireDamageUnique__1"] = { affix = "", "25% chance to Avoid Fire Damage from Hits", statOrder = { 2971 }, level = 1, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, tradeHash = 42242677, }, - ["TrapTriggerRadiusUnique__1"] = { affix = "", "(40-60)% increased Trap Trigger Area of Effect", statOrder = { 1595 }, level = 1, group = "TrapTriggerRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 497716276, }, - ["SpreadChilledGroundOnFreezeUnique__1"] = { affix = "", "15% chance to create Chilled Ground when you Freeze an Enemy", statOrder = { 2999 }, level = 1, group = "SpreadChilledGroundOnFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2901262227, }, - ["SpreadConsecratedGroundOnShatterUnique__1"] = { affix = "", "Create Consecrated Ground when you Shatter an Enemy", statOrder = { 3682 }, level = 1, group = "SpreadConsecratedGroundOnShatter", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4148932984, }, - ["ChanceToPoisonWithAttacksUnique___1"] = { affix = "", "20% chance to Poison on Hit with Attacks", statOrder = { 2791 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3954735777, }, - ["TrapTriggerTwiceChanceUnique__1"] = { affix = "", "(8-12)% Chance for Traps to Trigger an additional time", statOrder = { 3362 }, level = 1, group = "TrapTriggerTwiceChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1087710344, }, - ["TrapAndMineAddedPhysicalDamageUnique__1"] = { affix = "", "Traps and Mines deal (3-5) to (10-15) additional Physical Damage", statOrder = { 3361 }, level = 1, group = "TrapAndMineAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3391324703, }, - ["FlaskLifeGainOnSkillUseUnique__1"] = { affix = "", "Grants Last Breath when you Use a Skill during Effect, for (450-600)% of Mana Cost", statOrder = { 722 }, level = 1, group = "FlaskZerphisLastBreath", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 3686711832, }, - ["TrapPoisonChanceUnique__1"] = { affix = "", "Traps and Mines have a 25% chance to Poison on Hit", statOrder = { 3646 }, level = 1, group = "TrapPoisonChance", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3192135716, }, - ["SocketedGemsSupportedByBlasphemyUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 22 Blasphemy", statOrder = { 370 }, level = 1, group = "DisplaySocketedGemsSupportedByBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHash = 539747809, }, - ["SocketedGemsSupportedByBlasphemyUnique__2__"] = { affix = "", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 370 }, level = 1, group = "DisplaySocketedGemsSupportedByBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHash = 539747809, }, - ["ReducedReservationForSocketedCurseGemsUnique__1"] = { affix = "", "Socketed Curse Gems have 30% increased Reservation Efficiency", statOrder = { 441 }, level = 1, group = "DisplaySocketedCurseGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 1471600638, }, - ["ReducedReservationForSocketedCurseGemsUnique__2"] = { affix = "", "Socketed Curse Gems have 80% increased Reservation Efficiency", statOrder = { 441 }, level = 1, group = "DisplaySocketedCurseGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, tradeHash = 1471600638, }, - ["GrantAlliesPowerChargeOnKillUnique__1"] = { affix = "", "10% chance to grant a Power Charge to nearby Allies on Kill", statOrder = { 2978 }, level = 1, group = "GrantAlliesPowerChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2367680009, }, - ["GrantAlliesFrenzyChargeOnHitUnique__1"] = { affix = "", "5% chance to grant a Frenzy Charge to nearby Allies on Hit", statOrder = { 2979 }, level = 1, group = "GrantAlliesFrenzyChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 991168463, }, - ["SummonRagingSpiritOnKillUnique__1"] = { affix = "", "25% chance to Trigger Level 10 Summon Raging Spirit on Kill", statOrder = { 560 }, level = 1, group = "SummonRagingSpiritOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3751996449, }, - ["PhysicalDamageConvertedToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1636 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, }, - ["PhysicalDamageConvertedToChaosUnique__2"] = { affix = "", "50% of Physical Damage Converted to Chaos Damage", statOrder = { 1636 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 717955465, }, - ["FishDetectionUnique__1_"] = { affix = "", "Glows while in an Area containing a Unique Fish", statOrder = { 3683 }, level = 1, group = "FishingDetection", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 931560398, }, - ["LocalMaimOnHitUnique__1"] = { affix = "", "Attacks with this Weapon Maim on hit", statOrder = { 3687 }, level = 1, group = "LocalMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3418949024, }, - ["LocalMaimOnHit2HImplicit_1"] = { affix = "", "25% chance to Maim on Hit", statOrder = { 7320 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2763429652, }, - ["AlwaysCritShockedEnemiesUnique__1"] = { affix = "", "Always Critical Hit Shocked Enemies", statOrder = { 3690 }, level = 1, group = "AlwaysCritShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3481428688, }, - ["CannotCritNonShockedEnemiesUnique___1"] = { affix = "", "You cannot deal Critical Hits against non-Shocked Enemies", statOrder = { 3691 }, level = 1, group = "CannotCritNonShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3344493315, }, - ["MinionChanceToBlindOnHitUnique__1"] = { affix = "", "Minions have 15% chance to Blind Enemies on hit", statOrder = { 3709 }, level = 1, group = "MinionChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2939409392, }, - ["MinionBlindImmunityUnique__1"] = { affix = "", "Minions cannot be Blinded", statOrder = { 3708 }, level = 1, group = "MinionBlindImmunity", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2684385509, }, - ["DisplaySocketedMinionGemsSupportedByLifeLeechUnique__1"] = { affix = "", "Socketed Minion Gems are Supported by Level 16 Life Leech", statOrder = { 374 }, level = 1, group = "DisplaySocketedMinionGemsSupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "minion", "gem" }, tradeHash = 4006301249, }, - ["MagicItemsDropIdentifiedUnique__1"] = { affix = "", "Found Magic Items drop Identified", statOrder = { 3710 }, level = 1, group = "MagicItemsDropIdentified", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3020069394, }, - ["ManaPerStackableJewelUnique__1"] = { affix = "", "Gain 30 Mana per Grand Spectrum", statOrder = { 3711 }, level = 1, group = "ManaPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 620607587, }, - ["ArmourPerStackableJewelUnique__1"] = { affix = "", "Gain 200 Armour per Grand Spectrum", statOrder = { 3712 }, level = 1, group = "ArmourPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1644446896, }, - ["IncreasedDamagePerStackableJewelUnique__1"] = { affix = "", "15% increased Elemental Damage per Grand Spectrum", statOrder = { 3715 }, level = 1, group = "IncreasedDamagePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3033481928, }, - ["CriticalStrikeChancePerStackableJewelUnique__1"] = { affix = "", "25% increased Critical Hit Chance per Grand Spectrum", statOrder = { 3714 }, level = 1, group = "CriticalStrikeChancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1153907800, }, - ["AllResistancePerStackableJewelUnique__1"] = { affix = "", "+7% to all Elemental Resistances per socketed Grand Spectrum", statOrder = { 3716 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1345312164, }, - ["MaximumLifePerStackableJewelUnique__1"] = { affix = "", "5% increased Maximum Life per socketed Grand Spectrum", statOrder = { 3717 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 262406138, }, - ["AvoidElementalAilmentsPerStackableJewelUnique__1"] = { affix = "", "12% chance to Avoid Elemental Ailments per Grand Spectrum", statOrder = { 3713 }, level = 1, group = "AvoidElementalAilmentsPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 3907129423, }, - ["MinionCriticalStrikeMultiplierPerStackableJewelUnique__1"] = { affix = "", "Minions have +10% to Critical Damage Bonus per Grand Spectrum", statOrder = { 3721 }, level = 1, group = "MinionCriticalStrikeMultiplierPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHash = 3164503003, }, - ["MinimumEnduranceChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Endurance Charges per Grand Spectrum", statOrder = { 3718 }, level = 1, group = "MinimumEnduranceChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 3024010112, }, - ["MinimumFrenzyChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Frenzy Charges per Grand Spectrum", statOrder = { 3719 }, level = 1, group = "MinimumFrenzyChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 28063707, }, - ["MinimumPowerChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Power Charges per Grand Spectrum", statOrder = { 3720 }, level = 1, group = "MinimumPowerChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2790884137, }, - ["AddedColdDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 10 to 20 Cold Damage to Spells per Power Charge", statOrder = { 1507 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 3408048164, }, - ["AddedColdDamagePerPowerChargeUnique__2"] = { affix = "", "Adds 50 to 70 Cold Damage to Spells per Power Charge", statOrder = { 1507 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHash = 3408048164, }, - ["GainManaOnKillingFrozenEnemyUnique__1"] = { affix = "", "+(20-25) Mana gained on Killing a Frozen Enemy", statOrder = { 9101 }, level = 1, group = "GainManaOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3304801725, }, - ["GainPowerChargeOnKillingFrozenEnemyUnique__1"] = { affix = "", "Gain a Power Charge on killing a Frozen enemy", statOrder = { 1506 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3607154250, }, - ["IncreasedDamageIfFrozenRecentlyUnique__1"] = { affix = "", "60% increased Damage if you've Frozen an Enemy Recently", statOrder = { 5596 }, level = 44, group = "IncreasedDamageIfFrozenRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1064477264, }, - ["AddedLightningDamagePerIntelligenceUnique__1"] = { affix = "", "Adds 1 to 10 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4409 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3390848861, }, - ["AddedLightningDamagePerIntelligenceUnique__2"] = { affix = "", "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4409 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 3390848861, }, - ["IncreasedAttackSpeedPerDexterityUnique__1"] = { affix = "", "1% increased Attack Speed per 20 Dexterity", statOrder = { 2213 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 720908147, }, - ["MovementVelocityWhileBleedingUnique__1"] = { affix = "", "20% increased Movement Speed while Bleeding", statOrder = { 8608 }, level = 1, group = "MovementVelocityWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 696659555, }, - ["IncreasedPhysicalDamageTakenWhileMovingUnique__1"] = { affix = "", "10% increased Physical Damage taken while moving", statOrder = { 3882 }, level = 1, group = "IncreasedPhysicalDamageTakenWhileMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 4052714663, }, - ["PhysicalDamageReductionWhileNotMovingUnique__1"] = { affix = "", "10% additional Physical Damage Reduction while stationary", statOrder = { 3880 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 2181129193, }, - ["AddedLightningDamagePerShockedEnemyKilledUnique__1"] = { affix = "", "Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently", statOrder = { 8421 }, level = 1, group = "AddedLightningDamagePerShockedEnemyKilled", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 4222857095, }, - ["ColdPenetrationAgainstChilledEnemiesUnique__1"] = { affix = "", "Damage Penetrates 20% Cold Resistance against Chilled Enemies", statOrder = { 5318 }, level = 81, group = "ColdPenetrationAgainstChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 1477032229, }, - ["GainLifeOnIgnitingEnemyUnique__1"] = { affix = "", "Recover (40-60) Life when you Ignite an Enemy", statOrder = { 9099 }, level = 81, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 4045269075, }, - ["GainLifeOnIgnitingEnemyUnique__2"] = { affix = "", "Recover (20-30) Life when you Ignite an Enemy", statOrder = { 9099 }, level = 36, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 4045269075, }, - ["ReflectsShocksUnique__1"] = { affix = "", "Shock Reflection", statOrder = { 9131 }, level = 1, group = "ReflectsShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3291999509, }, - ["ChaosDamageDoesNotBypassESNotLowLifeOrManaUnique__1"] = { affix = "", "Chaos Damage taken does not cause double loss of Energy Shield while not on Low Life", statOrder = { 5201 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 2319040925, }, - ["FrenzyChargeOnHitWhileBleedingUnique__1"] = { affix = "", "Gain a Frenzy Charge on Hit while Bleeding", statOrder = { 6363 }, level = 1, group = "FrenzyChargeOnHitWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 2977774856, }, - ["IncreasedColdDamagePerFrenzyChargeUnique__1"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5301 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHash = 329974315, }, - ["IncreasedColdDamagePerFrenzyChargeUnique__2"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5301 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, tradeHash = 329974315, }, - ["OnHitBlindChilledEnemiesUnique__1_"] = { affix = "", "Blind Chilled enemies on Hit", statOrder = { 4778 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3450276548, }, - ["GainLifeOnBlockUnique__1"] = { affix = "", "Recover (250-500) Life when you Block", statOrder = { 1448 }, level = 1, group = "RecoverLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, tradeHash = 1678831767, }, - ["GrantsLevel30ReckoningUnique__1"] = { affix = "", "Grants Level 30 Reckoning Skill", statOrder = { 477 }, level = 1, group = "GrantsLevel30Reckoning", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2434330144, }, - ["MinionsRecoverLifeOnKillingPoisonedEnemyUnique__1_"] = { affix = "", "Minions Recover 10% of maximum Life on Killing a Poisoned Enemy", statOrder = { 8554 }, level = 1, group = "MinionsRecoverLifeOnKillingPoisonedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 2602664175, }, - ["WhenReachingMaxPowerChargesGainAFrenzyChargeUnique__1"] = { affix = "", "Gain a Frenzy Charge on reaching Maximum Power Charges", statOrder = { 3180 }, level = 1, group = "WhenReachingMaxPowerChargesGainAFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 2732344760, }, - ["GrantsEnvyUnique__1"] = { affix = "", "Grants Level 25 Envy Skill", statOrder = { 476 }, level = 87, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 52953650, }, - ["GrantsEnvyUnique__2"] = { affix = "", "Grants Level 15 Envy Skill", statOrder = { 476 }, level = 1, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 52953650, }, - ["GainArmourIfBlockedRecentlyUnique__1"] = { affix = "", "+(1500-3000) Armour if you've Blocked Recently", statOrder = { 3995 }, level = 1, group = "GainArmourIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 4091848539, }, - ["EnemiesBlockedAreIntimidatedUnique__1"] = { affix = "", "Permanently Intimidate enemies on Block", statOrder = { 8843 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2930706364, }, - ["MinionsPoisonEnemiesOnHitUnique__1"] = { affix = "", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 2790 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHash = 1974445926, }, - ["MinionsPoisonEnemiesOnHitUnique__2"] = { affix = "", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 2790 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "minion", "ailment" }, tradeHash = 1974445926, }, - ["GrantsLevel20BoneNovaTriggerUnique__1"] = { affix = "", "Trigger Level 20 Bone Nova when you Hit a Bleeding Enemy", statOrder = { 545 }, level = 1, group = "GrantsLevel20BoneNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHash = 2634885412, }, - ["GrantsLevel20IcicleNovaTriggerUnique__1"] = { affix = "", "Trigger Level 20 Icicle Burst when you Hit a Frozen Enemy", statOrder = { 585 }, level = 1, group = "GrantsLevel20IcicleNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, tradeHash = 1357672429, }, - ["AttacksCauseBleedingOnCursedEnemyHitUnique__1"] = { affix = "", "Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies", statOrder = { 4451 }, level = 1, group = "AttacksCauseBleedingOnCursedEnemyHit25Percent", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2591028853, }, - ["ReceiveBleedingWhenHitUnique__1_"] = { affix = "", "50% chance to be inflicted with Bleeding when Hit", statOrder = { 9076 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 3423694372, }, - ["ArmourIncreasedByUncappedFireResistanceUnique__1"] = { affix = "", "Armour is increased by Uncapped Fire Resistance", statOrder = { 4294 }, level = 1, group = "ArmourUncappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 713266390, }, - ["EvasionIncreasedByUncappedColdResistanceUnique__1"] = { affix = "", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6072 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2358015838, }, - ["CriticalChanceIncreasedByUncappedLightningResistanceUnique__1"] = { affix = "", "Critical Hit Chance is increased by Overcapped Lightning Resistance", statOrder = { 5445 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 2478752719, }, - ["CoverInAshWhenHitUnique__1"] = { affix = "", "Cover Enemies in Ash when they Hit you", statOrder = { 4207 }, level = 44, group = "CoverInAshWhenHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3748879662, }, - ["CriticalStrikesDealIncreasedLightningDamageUnique__1"] = { affix = "", "50% increased Lightning Damage", statOrder = { 857 }, level = 87, group = "CriticalStrikesDealIncreasedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, }, - ["MaximumEnergyShieldAsPercentageOfLifeUnique__1"] = { affix = "", "Gain (4-6)% of maximum Life as Extra maximum Energy Shield", statOrder = { 8334 }, level = 60, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1228337241, }, - ["MaximumEnergyShieldAsPercentageOfLifeUnique__2"] = { affix = "", "Gain (5-10)% of maximum Life as Extra maximum Energy Shield", statOrder = { 8334 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1228337241, }, - ["ChillEnemiesWhenHitUnique__1"] = { affix = "", "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", statOrder = { 2757 }, level = 1, group = "ChillEnemiesWhenHit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 2459809121, }, - ["OnlySocketCorruptedGemsUnique__1"] = { affix = "", "You can only Socket Corrupted Gems in this item", statOrder = { 7168 }, level = 1, group = "OnlySocketCorruptedGems", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 608438307, }, - ["CurseLevel10VulnerabilityOnHitUnique__1"] = { affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2193 }, level = 1, group = "CurseLevel10VulnerabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2213584313, }, - ["FireResistConvertedToBlockChanceScaledJewelUnique__1_"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Attack Damage at 50% of its value", statOrder = { 7398, 7398.1 }, level = 1, group = "FireResistConvertedToBlockChanceScaledJewel", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3931143552, }, - ["FireResistAlsoGrantsEnduranceChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill", statOrder = { 7399, 7399.1 }, level = 1, group = "FireResistAlsoGrantsEnduranceChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1566428451, }, - ["ColdResistAlsoGrantsFrenzyChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill", statOrder = { 7376, 7376.1 }, level = 1, group = "ColdResistAlsoGrantsFrenzyChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 2264338004, }, - ["LightningResistAlsoGrantsPowerChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill", statOrder = { 7412, 7412.1 }, level = 1, group = "LightningResistAlsoGrantsPowerChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 439570297, }, - ["LightningStrikesOnCritUnique__1"] = { affix = "", "Trigger Level 12 Lightning Bolt when you deal a Critical Hit", statOrder = { 551 }, level = 50, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHash = 3241494164, }, - ["LightningStrikesOnCritUnique__2"] = { affix = "", "Trigger Level 30 Lightning Bolt when you deal a Critical Hit", statOrder = { 551 }, level = 87, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHash = 3241494164, }, - ["ArcticArmourBuffEffectUnique__1_"] = { affix = "", "50% increased Arctic Armour Buff Effect", statOrder = { 3580 }, level = 1, group = "ArcticArmourBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3995612171, }, - ["ArcticArmourReservationCostUnique__1"] = { affix = "", "Arctic Armour has no Reservation", statOrder = { 4232 }, level = 1, group = "ArcticArmourNoReservation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1483066460, }, - ["BleedingEnemiesExplodeUnique__1"] = { affix = "", "Bleeding Enemies you Kill Explode, dealing 5% of", "their Maximum Life as Physical Damage", statOrder = { 3063, 3063.1 }, level = 1, group = "BleedingEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3133323410, }, - ["HeraldOfIceDamageUnique__1_"] = { affix = "", "50% increased Herald of Ice Damage", statOrder = { 3287 }, level = 1, group = "HeraldOfIceDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3910961021, }, - ["IncreasedLightningDamageTakenUnique__1"] = { affix = "", "40% increased Lightning Damage taken", statOrder = { 2982 }, level = 1, group = "IncreasedLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHash = 1276918229, }, - ["PercentLightningDamageTakenFromManaBeforeLifeUnique__1"] = { affix = "", "30% of Lightning Damage is taken from Mana before Life", statOrder = { 3723 }, level = 1, group = "PercentLightningDamageTakenFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "elemental", "lightning" }, tradeHash = 2477735984, }, - ["PercentManaRecoveredWhenYouShockUnique__1"] = { affix = "", "Recover 3% of maximum Mana when you Shock an Enemy", statOrder = { 3725 }, level = 1, group = "PercentManaRecoveredWhenYouShock", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2524029637, }, - ["ChanceToCastOnManaSpentUnique__1"] = { affix = "", "50% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", statOrder = { 536, 536.1 }, level = 1, group = "ChanceToCastOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, tradeHash = 723388324, }, - ["AdditionalChanceToBlockInOffHandUnique_1"] = { affix = "", "+8% Chance to Block Attack Damage when in Off Hand", statOrder = { 3738 }, level = 1, group = "AdditionalChanceToBlockInOffHand", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2040585053, }, - ["CriticalStrikeChanceInMainHandUnique_1"] = { affix = "", "(60-80)% increased Global Critical Hit Chance when in Main Hand", statOrder = { 3737 }, level = 1, group = "CriticalStrikeChanceInMainHand", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3404168630, }, - ["CriticalStrikeMultiplierPerGreenSocketUnique_1"] = { affix = "", "+10% to Global Critical Damage Bonus per Green Socket", statOrder = { 2383 }, level = 1, group = "CriticalStrikeMultiplierPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 35810390, }, - ["LifeLeechFromPhysicalAttackDamagePerRedSocket_Unique_1"] = { affix = "", "0.3% of Physical Attack Damage Leeched as Life per Red Socket", statOrder = { 2379 }, level = 1, group = "LifeLeechFromPhysicalAttackDamagePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 3025389409, }, - ["IncreasedFlaskChargesForOtherFlasksDuringEffectUnique_1"] = { affix = "", "(50-100)% increased Charges gained by Other Flasks during Effect", statOrder = { 769 }, level = 1, group = "IncreasedFlaskChargesForOtherFlasksDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1085359447, }, - ["CannotGainFlaskChargesDuringFlaskEffectUnique_1"] = { affix = "", "Gains no Charges during Effect of any Overflowing Chalice Flask", statOrder = { 801 }, level = 1, group = "CannotGainFlaskChargesDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3741956733, }, - ["IncreasedLightningDamagePer10IntelligenceUnique__1"] = { affix = "", "1% increased Lightning Damage per 10 Intelligence", statOrder = { 3686 }, level = 1, group = "IncreasedLightningDamagePer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 990219738, }, - ["IncreasedDamagePerEnduranceChargeUnique_1"] = { affix = "", "4% increased Melee Damage per Endurance Charge", statOrder = { 3730 }, level = 1, group = "IncreasedDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1275066948, }, - ["CannotBeShockedWhileMaximumEnduranceChargesUnique_1"] = { affix = "", "You cannot be Shocked while at maximum Endurance Charges", statOrder = { 3733 }, level = 1, group = "CannotBeShockedWhileMaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 798111687, }, - ["IncreasedStunDurationOnSelfUnique_1"] = { affix = "", "50% increased Stun Duration on you", statOrder = { 3729 }, level = 1, group = "IncreasedStunDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1067429236, }, - ["ReducedDamageIfNotHitRecentlyUnique__1"] = { affix = "", "35% less Damage taken if you have not been Hit Recently", statOrder = { 3740 }, level = 1, group = "ReducedDamageIfNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 67637087, }, - ["IncreasedEvasionIfHitRecentlyUnique___1"] = { affix = "", "100% increased Evasion Rating if you have been Hit Recently", statOrder = { 3741 }, level = 1, group = "IncreasedEvasionIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 1073310669, }, - ["MovementSpeedIfUsedWarcryRecentlyUnique_1"] = { affix = "", "10% increased Movement Speed if you've used a Warcry Recently", statOrder = { 3734 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2546417825, }, - ["MovementSpeedIfUsedWarcryRecentlyUnique__2"] = { affix = "", "15% increased Movement Speed if you've used a Warcry Recently", statOrder = { 3734 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2546417825, }, - ["LifeRegeneratedAfterSavageHitUnique_1"] = { affix = "", "Regenerate 10% of maximum Life per second if you've taken a Savage Hit in the past 1 second", statOrder = { 3732 }, level = 1, group = "LifeRegeneratedAfterSavageHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 277484363, }, - ["ReducedDamageIfTakenASavageHitRecentlyUnique_1"] = { affix = "", "10% increased Damage taken if you've taken a Savage Hit Recently", statOrder = { 3728 }, level = 1, group = "ReducedDamageIfTakenASavageHitRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2415592273, }, - ["IncreasedDamagePerLevelDifferenceAgainstHigherLevelEnemiesUnique___1"] = { affix = "", "20% increased Damage with Hits for each Level higher the Enemy is than you", statOrder = { 3746 }, level = 1, group = "IncreasedDamagePerLevelDifferenceAgainstHigherLevelEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4095359151, }, - ["IncreasedCostOfMovementSkillsUnique_1"] = { affix = "", "25% increased Movement Skill Mana Cost", statOrder = { 3736 }, level = 1, group = "IncreasedCostOfMovementSkills", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, tradeHash = 3992153900, }, - ["ChanceToDodgeSpellsWhilePhasing_Unique_1"] = { affix = "", "30% chance to Avoid Elemental Ailments while Phasing", statOrder = { 4473 }, level = 1, group = "AvoidElementalStatusAilmentsPhasing", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 115351487, }, - ["IncreasedEvasionWithOnslaughtUnique_1"] = { affix = "", "100% increased Evasion Rating during Onslaught", statOrder = { 1364 }, level = 1, group = "IncreasedEvasionWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 156734303, }, - ["IIQFromMaimedEnemiesUnique_1"] = { affix = "", "(15-25)% increased Quantity of Items Dropped by Slain Maimed Enemies", statOrder = { 3726 }, level = 1, group = "IIQFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3122365625, }, - ["IIRFromMaimedEnemiesUnique_1"] = { affix = "", "(30-40)% increased Rarity of Items Dropped by Slain Maimed Enemies", statOrder = { 3727 }, level = 1, group = "IIRFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2085001246, }, - ["AdditionalChainWhileAtMaxFrenzyChargesUnique___1"] = { affix = "", "Skills Chain an additional time while at maximum Frenzy Charges", statOrder = { 1508 }, level = 1, group = "AdditionalChainWhileAtMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 285624304, }, - ["ChanceToGainFrenzyChargeOnKillingFrozenEnemyUnique__1"] = { affix = "", "20% chance to gain a Frenzy Charge on killing a Frozen enemy", statOrder = { 1505 }, level = 1, group = "ChanceToGainFrenzyChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 2230931659, }, - ["PhasingOnBeginESRechargeUnique___1"] = { affix = "", "You have Phasing if Energy Shield Recharge has started Recently", statOrder = { 2173 }, level = 56, group = "GainPhasingFor4SecondsOnBeginESRecharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2632954025, }, - ["ChanceToDodgeAttacksWhilePhasingUnique___1"] = { affix = "", "30% increased Evasion Rating while Phasing", statOrder = { 2174 }, level = 1, group = "ChanceToDodgeAttacksWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 402176724, }, - ["IncreasedArmourAndEvasionIfKilledTauntedEnemyRecentlyUnique__1"] = { affix = "", "40% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently", statOrder = { 3745 }, level = 1, group = "IncreasedArmourAndEvasionIfKilledTauntedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 3669898891, }, - ["SummonMaximumNumberOfSocketedTotemsUnique_1"] = { affix = "", "Socketed Skills Summon your maximum number of Totems in formation", statOrder = { 382 }, level = 1, group = "SummonMaximumNumberOfSocketedTotems", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 1936441365, }, - ["TotemElementalResistPerActiveTotemUnique_1"] = { affix = "", "Totems gain -10% to all Elemental Resistances per Summoned Totem", statOrder = { 3731 }, level = 1, group = "TotemElementalResistPerActiveTotem", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 2288558421, }, - ["SpellsCastByTotemsHaveReducedCastSpeedPerTotemUnique_1"] = { affix = "", "Spells Cast by Totems have 5% increased Cast Speed per Summoned Totem", statOrder = { 3735 }, level = 1, group = "SpellsCastByTotemsHaveReducedCastSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 3204585690, }, - ["AttacksByTotemsHaveReducedAttackSpeedPerTotemUnique_1"] = { affix = "", "Attacks used by Totems have 5% increased Attack Speed per Summoned Totem", statOrder = { 3747 }, level = 1, group = "AttacksByTotemsHaveReducedAttackSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 264715122, }, - ["IncreasedManaRecoveryRateUnique__1"] = { affix = "", "10% increased Mana Recovery rate", statOrder = { 1381 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3513180117, }, - ["AttacksChainInMainHandUnique__1"] = { affix = "", "Attacks Chain an additional time when in Main Hand", statOrder = { 3748 }, level = 1, group = "AttacksChainInMainHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2466604008, }, - ["AttacksExtraProjectileInOffHandUnique__1"] = { affix = "", "Attacks fire an additional Projectile when in Off Hand", statOrder = { 3751 }, level = 1, group = "AttacksExtraProjectileInOffHand", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2105048696, }, - ["CounterAttacksAddedColdDamageUnique__1"] = { affix = "", "Adds 250 to 300 Cold Damage to Counterattacks", statOrder = { 3759 }, level = 1, group = "CounterAttacksAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 1109700751, }, - ["IncreasedGolemDamagePerGolemUnique__1"] = { affix = "", "(16-20)% increased Golem Damage for each Type of Golem you have Summoned", statOrder = { 3753 }, level = 1, group = "IncreasedGolemDamagePerGolem", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 2114157293, }, - ["IncreasedLifeWhileNoCorruptedItemsUnique__1"] = { affix = "", "(8-12)% increased Maximum Life if no Equipped Items are Corrupted", statOrder = { 3755 }, level = 1, group = "IncreasedLifeWhileNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2217962305, }, - ["LifeRegenerationPerMinuteWhileNoCorruptedItemsUnique__1"] = { affix = "", "Regenerate 400 Life per second if no Equipped Items are Corrupted", statOrder = { 3756 }, level = 1, group = "LifeRegenerationPerMinuteWhileNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2497198283, }, - ["EnergyShieldRegenerationPerMinuteWhileAllCorruptedItemsUnique__1"] = { affix = "", "Regenerate 400 Energy Shield per second if all Equipped items are Corrupted", statOrder = { 3757 }, level = 1, group = "EnergyShieldRegenerationPerMinuteWhileAllCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4156715241, }, - ["BaseManaRegenerationWhileAllCorruptedItemsUnique__1"] = { affix = "", "Regenerate 35 Mana per second if all Equipped Items are Corrupted", statOrder = { 7505 }, level = 1, group = "BaseManaRegenerationWhileAllCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2760138143, }, - ["AddedChaosDamageToAttacksAndSpellsUnique__1"] = { affix = "", "Adds (13-17) to (29-37) Chaos Damage", statOrder = { 1224 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, }, - ["AddedChaosDamageToAttacksAndSpellsUnique__2"] = { affix = "", "Adds (13-17) to (23-29) Chaos Damage", statOrder = { 1224 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, }, - ["GlobalAddedChaosDamageUnique__1"] = { affix = "", "Adds (17-19) to (23-29) Chaos Damage", statOrder = { 1224 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, }, - ["GlobalAddedChaosDamageUnique__2"] = { affix = "", "Adds (50-55) to (72-80) Chaos Damage", statOrder = { 1224 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, }, - ["GlobalAddedChaosDamageUnique__3"] = { affix = "", "Adds (50-55) to (72-80) Chaos Damage", statOrder = { 1224 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, }, - ["GlobalAddedChaosDamageUnique__4__"] = { affix = "", "Adds (48-53) to (58-60) Chaos Damage", statOrder = { 1224 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, }, - ["GlobalAddedChaosDamageUnique__5_"] = { affix = "", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1224 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, }, - ["GlobalAddedChaosDamageUnique__6_"] = { affix = "", "Adds (17-23) to (29-31) Chaos Damage", statOrder = { 1224 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 3531280422, }, - ["GlobalAddedPhysicalDamageUnique__1_"] = { affix = "", "Adds (12-16) to (20-25) Physical Damage", statOrder = { 1144 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 960081730, }, - ["GlobalAddedPhysicalDamageUnique__2"] = { affix = "", "Adds (8-10) to (13-15) Physical Damage", statOrder = { 1144 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 960081730, }, - ["GlobalAddedFireDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Fire Damage", statOrder = { 1206 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 321077055, }, - ["GlobalAddedFireDamageUnique__2"] = { affix = "", "Adds (22-27) to (34-38) Fire Damage", statOrder = { 1206 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 321077055, }, - ["GlobalAddedFireDamageUnique__3_"] = { affix = "", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1206 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 321077055, }, - ["GlobalAddedFireDamageUnique__4"] = { affix = "", "Adds (16-19) to (25-29) Fire Damage", statOrder = { 1206 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 321077055, }, - ["GlobalAddedColdDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Cold Damage", statOrder = { 1212 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2387423236, }, - ["GlobalAddedColdDamageUnique__2_"] = { affix = "", "Adds (20-23) to (31-35) Cold Damage", statOrder = { 1212 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2387423236, }, - ["GlobalAddedColdDamageUnique__3"] = { affix = "", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1212 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2387423236, }, - ["GlobalAddedColdDamageUnique__4"] = { affix = "", "Adds (16-19) to (25-29) Cold Damage", statOrder = { 1212 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2387423236, }, - ["GlobalAddedLightningDamageUnique__1_"] = { affix = "", "Adds (10-13) to (43-47) Lightning Damage", statOrder = { 1220 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1334060246, }, - ["GlobalAddedLightningDamageUnique__2_"] = { affix = "", "Adds (1-3) to (47-52) Lightning Damage", statOrder = { 1220 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1334060246, }, - ["GlobalAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1220 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1334060246, }, - ["GlobalAddedLightningDamageUnique__4"] = { affix = "", "Adds (6-10) to (33-38) Lightning Damage", statOrder = { 1220 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1334060246, }, - ["EnergyShieldRegenerationperMinuteWhileOnLowLifeTransformedUnique__1"] = { affix = "", "Regenerate 2% of maximum Energy Shield per second while on Low Life", statOrder = { 1483 }, level = 45, group = "EnergyShieldRegenerationperMinuteWhileOnLowLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 115109959, }, - ["ReflectPhysicalDamageToSelfOnHitUnique__1"] = { affix = "", "Enemies you Attack Reflect 100 Physical Damage to you", statOrder = { 1854 }, level = 1, group = "ReflectPhysicalDamageToSelfOnHit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 2319377249, }, - ["IgnoreHexproofUnique___1"] = { affix = "", "Curses you inflict can affect Hexproof Enemies", statOrder = { 2269 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1367119630, }, - ["PoisonCursedEnemiesOnHitUnique__1"] = { affix = "", "Poison Cursed Enemies on hit", statOrder = { 3761 }, level = 1, group = "PoisonCursedEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 4266201818, }, - ["ChanceToPoisonCursedEnemiesOnHitUnique__1"] = { affix = "", "Always Poison on Hit against Cursed Enemies", statOrder = { 3762 }, level = 1, group = "ChanceToPoisonCursedEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2208857094, }, - ["ChanceToBeShockedUnique__1"] = { affix = "", "+20% chance to be Shocked", statOrder = { 2584 }, level = 1, group = "ChanceToBeShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3206652215, }, - ["ChanceToBeShockedUnique__2"] = { affix = "", "+50% chance to be Shocked", statOrder = { 2584 }, level = 1, group = "ChanceToBeShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3206652215, }, - ["GlobalDefensesPerWhiteSocketUnique__1"] = { affix = "", "8% increased Global Defences per White Socket", statOrder = { 2388 }, level = 1, group = "GlobalDefensesPerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 967108924, }, - ["ItemQuantityWhileWearingAMagicItemUnique__1"] = { affix = "", "(10-15)% increased Quantity of Items found with a Magic Item Equipped", statOrder = { 3764 }, level = 10, group = "ItemQuantityWhileWearingAMagicItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1498954300, }, - ["ItemRarityWhileWearingANormalItemUnique__1"] = { affix = "", "(80-100)% increased Rarity of Items found with a Normal Item Equipped", statOrder = { 3763 }, level = 1, group = "ItemRarityWhileWearingANormalItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4151190513, }, - ["AdditionalAttackTotemsUnique__1"] = { affix = "", "Attack Skills have +1 to maximum number of Summoned Totems", statOrder = { 3796 }, level = 1, group = "AdditionalAttackTotems", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3266394681, }, - ["MinionColdResistUnique__1"] = { affix = "", "Minions have +40% to Cold Resistance", statOrder = { 3742 }, level = 1, group = "MinionColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance", "minion" }, tradeHash = 2200407711, }, - ["MinionFireResistUnique__1"] = { affix = "", "Minions have +40% to Fire Resistance", statOrder = { 8500 }, level = 1, group = "MinionFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance", "minion" }, tradeHash = 1889350679, }, - ["MinionPhysicalDamageAddedAsColdUnique__1_"] = { affix = "", "Minions gain 20% of their Physical Damage as Extra Cold Damage", statOrder = { 3744 }, level = 1, group = "MinionPhysicalDamageAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "minion" }, tradeHash = 351413557, }, - ["FlaskStunImmunityUnique__1"] = { affix = "", "Cannot be Stunned during Effect", statOrder = { 732 }, level = 1, group = "FlaskStunImmunity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3589217170, }, - ["PhasingOnTrapTriggeredUnique__1"] = { affix = "", "30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy", statOrder = { 3792 }, level = 1, group = "PhasingOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 144887967, }, - ["GainEnergyShieldOnTrapTriggeredUnique__1_"] = { affix = "", "Recover 50 Energy Shield when your Trap is triggered by an Enemy", statOrder = { 3794 }, level = 1, group = "GainEnergyShieldOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1073384532, }, - ["GainLifeOnTrapTriggeredUnique__1"] = { affix = "", "Recover 100 Life when your Trap is triggered by an Enemy", statOrder = { 3793 }, level = 1, group = "GainLifeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3952196842, }, - ["GainLifeOnTrapTriggeredUnique__2__"] = { affix = "", "Recover (20-30) Life when your Trap is triggered by an Enemy", statOrder = { 3793 }, level = 1, group = "GainLifeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3952196842, }, - ["GainFrenzyChargeOnTrapTriggeredUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy", statOrder = { 3175 }, level = 1, group = "GainFrenzyChargeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 3738335639, }, - ["BleedingImmunityUnique__1"] = { affix = "", "Bleeding cannot be inflicted on you", statOrder = { 3769 }, level = 1, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1901158930, }, - ["BleedingImmunityUnique__2"] = { affix = "", "Bleeding cannot be inflicted on you", statOrder = { 3769 }, level = 1, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1901158930, }, - ["SelfStatusAilmentDurationUnique__1"] = { affix = "", "50% increased Elemental Ailment Duration on you", statOrder = { 1549 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHash = 1745952865, }, - ["PoisonOnMeleeHitUnique__1"] = { affix = "", "Melee Attacks have (20-40)% chance to Poison on Hit", statOrder = { 3807 }, level = 60, group = "PoisonOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 33065250, }, - ["MovementSpeedIfKilledRecentlyUnique___1"] = { affix = "", "15% increased Movement Speed if you've Killed Recently", statOrder = { 3808 }, level = 40, group = "MovementSpeedIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 279227559, }, - ["MovementSpeedIfKilledRecentlyUnique___2"] = { affix = "", "15% increased Movement Speed if you've Killed Recently", statOrder = { 3808 }, level = 1, group = "MovementSpeedIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 279227559, }, - ["ControlledDestructionSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 275 }, level = 45, group = "ControlledDestructionSupportLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3425526049, }, - ["ControlledDestructionSupportUnique__1New_"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 375 }, level = 45, group = "ControlledDestructionSupport", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3718597497, }, - ["ColdDamageIgnitesUnique__1"] = { affix = "", "Cold Damage from Hits also Contributes to Flammability and Ignite Magnitudes", statOrder = { 2522 }, level = 30, group = "ColdDamageAlsoIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 1888494262, }, - ["LifeRegenerationPercentPerEnduranceChargeUnique__1"] = { affix = "", "Regenerate 0.2% of maximum Life per second per Endurance Charge", statOrder = { 1375 }, level = 40, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 989800292, }, - ["AreaOfEffectPerEnduranceChargeUnique__1"] = { affix = "", "2% increased Area of Effect per Endurance Charge", statOrder = { 4246 }, level = 1, group = "AreaOfEffectPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2448279015, }, - ["ChanceForDoubleStunDurationUnique__1"] = { affix = "", "50% chance to double Stun Duration", statOrder = { 3143 }, level = 1, group = "ChanceForDoubleStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2622251413, }, - ["ChanceForDoubleStunDurationImplicitMace_1"] = { affix = "", "25% chance to double Stun Duration", statOrder = { 3143 }, level = 1, group = "ChanceForDoubleStunDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2622251413, }, - ["PhysicalAddedAsFireUnique__1"] = { affix = "", "Gain (25-35)% of Physical Damage as Extra Fire Damage with Attacks", statOrder = { 3342 }, level = 30, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, tradeHash = 3606204707, }, - ["PhysicalAddedAsFireUnique__2"] = { affix = "", "Gain 70% of Physical Damage as Extra Fire Damage", statOrder = { 1604 }, level = 50, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 1936645603, }, - ["PhysicalAddedAsFireUnique__3"] = { affix = "", "Gain 20% of Physical Damage as Extra Fire Damage", statOrder = { 1604 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHash = 1936645603, }, - ["AttackCastMoveOnWarcryRecentlyUnique____1"] = { affix = "", "If you've Warcried Recently, you and nearby allies have 20% increased Attack, Cast and Movement Speed", statOrder = { 2914 }, level = 1, group = "AttackCastMoveOnWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 1464115829, }, - ["ChaosSkillEffectDurationUnique__1"] = { affix = "", "Chaos Skills have 40% increased Skill Effect Duration", statOrder = { 1573 }, level = 1, group = "ChaosSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 289885185, }, - ["PoisonDurationUnique__1_"] = { affix = "", "(15-20)% increased Poison Duration", statOrder = { 2786 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2011656677, }, - ["PoisonDurationUnique__2"] = { affix = "", "(20-25)% increased Poison Duration", statOrder = { 2786 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2011656677, }, - ["FlaskImmuneToStunFreezeCursesUnique__1"] = { affix = "", "Immunity to Freeze, Chill, Curses and Stuns during Effect", statOrder = { 778 }, level = 1, group = "KiarasDeterminationBuff", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 803730540, }, - ["LocalPhysicalDamageAddedAsEachElementTransformed"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3809 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHash = 3620731914, }, - ["LocalPhysicalDamageAddedAsEachElementTransformed2"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3809 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHash = 3620731914, }, - ["LocalPhysicalDamageAddedAsEachElementUnique__1"] = { affix = "", "Attacks with this Weapon gain 100% of Physical damage as Extra damage of each Element", statOrder = { 3809 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHash = 3620731914, }, - ["PhysicalDamageTakenAsColdUnique__1"] = { affix = "", "20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2120 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, tradeHash = 1871056256, }, - ["ChaosDamageOverTimeUnique__1"] = { affix = "", "25% reduced Chaos Damage taken over time", statOrder = { 1621 }, level = 1, group = "ChaosDamageOverTimeTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHash = 3762784591, }, - ["PowerFrenzyOrEnduranceChargeOnKillUnique__1"] = { affix = "", "(10-15)% chance to gain a Power, Frenzy, or Endurance Charge on kill", statOrder = { 3187 }, level = 1, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 498214257, }, - ["CannotLeechFromCriticalStrikesUnique___1"] = { affix = "", "Cannot Leech Life from Critical Hits", statOrder = { 3823 }, level = 1, group = "CannotLeechFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, tradeHash = 3243534964, }, - ["ChanceToBlindOnCriticalStrikesUnique__1"] = { affix = "", "30% chance to Blind Enemies on Critical Hit", statOrder = { 3824 }, level = 1, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3983981705, }, - ["ChanceToBlindOnCriticalStrikesUnique__2_"] = { affix = "", "(40-50)% chance to Blind Enemies on Critical Hit", statOrder = { 3824 }, level = 38, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3983981705, }, - ["BleedOnMeleeCriticalStrikeUnique__1"] = { affix = "", "50% chance to cause Bleeding on Critical Hit", statOrder = { 7173 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2743246999, }, - ["StunDurationBasedOnEnergyShieldUnique__1"] = { affix = "", "Stun Threshold is based on Energy Shield instead of Life", statOrder = { 3822 }, level = 48, group = "StunDurationBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2562665460, }, - ["TakeNoExtraDamageFromCriticalStrikesUnique__1"] = { affix = "", "Take no Extra Damage from Critical Hits", statOrder = { 3832 }, level = 1, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 4294267596, }, - ["ShockedEnemyCastSpeedUnique__1"] = { affix = "", "Enemies you Shock have 30% reduced Cast Speed", statOrder = { 3833 }, level = 1, group = "ShockedEnemyCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4107150355, }, - ["ShockedEnemyMovementSpeedUnique__1"] = { affix = "", "Enemies you Shock have 20% reduced Movement Speed", statOrder = { 3834 }, level = 1, group = "ShockedEnemyMovementSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3134790305, }, - ["IncreasedBurningDamageIfYouHaveIgnitedRecentlyUnique__1"] = { affix = "", "100% increased Burning Damage if you've Ignited an Enemy Recently", statOrder = { 3866 }, level = 1, group = "IncreasedBurningDamageIfYouHaveIgnitedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3919557483, }, - ["RecoverLifePercentOnIgniteUnique__1"] = { affix = "", "Recover 1% of maximum Life when you Ignite an Enemy", statOrder = { 3867 }, level = 1, group = "RecoverLifePercentOnIgnite", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3112776239, }, - ["IncreasedMeleePhysicalDamageAgainstIgnitedEnemiesUnique__1"] = { affix = "", "100% increased Melee Physical Damage against Ignited Enemies", statOrder = { 3868 }, level = 1, group = "IncreasedMeleePhysicalDamageAgainstIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1332534089, }, - ["NormalMonsterItemQuantityUnique__1"] = { affix = "", "(35-50)% increased Quantity of Items Dropped by Slain Normal Enemies", statOrder = { 8734 }, level = 38, group = "NormalMonsterItemQuantity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1342790450, }, - ["MagicMonsterItemRarityUnique__1"] = { affix = "", "(100-150)% increased Rarity of Items Dropped by Slain Magic Enemies", statOrder = { 7462 }, level = 1, group = "MagicMonsterItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3433676080, }, - ["HeistContractChestRewardsDuplicated"] = { affix = "", "Heist Chests have a 100% chance to Duplicate their contents", "Monsters have 100% more Life", statOrder = { 5027, 7810 }, level = 1, group = "HeistContractChestRewardsDuplicated", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3583773212, }, - ["HeistContractAdditionalIntelligence"] = { affix = "", "Completing a Heist generates 3 additional Reveals", "Heist Chests have 25% chance to contain nothing", statOrder = { 7806, 7807 }, level = 1, group = "HeistContractAdditionalIntelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4028807870, }, - ["HeistContractNPCPerksDoubled"] = { affix = "", "50% reduced time before Lockdown", "Rogue Perks are doubled", statOrder = { 5767, 7811 }, level = 1, group = "HeistContractNPCPerksDoubled", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3021082678, }, - ["HeistContractBetterTargetValue"] = { affix = "", "Rogue Equipment cannot be found", "200% more Rogue's Marker value of primary Heist Target", statOrder = { 7808, 7809 }, level = 1, group = "HeistContractBetterTargetValue", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1530239356, }, - ["CriticalStrikeChanceForForkingArrowsUnique__1"] = { affix = "", "(150-200)% increased Critical Hit Chance with arrows that Fork", statOrder = { 3869 }, level = 1, group = "CriticalStrikeChanceForForkingArrows", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 4169623196, }, - ["ArrowsAlwaysCritAfterPiercingUnique___1"] = { affix = "", "Arrows Pierce all Targets after Chaining", statOrder = { 3872 }, level = 1, group = "ArrowsAlwaysCritAfterPiercing", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1997151732, }, - ["ArrowsThatPierceCauseBleedingUnique__1"] = { affix = "", "Arrows that Pierce have 50% chance to inflict Bleeding", statOrder = { 3871 }, level = 1, group = "ArrowsThatPierceCauseBleeding25Percent", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1812251528, }, - ["IncreaseProjectileAttackDamagePerAccuracyUnique__1"] = { affix = "", "1% increased Projectile Attack Damage per 200 Accuracy Rating", statOrder = { 3875 }, level = 1, group = "IncreaseProjectileAttackDamagePerAccuracy", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 4157767905, }, - ["AdditionalSpellProjectilesUnique__1"] = { affix = "", "Spells fire an additional Projectile", statOrder = { 3873 }, level = 85, group = "AdditionalSpellProjectiles", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 1011373762, }, - ["IncreasedMinionDamageIfYouHitEnemyUnique__1"] = { affix = "", "Minions deal 70% increased Damage if you've Hit Recently", statOrder = { 8484 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 2337295272, }, - ["MinionDamageAlsoAffectsYouUnique__1"] = { affix = "", "Increases and Reductions to Minion Damage also affect you at 150% of their value", statOrder = { 4114 }, level = 1, group = "MinionDamageAlsoAffectsYou", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 1433144735, }, - ["GlobalCriticalStrikeChanceAgainstChilledUnique__1"] = { affix = "", "60% increased Critical Hit Chance against Chilled Enemies", statOrder = { 6461 }, level = 1, group = "GlobalCriticalStrikeChanceAgainstChilled", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3699490848, }, - ["CastSocketedColdSkillsOnCriticalStrikeUnique__1"] = { affix = "", "Trigger a Socketed Cold Spell on Melee Critical Hit, with a 0.25 second Cooldown", statOrder = { 601 }, level = 1, group = "CastSocketedColdSpellsOnMeleeCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental", "cold", "attack", "caster", "gem" }, tradeHash = 2295303426, }, - ["IncreasedAttackAreaOfEffectUnique__1_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4363 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1840985759, }, - ["IncreasedAttackAreaOfEffectUnique__2_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4363 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1840985759, }, - ["IncreasedAttackAreaOfEffectUnique__3"] = { affix = "", "(-40-40)% reduced Area of Effect for Attacks", statOrder = { 4363 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1840985759, }, - ["PhysicalDamageCanShockUnique__1"] = { affix = "", "Physical Damage from Hits also Contributes to Shock Chance", statOrder = { 2532 }, level = 1, group = "PhysicalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3848047105, }, - ["DealNoElementalDamageUnique__1"] = { affix = "", "Deal no Elemental Damage", statOrder = { 5692 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2998305364, }, - ["DealNoElementalDamageUnique__2"] = { affix = "", "Deal no Elemental Damage", statOrder = { 5692 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2998305364, }, - ["DealNoElementalDamageUnique__3"] = { affix = "", "Deal no Elemental Damage", statOrder = { 5692 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 2998305364, }, - ["TakeFireDamageOnIgniteUnique__1"] = { affix = "", "Take 100 Fire Damage when you Ignite an Enemy", statOrder = { 6153 }, level = 1, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2518598473, }, - ["ChanceForSpectersToGainSoulEaterOnKillUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill", statOrder = { 7432 }, level = 1, group = "ChanceForSpectersToGainSoulEaterOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3193100053, }, - ["MovementSkillsDealNoPhysicalDamageUnique__1"] = { affix = "", "Movement Skills deal no Physical Damage", statOrder = { 8581 }, level = 1, group = "MovementSkillsDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 4114010855, }, - ["GainPhasingIfKilledRecentlyUnique__1"] = { affix = "", "You have Phasing if you've Killed Recently", statOrder = { 6397 }, level = 1, group = "GainPhasingIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3489372920, }, - ["MovementSkillsCostNoManaUnique__1"] = { affix = "", "Movement Skills Cost no Mana", statOrder = { 3055 }, level = 1, group = "MovementSkillsCostNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3086866381, }, - ["ProjectileAttackDamageImplicitGloves1"] = { affix = "", "(14-18)% increased Projectile Attack Damage", statOrder = { 1664 }, level = 1, group = "ProjectileAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 2162876159, }, - ["ManaPerStrengthUnique__1__"] = { affix = "", "+1 Mana per 4 Strength", statOrder = { 1691 }, level = 1, group = "ManaPerStrength", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 507075051, }, - ["EnergyShieldPerStrengthUnique__1"] = { affix = "", "1% increased Energy Shield per 10 Strength", statOrder = { 6010 }, level = 1, group = "EnergyShieldPerStrength", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 506942497, }, - ["LifePerDexterityUnique__1"] = { affix = "", "+1 Life per 4 Dexterity", statOrder = { 1690 }, level = 1, group = "LifePerDexterity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2042405614, }, - ["MeleePhysicalDamagePerDexterityUnique__1_"] = { affix = "", "2% increased Melee Physical Damage per 10 Dexterity", statOrder = { 8374 }, level = 1, group = "MeleePhysicalDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 2355151849, }, - ["AccuracyPerIntelligenceUnique__1"] = { affix = "", "+4 Accuracy Rating per 2 Intelligence", statOrder = { 1689 }, level = 1, group = "AccuracyPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2196657026, }, - ["EvasionRatingPerIntelligenceUnique__1"] = { affix = "", "2% increased Evasion Rating per 10 Intelligence", statOrder = { 6060 }, level = 1, group = "EvasionRatingPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 810772344, }, - ["ChanceToGainFrenzyChargeOnStunUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge when you Stun an Enemy", statOrder = { 5155 }, level = 38, group = "ChanceToGainFrenzyChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1695720239, }, - ["PrrojectilesPierceWhilePhasingUnique__1_"] = { affix = "", "Projectiles Pierce all Targets while you have Phasing", statOrder = { 8997 }, level = 1, group = "PrrojectilesPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2636403786, }, - ["AdditionalPierceWhilePhasingUnique__1"] = { affix = "", "Projectiles Pierce 5 additional Targets while you have Phasing", statOrder = { 8998 }, level = 1, group = "AdditionalPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 97250660, }, - ["ChanceToAvoidProjectilesWhilePhasingUnique__1"] = { affix = "", "20% chance to Avoid Projectiles while Phasing", statOrder = { 4481 }, level = 1, group = "ChanceToAvoidProjectilesWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3635120731, }, - ["FlaskAdditionalProjectilesDuringEffectUnique__1"] = { affix = "", "Skills fire 2 additional Projectiles during Effect", statOrder = { 752 }, level = 85, group = "FlaskAdditionalProjectilesDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 323705912, }, - ["FlaskIncreasedAreaOfEffectDuringEffectUnique__1_"] = { affix = "", "(10-20)% increased Area of Effect during Effect", statOrder = { 730 }, level = 1, group = "FlaskIncreasedAreaOfEffectDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 215882879, }, - ["CelestialFootprintsUnique__1_"] = { affix = "", "Celestial Footprints", statOrder = { 10100 }, level = 1, group = "CelestialFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 50381303, }, - ["IncreasedMinionAttackSpeedUnique__1_"] = { affix = "", "Minions have (10-15)% increased Attack Speed", statOrder = { 2555 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHash = 3375935924, }, - ["GolemPerPrimordialJewel"] = { affix = "", "+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped", statOrder = { 8758 }, level = 1, group = "GolemPerPrimordialJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 920385757, }, - ["PrimordialJewelCountUnique__1"] = { affix = "", "Primordial", statOrder = { 9996 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1089165168, }, - ["PrimordialJewelCountUnique__2"] = { affix = "", "Primordial", statOrder = { 9996 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1089165168, }, - ["PrimordialJewelCountUnique__3"] = { affix = "", "Primordial", statOrder = { 9996 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1089165168, }, - ["PrimordialJewelCountUnique__4"] = { affix = "", "Primordial", statOrder = { 9996 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1089165168, }, - ["GolemLifeUnique__1"] = { affix = "", "Golems have (18-22)% increased Maximum Life", statOrder = { 6482 }, level = 1, group = "GolemLifeUnique", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 1750735210, }, - ["GolemLifeRegenerationUnique__1"] = { affix = "", "Summoned Golems Regenerate 2% of their maximum Life per second", statOrder = { 6481 }, level = 1, group = "GolemLifeRegenerationUnique", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 2235163762, }, - ["IncreasedDamageIfGolemSummonedRecently__1"] = { affix = "", "(25-30)% increased Damage if you Summoned a Golem in the past 8 seconds", statOrder = { 3270 }, level = 1, group = "IncreasedDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3384291300, }, - ["IncreasedGolemDamageIfGolemSummonedRecently__1_"] = { affix = "", "Golems Summoned in the past 8 seconds deal (35-45)% increased Damage", statOrder = { 3271 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 2869193493, }, - ["IncreasedGolemDamageIfGolemSummonedRecentlyUnique__1"] = { affix = "", "Golems Summoned in the past 8 seconds deal (100-125)% increased Damage", statOrder = { 3271 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 2869193493, }, - ["GolemSkillsCooldownRecoveryUnique__1"] = { affix = "", "Golem Skills have (20-30)% increased Cooldown Recovery Rate", statOrder = { 2930 }, level = 1, group = "GolemSkillsCooldownRecoveryUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 729180395, }, - ["GolemsSkillsCooldownRecoveryUnique__1_"] = { affix = "", "Summoned Golems have (30-45)% increased Cooldown Recovery Rate", statOrder = { 2931 }, level = 1, group = "GolemsSkillsCooldownRecoveryUnique", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3246099900, }, - ["GolemBuffEffectUnique__1"] = { affix = "", "30% increased Effect of Buffs granted by your Golems", statOrder = { 6479 }, level = 1, group = "GolemBuffEffectUnique", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2109043683, }, - ["GolemAttackAndCastSpeedUnique__1"] = { affix = "", "Golems have (16-20)% increased Attack and Cast Speed", statOrder = { 6477 }, level = 1, group = "GolemAttackAndCastSpeedUnique", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHash = 56225773, }, - ["GolemArmourRatingUnique__1"] = { affix = "", "Golems have +(800-1000) to Armour", statOrder = { 6485 }, level = 1, group = "GolemArmourRatingUnique", weightKey = { }, weightVal = { }, modTags = { "armour", "defences", "minion" }, tradeHash = 1020786773, }, - ["ArmourPerTotemUnique__1"] = { affix = "", "+300 Armour per Summoned Totem", statOrder = { 3996 }, level = 1, group = "ArmourPerTotem", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1429385513, }, - ["SpellDamageIfYouHaveCritRecentlyUnique__1"] = { affix = "", "200% increased Spell Damage if you've dealt a Critical Hit in the past 8 seconds", statOrder = { 9409 }, level = 1, group = "SpellDamageIfCritPast8Seconds", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 467806158, }, - ["SpellDamageIfYouHaveCritRecentlyUnique__2"] = { affix = "", "(120-150)% increased Spell Damage if you've dealt a Critical Hit Recently", statOrder = { 9400 }, level = 1, group = "SpellDamageIfYouHaveCritRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 1550015622, }, - ["CriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Critical Hits deal no Damage", statOrder = { 5501 }, level = 1, group = "CriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3245481061, }, - ["IncreasedManaRegenerationWhileStationaryUnique__1"] = { affix = "", "60% increased Mana Regeneration Rate while stationary", statOrder = { 3883 }, level = 1, group = "ManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3308030688, }, - ["AddedArmourWhileStationaryUnique__1"] = { affix = "", "+1500 Armour while stationary", statOrder = { 3881 }, level = 1, group = "AddedArmourWhileStationary", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 2551779822, }, - ["SpreadChilledGroundWhenHitByAttackUnique__1"] = { affix = "", "15% chance to create Chilled Ground when Hit with an Attack", statOrder = { 5275 }, level = 1, group = "SpreadChilledGroundWhenHitByAttack", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 358040686, }, - ["NonCriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Non-Critical Hits deal no Damage", statOrder = { 8655 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2511969244, }, - ["NonCriticalStrikesDealNoDamageUnique__2"] = { affix = "", "Non-Critical Hits deal no Damage", statOrder = { 8655 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2511969244, }, - ["CritMultiIfDealtNonCritRecentlyUnique__1"] = { affix = "", "25% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", statOrder = { 5472 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 1626712767, }, - ["CritMultiIfDealtNonCritRecentlyUnique__2"] = { affix = "", "60% increased Critical Damage Bonus if you've dealt a Non-Critical Hit Recently", statOrder = { 5472 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 1626712767, }, - ["EnemiesDestroyedOnKillUnique__1"] = { affix = "", "Enemies killed by your Hits are destroyed", statOrder = { 5931 }, level = 1, group = "EnemiesDestroyedOnKill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2970902024, }, - ["RecoverPercentMaxLifeOnKillUnique__1"] = { affix = "", "Recover 5% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, - ["RecoverPercentMaxLifeOnKillUnique__2"] = { affix = "", "Recover 5% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, - ["RecoverPercentMaxLifeOnKillUnique__3"] = { affix = "", "Recover 1% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, - ["CriticalMultiplierPerBlockChanceUnique__1"] = { affix = "", "+1% to Critical Damage Bonus per 1% Chance to Block Attack Damage", statOrder = { 2803 }, level = 1, group = "CriticalMultiplierPerBlockChance", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 956384511, }, - ["AttackDamagePerLowestArmourOrEvasionUnique__1"] = { affix = "", "1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating", statOrder = { 4391 }, level = 98, group = "AttackDamagePerLowestArmourOrEvasion", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1358422215, }, - ["FortifyOnMeleeStunUnique__1"] = { affix = "", "Melee Hits which Stun Fortify", statOrder = { 5140 }, level = 1, group = "FortifyOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3206381437, }, - ["OnslaughtWhileFortifiedUnique__1"] = { affix = "", "You have Onslaught while Fortified", statOrder = { 6395 }, level = 1, group = "OnslaughtWhileFortified", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1493590317, }, - ["ItemStatsDoubledInBreachImplicit"] = { affix = "", "Properties are doubled while in a Breach", statOrder = { 7281 }, level = 1, group = "StatsDoubledInBreach", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 202275580, }, - ["SummonSpidersOnKillUnique__1"] = { affix = "", "100% chance to Trigger Level 1 Raise Spiders on Kill", statOrder = { 559 }, level = 1, group = "GrantsSpiderMinion", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3844016207, }, - ["CannotCastSpellsUnique__1"] = { affix = "", "Cannot Cast Spells", statOrder = { 4926 }, level = 1, group = "CannotCastSpells", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 3965442551, }, - ["CannotDealSpellDamageUnique__1"] = { affix = "", "Spell Skills deal no Damage", statOrder = { 9430 }, level = 1, group = "CannotDealSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 291644318, }, - ["GoatHoofFootprintsUnique__1"] = { affix = "", "Burning Hoofprints", statOrder = { 10103 }, level = 1, group = "GoatHoofFootprints", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3576153145, }, - ["FireDamagePerStrengthUnique__1"] = { affix = "", "1% increased Fire Damage per 20 Strength", statOrder = { 6143 }, level = 1, group = "FireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2241902512, }, - ["GolemLargerAggroRadiusUnique__1"] = { affix = "", "Summoned Golems are Aggressive", statOrder = { 10010 }, level = 1, group = "GolemLargerAggroRadius", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3630426972, }, - ["MaximumLifeConvertedToEnergyShieldUnique__1"] = { affix = "", "20% of Maximum Life Converted to Energy Shield", statOrder = { 8332 }, level = 75, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2458962764, }, - ["MaximumLifeConvertedToEnergyShieldUnique__2"] = { affix = "", "50% of Maximum Life Converted to Energy Shield", statOrder = { 8332 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 2458962764, }, - ["LocalChanceToPoisonOnHitUnique__1"] = { affix = "", "15% chance to Poison on Hit with this weapon", statOrder = { 7334 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, }, - ["LocalChanceToPoisonOnHitUnique__2"] = { affix = "", "60% chance to Poison on Hit with this weapon", statOrder = { 7334 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, }, - ["LocalChanceToPoisonOnHitUnique__3"] = { affix = "", "20% chance to Poison on Hit with this weapon", statOrder = { 7334 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, }, - ["LocalChanceToPoisonOnHitUnique__4"] = { affix = "", "20% chance to Poison on Hit with this weapon", statOrder = { 7334 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3885634897, }, - ["ChanceToPoisonUnique__1_______"] = { affix = "", "25% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "PoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 795138349, }, - ["IncreasedSpellDamageWhileShockedUnique__1"] = { affix = "", "50% increased Spell Damage while Shocked", statOrder = { 9419 }, level = 1, group = "IncreasedSpellDamageWhileShocked", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2088288068, }, - ["MaximumResistanceWithNoEnduranceChargesUnique__1__"] = { affix = "", "+2% to all maximum Resistances while you have no Endurance Charges", statOrder = { 4089 }, level = 1, group = "MaximumResistanceWithNoEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "resistance" }, tradeHash = 3635566977, }, - ["OnslaughtWithMaxEnduranceChargesUnique__1"] = { affix = "", "You have Onslaught while at maximum Endurance Charges", statOrder = { 6391 }, level = 1, group = "OnslaughtWithMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3101915418, }, - ["MinionsGainYourStrengthUnique__1"] = { affix = "", "Half of your Strength is added to your Minions", statOrder = { 8546 }, level = 1, group = "MinionsGainYourStrength", weightKey = { }, weightVal = { }, modTags = { "minion", "attribute" }, tradeHash = 2195137717, }, - ["AdditionalZombiesPerXStrengthUnique__1"] = { affix = "", "+1 to maximum number of Raised Zombies per 500 Strength", statOrder = { 8765 }, level = 1, group = "AdditionalZombiesPerXStrength", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 4056985119, }, - ["ReducedBleedDurationUnique__1_"] = { affix = "", "25% reduced Bleeding Duration", statOrder = { 4522 }, level = 1, group = "BleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1459321413, }, - ["IncreasedRarityPerRampageStacksUnique__1"] = { affix = "", "1% increased Rarity of Items found per 15 Rampage Kills", statOrder = { 6930 }, level = 38, group = "IncreasedRarityPerRampageStacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4260403588, }, - ["ImmuneToBurningShockedChilledGroundUnique__1"] = { affix = "", "Immune to Burning Ground, Shocked Ground and Chilled Ground", statOrder = { 6830 }, level = 1, group = "ImmuneToBurningShockedChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 3705740723, }, - ["MaximumLifePer10DexterityUnique__1"] = { affix = "", "+2 to Maximum Life per 10 Dexterity", statOrder = { 8329 }, level = 1, group = "FlatLifePer10Dexterity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3806100539, }, - ["LifeRegenerationWhileMovingUnique__1"] = { affix = "", "Regenerate 100 Life per second while moving", statOrder = { 7032 }, level = 1, group = "LifeRegenerationWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2841027131, }, - ["SpellsAreDisabledUnique__1"] = { affix = "", "Your Spells are disabled", statOrder = { 9982 }, level = 1, group = "SpellsAreDisabled", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 1981749265, }, - ["MaximumLifePerItemRarityUnique__1"] = { affix = "", "+1 Life per 2% increased Rarity of Items found", statOrder = { 8331 }, level = 1, group = "MaxLifePerItemRarity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1457265483, }, - ["PercentDamagePerItemQuantityUnique__1"] = { affix = "", "Your Increases and Reductions to Quantity of Items found also apply to Damage", statOrder = { 5606 }, level = 1, group = "PercentDamagePerItemQuantity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2675627948, }, - ["ItemQuantityPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% increased Quantity of Items found per Chest opened Recently", statOrder = { 6929 }, level = 1, group = "ItemQuantityPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3729758391, }, - ["MovementSpeedPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% reduced Movement Speed per Chest opened Recently", statOrder = { 8602 }, level = 1, group = "MovementSpeedPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 718844908, }, - ["WarcryKnockbackUnique__1"] = { affix = "", "Warcries Knock Back and Interrupt Enemies in a smaller Area", statOrder = { 9882 }, level = 1, group = "WarcryKnockback", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 519622288, }, - ["AttackAndCastSpeedOnUsingMovementSkillUnique__1"] = { affix = "", "15% increased Attack and Cast Speed if you've used a Movement Skill Recently", statOrder = { 3056 }, level = 1, group = "AttackAndCastSpeedOnUsingMovementSkill", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 2831922878, }, - ["CannotBeSlowedBelowBaseUnique__1"] = { affix = "", "Action Speed cannot be modified to below base value", statOrder = { 2808 }, level = 1, group = "CannotBeSlowedBelowBase", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 628716294, }, - ["MovementCannotBeSlowedBelowBaseUnique__1"] = { affix = "", "Movement Speed cannot be modified to below base value", statOrder = { 2809 }, level = 1, group = "MovementCannotBeSlowedBelowBase", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3875592188, }, - ["EnergyShieldStartsAtZero"] = { affix = "", "Your Energy Shield starts at zero", statOrder = { 9475 }, level = 1, group = "EnergyShieldStartsAtZero", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2342431054, }, - ["FlaskElementalPenetrationOfHighestResistUnique__1"] = { affix = "", "During Effect, Damage Penetrates (5-8)% Resistance of each Element for which your Uncapped Elemental Resistance is highest", statOrder = { 799 }, level = 1, group = "FlaskElementalPenetrationOfHighestResist", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, tradeHash = 2444301311, }, - ["FlaskElementalDamageTakenOfLowestResistUnique__1"] = { affix = "", "During Effect, 6% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest", statOrder = { 798 }, level = 1, group = "FlaskElementalDamageTakenOfLowestResist", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1869678332, }, - ["SocketedGemsSupportedByEnduranceChargeOnStunUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", statOrder = { 376 }, level = 1, group = "DisplaySupportedByEnduranceChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3375208082, }, - ["IncreasedDamageToChilledEnemies1"] = { affix = "", "(15-20)% increased Damage with Hits against Chilled Enemies", statOrder = { 6754 }, level = 1, group = "IncreasedDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2097550886, }, - ["IncreasedFireDamgeIfHitRecentlyUnique__1"] = { affix = "", "100% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, }, - ["ImmuneToFreezeAndChillWhileIgnitedUnique__1"] = { affix = "", "Immune to Freeze and Chill while Ignited", statOrder = { 6842 }, level = 1, group = "ImmuneToFreezeAndChillWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 1512695141, }, - ["FirePenetrationIfBlockedRecentlyUnique__1"] = { affix = "", "Damage Penetrates 15% of Fire Resistance if you have Blocked Recently", statOrder = { 6161 }, level = 1, group = "FirePenetrationIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2341811700, }, - ["DisplayGrantsBloodOfferingUnique__1_"] = { affix = "", "Grants Level 15 Blood Offering Skill", statOrder = { 490 }, level = 1, group = "DisplayGrantsBloodOffering", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3985468650, }, - ["TriggeredSummonLesserShrineUnique__1"] = { affix = "", "Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", statOrder = { 485 }, level = 1, group = "TriggeredSummonLesserShrine", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1010340836, }, - ["CastLevel1SummonLesserShrineOnKillUnique"] = { affix = "", "(1-100)% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", statOrder = { 485 }, level = 1, group = "CastLevel1SummonLesserShrineOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1010340836, }, - ["AlwaysIgniteWhileBurningUnique__1"] = { affix = "", "You always Ignite while Burning", statOrder = { 4175 }, level = 1, group = "AlwaysIgniteWhileBurning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 2636728487, }, - ["AdditionalBlockWhileNotCursedUnique__1"] = { affix = "", "+10% Chance to Block Attack Damage while not Cursed", statOrder = { 4065 }, level = 1, group = "AdditionalBlockWhileNotCursed", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3619054484, }, - ["LifePerLevelUnique__1"] = { affix = "", "+1 Maximum Life per Level", statOrder = { 7005 }, level = 1, group = "LifePerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 1982144275, }, - ["ManaPerLevelUnique__1"] = { affix = "", "+1 Maximum Mana per Level", statOrder = { 7502 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2563691316, }, - ["EnergyShieldPerLevelUnique__1"] = { affix = "", "+1 Maximum Energy Shield per Level", statOrder = { 6009 }, level = 1, group = "EnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3864993324, }, - ["ChaosDegenAuraUnique__1"] = { affix = "", "Trigger Level 20 Death Aura when Equipped", statOrder = { 483 }, level = 1, group = "ChaosDegenAuraUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 825352061, }, - ["HeraldsAlwaysCost45Unique__1"] = { affix = "", "Mana Reservation of Herald Skills is always 45%", statOrder = { 6699 }, level = 1, group = "HeraldsAlwaysCost45", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 262773569, }, - ["StunAvoidancePerHeraldUnique__1"] = { affix = "", "35% chance to avoid being Stunned for each Herald Buff affecting you", statOrder = { 4483 }, level = 1, group = "StunAvoidancePerHerald", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1493090598, }, - ["IncreasedDamageIfShockedRecentlyUnique__1"] = { affix = "", "(20-50)% increased Damage if you have Shocked an Enemy Recently", statOrder = { 5597 }, level = 1, group = "IncreasedDamageIfShockedRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 908650225, }, - ["ShockedEnemiesExplodeUnique__1_"] = { affix = "", "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock", statOrder = { 9262, 9262.1 }, level = 1, group = "ShockedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2706994884, }, - ["UnaffectedByShockUnique__1"] = { affix = "", "Unaffected by Shock", statOrder = { 9759 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1473289174, }, - ["UnaffectedByShockUnique__2"] = { affix = "", "Unaffected by Shock", statOrder = { 9759 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 1473289174, }, - ["MinionAttackSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Attack Speed per 50 Dexterity", statOrder = { 8459 }, level = 1, group = "MinionAttackSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHash = 4047895119, }, - ["MinionMovementSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Movement Speed per 50 Dexterity", statOrder = { 8513 }, level = 1, group = "MinionMovementSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHash = 4017879067, }, - ["MinionHitsOnlyKillIgnitedEnemiesUnique__1"] = { affix = "", "Minions' Hits can only Kill Ignited Enemies", statOrder = { 8551 }, level = 1, group = "MinionHitsOnlyKillIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1736403946, }, - ["LocalIncreaseSocketedHeraldLevelUnique__1_"] = { affix = "", "+2 to Level of Socketed Herald Gems", statOrder = { 133 }, level = 1, group = "LocalIncreaseSocketedHeraldLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 1344805487, }, - ["LocalIncreaseSocketedHeraldLevelUnique__2"] = { affix = "", "+4 to Level of Socketed Herald Gems", statOrder = { 133 }, level = 1, group = "LocalIncreaseSocketedHeraldLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHash = 1344805487, }, - ["IncreasedAreaOfSkillsWithNoFrenzyChargesUnique__1_"] = { affix = "", "15% increased Area of Effect while you have no Frenzy Charges", statOrder = { 1716 }, level = 1, group = "IncreasedAreaOfSkillsWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4180687797, }, - ["GlobalCriticalMultiplierWithNoFrenzyChargesUnique__1"] = { affix = "", "+50% Global Critical Damage Bonus while you have no Frenzy Charges", statOrder = { 1715 }, level = 1, group = "GlobalCriticalMultiplierWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3062763405, }, - ["AccuracyRatingWithMaxFrenzyChargesUnique__1"] = { affix = "", "+(400-500) to Accuracy Rating while at Maximum Frenzy Charges", statOrder = { 4032 }, level = 1, group = "AccuracyRatingWithMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3213407110, }, - ["ReducedAttackSpeedOfMovementSkillsUnique__1"] = { affix = "", "Movement Attack Skills have 40% reduced Attack Speed", statOrder = { 8578 }, level = 1, group = "ReducedAttackSpeedOfMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 1176492594, }, - ["IncreasedColdDamageIfUsedFireSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Cold Damage if you have used a Fire Skill Recently", statOrder = { 5297 }, level = 1, group = "IncreasedColdDamageIfUsedFireSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3612256591, }, - ["IncreasedFireDamageIfUsedColdSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Fire Damage if you have used a Cold Skill Recently", statOrder = { 6142 }, level = 1, group = "IncreasedFireDamageIfUsedColdSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 4167600809, }, - ["IncreasedDamagePerPowerChargeUnique__1"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 5613 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2034658008, }, - ["ChanceToGainMaximumPowerChargesUnique__1_"] = { affix = "", "25% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6380, 6380.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 1232004574, }, - ["FireDamageCanPoisonUnique__1"] = { affix = "", "Fire Damage from Hits also Contributes to Poison Magnitude", statOrder = { 2517 }, level = 1, group = "FireDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 1985969957, }, - ["ColdDamageCanPoisonUnique__1_"] = { affix = "", "Cold Damage from Hits also Contributes to Poison Magnitude", statOrder = { 2516 }, level = 1, group = "ColdDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 1917124426, }, - ["LightningDamageCanPoisonUnique__1"] = { affix = "", "Lightning Damage from Hits also Contributes to Poison Magntiude", statOrder = { 2518 }, level = 1, group = "LightningDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 1604984482, }, - ["FireSkillsChanceToPoisonUnique__1"] = { affix = "", "Fire Skills have 20% chance to Poison on Hit", statOrder = { 6166 }, level = 1, group = "FireSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2424717327, }, - ["ColdSkillsChanceToPoisonUnique__1"] = { affix = "", "Cold Skills have 20% chance to Poison on Hit", statOrder = { 5327 }, level = 1, group = "ColdSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2373079502, }, - ["LightningSkillsChanceToPoisonUnique__1_"] = { affix = "", "Lightning Skills have 20% chance to Poison on Hit", statOrder = { 7099 }, level = 1, group = "LightningSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 949718413, }, - ["GainManaAsExtraEnergyShieldUnique__1"] = { affix = "", "Gain (10-15)% of maximum Mana as Extra maximum Energy Shield", statOrder = { 1840 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 3027830452, }, - ["GrantsTouchOfGodUnique__1"] = { affix = "", "Grants Level 20 Doryani's Touch Skill", statOrder = { 481 }, level = 1, group = "GrantsTouchOfGod", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2498303876, }, - ["GrantsSummonBeastRhoaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Rhoa Skill", statOrder = { 454 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2878779644, }, - ["GrantsSummonBeastUrsaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Ursa Skill", statOrder = { 454 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2878779644, }, - ["GrantsSummonBeastSnakeUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Snake Skill", statOrder = { 454 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2878779644, }, - ["ChaosResistDoubledUnique__1"] = { affix = "", "Chaos Resistance is doubled", statOrder = { 5209 }, level = 1, group = "ChaosResistDoubled", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 1573646535, }, - ["PlayerFarShotUnique__1"] = { affix = "", "Far Shot", statOrder = { 10077 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2483362276, }, - ["MinionSkillManaCostUnique__1_"] = { affix = "", "(10-15)% reduced Mana Cost of Minion Skills", statOrder = { 8530 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHash = 2969128501, }, - ["MinionSkillManaCostUnique__2"] = { affix = "", "(20-30)% reduced Mana Cost of Minion Skills", statOrder = { 8530 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHash = 2969128501, }, - ["TriggeredAbyssalCryUnique__1"] = { affix = "", "Trigger Level 1 Intimidating Cry on Hit", statOrder = { 599 }, level = 1, group = "TriggeredAbyssalCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 372705099, }, - ["TriggeredLightningWarpUnique__1__"] = { affix = "", "Trigger Level 15 Lightning Warp on Hit with this Weapon", statOrder = { 530 }, level = 1, group = "TriggeredLightningWarp", weightKey = { }, weightVal = { }, modTags = { "skill", "caster" }, tradeHash = 2939874331, }, - ["SummonSkeletonsNumberOfSkeletonsToSummonUnique__1"] = { affix = "", "Summon 4 additional Skeletons with Summon Skeletons", statOrder = { 3559 }, level = 1, group = "SummonSkeletonsNumberOfSkeletonsToSummon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 1589090910, }, - ["SummonSkeletonsCooldownTimeUnique__1"] = { affix = "", "+1 second to Summon Skeleton Cooldown", statOrder = { 9565 }, level = 1, group = "SummonSkeletonsCooldownTime", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 3013430129, }, - ["EnergyShieldRechargeStartsWhenStunnedUnique__1"] = { affix = "", "Energy Shield Recharge starts when you are Stunned", statOrder = { 6022 }, level = 1, group = "EnergyShieldRechargeStartsWhenStunned", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 788946728, }, - ["TrapCooldownRecoveryUnique__1"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 3044 }, level = 1, group = "TrapCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3417757416, }, - ["ReducedExtraDamageFromCritsWithNoPowerChargesUnique__1"] = { affix = "", "You take 50% reduced Extra Damage from Critical Hits while you have no Power Charges", statOrder = { 6117 }, level = 1, group = "ReducedExtraDamageFromCritsWithNoPowerCharges", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 3544527742, }, - ["PhysAddedAsChaosWithMaxPowerChargesUnique__1"] = { affix = "", "Gain (8-12)% of Physical Damage as Extra Chaos Damage while at maximum Power Charges", statOrder = { 3054 }, level = 1, group = "PhysAddedAsChaosWithMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 3655758456, }, - ["ScorchingRaySkillUnique__1"] = { affix = "", "Grants Level 25 Scorching Ray Skill", statOrder = { 474 }, level = 1, group = "ScorchingRaySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1540840, }, - ["BlightSkillUnique__1"] = { affix = "", "Grants Level 22 Blight Skill", statOrder = { 478 }, level = 1, group = "BlightSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1198418726, }, - ["HarbingerSkillOnEquipUnique__1"] = { affix = "", "Grants Summon Harbinger of the Arcane Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, - ["HarbingerSkillOnEquipUnique__2"] = { affix = "", "Grants Summon Harbinger of Time Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, - ["HarbingerSkillOnEquipUnique__3"] = { affix = "", "Grants Summon Harbinger of Focus Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, - ["HarbingerSkillOnEquipUnique__4_"] = { affix = "", "Grants Summon Harbinger of Directions Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, - ["HarbingerSkillOnEquipUnique__5"] = { affix = "", "Grants Summon Harbinger of Storms Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, - ["HarbingerSkillOnEquipUnique__6"] = { affix = "", "Grants Summon Harbinger of Brutality Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, - ["HarbingerSkillOnEquipUnique2_1"] = { affix = "", "Grants Summon Greater Harbinger of the Arcane Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, - ["HarbingerSkillOnEquipUnique2_2"] = { affix = "", "Grants Summon Greater Harbinger of Time Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, - ["HarbingerSkillOnEquipUnique2__3"] = { affix = "", "Grants Summon Greater Harbinger of Focus Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, - ["HarbingerSkillOnEquipUnique2_4"] = { affix = "", "Grants Summon Greater Harbinger of Directions Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, - ["HarbingerSkillOnEquipUnique2_5"] = { affix = "", "Grants Summon Greater Harbinger of Storms Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, - ["HarbingerSkillOnEquipUnique2_6"] = { affix = "", "Grants Summon Greater Harbinger of Brutality Skill", statOrder = { 457 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3872739249, }, - ["ChannelledSkillDamageUnique__1"] = { affix = "", "Channelling Skills deal (50-70)% increased Damage", statOrder = { 5198 }, level = 1, group = "ChannelledSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2733285506, }, - ["VolkuurLessPoisonDurationUnique__1"] = { affix = "", "50% less Poison Duration", statOrder = { 2787 }, level = 1, group = "VolkuurLessPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 1237693206, }, - ["ProjectileAttackCriticalStrikeChanceUnique__1"] = { affix = "", "Projectile Attack Skills have (40-60)% increased Critical Hit Chance", statOrder = { 3884 }, level = 1, group = "ProjectileAttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHash = 4095169720, }, - ["SupportedByLesserPoisonUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 373 }, level = 1, group = "SupportedByLesserPoison", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 228165595, }, - ["SupportedByVileToxinsUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Vile Toxins", statOrder = { 372 }, level = 1, group = "SupportedByVileToxins", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1002855537, }, - ["SupportedByInnervateUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Innervate", statOrder = { 371 }, level = 1, group = "SupportedByInnervate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1106668565, }, - ["SupportedByInnervateUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Innervate", statOrder = { 371 }, level = 1, group = "SupportedByInnervate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1106668565, }, - ["SupportedByIceBiteUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Ice Bite", statOrder = { 365 }, level = 1, group = "SupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1384629003, }, - ["GrantsVoidGazeUnique__1"] = { affix = "", "Trigger Level 10 Void Gaze when you use a Skill", statOrder = { 529 }, level = 1, group = "GrantsVoidGaze", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1869144397, }, - ["AddedChaosDamageVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "Attacks with this Weapon deal 80 to 120 added Chaos Damage against", "Enemies affected by at least 5 Poisons", statOrder = { 8408, 8408.1 }, level = 1, group = "AddedChaosDamageVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 3829706447, }, - ["PoisonDurationPerPowerChargeUnique__1"] = { affix = "", "3% increased Poison Duration per Power Charge", statOrder = { 8921 }, level = 1, group = "PoisonDurationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 3491499175, }, - ["GainFrenzyChargeOnKillVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons", statOrder = { 6367 }, level = 1, group = "GainFrenzyChargeOnKillVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 496822696, }, - ["GainPowerChargeOnKillVsEnemiesWithLessThan5PoisonsUnique__1"] = { affix = "", "(12-15)% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons", statOrder = { 6406 }, level = 1, group = "GainPowerChargeOnKillVsEnemiesWithLessThan5Poisons", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 352612932, }, - ["PoisonDurationWithOver150IntelligenceUnique__1"] = { affix = "", "(15-25)% increased Poison Duration if you have at least 150 Intelligence", statOrder = { 8922 }, level = 1, group = "PoisonDurationWithOver150Intelligence", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2771181375, }, - ["YouCannotBeHinderedUnique__1"] = { affix = "", "You cannot be Hindered", statOrder = { 9946 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHash = 721014846, }, - ["YouCannotBeHinderedUnique__2"] = { affix = "", "You cannot be Hindered", statOrder = { 9946 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, tradeHash = 721014846, }, - ["LocalMaimOnHitChanceUnique__1"] = { affix = "", "(15-20)% chance to Maim on Hit", statOrder = { 7320 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2763429652, }, - ["BlightSecondarySkillEffectDurationUnique__1"] = { affix = "", "Blight has (20-30)% increased Hinder Duration", statOrder = { 4733 }, level = 1, group = "BlightSecondarySkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 4170725899, }, - ["GlobalCooldownRecoveryUnique__1"] = { affix = "", "(15-20)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1004011302, }, - ["GlobalCooldownRecoveryUnique__2"] = { affix = "", "(15-30)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1004011302, }, - ["DebuffTimePassedUnique__1"] = { affix = "", "Debuffs on you expire (15-20)% faster", statOrder = { 5703 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1238227257, }, - ["DebuffTimePassedUnique__2"] = { affix = "", "Debuffs on you expire (80-100)% faster", statOrder = { 5703 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1238227257, }, - ["DebuffTimePassedUnique__3"] = { affix = "", "Debuffs on you expire 100% faster", statOrder = { 5703 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1238227257, }, - ["LifeAndEnergyShieldRecoveryRateUnique_1"] = { affix = "", "(10-15)% increased Energy Shield Recovery rate", "(10-15)% increased Life Recovery rate", statOrder = { 1370, 1376 }, level = 1, group = "LifeAndEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHash = 3982333460, }, - ["LocalGrantsStormCascadeOnAttackUnique__1"] = { affix = "", "Trigger Level 20 Storm Cascade when you Attack", statOrder = { 531 }, level = 1, group = "LocalDisplayGrantsStormCascadeOnAttack", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 818329660, }, - ["ProjectileAttacksChanceToBleedBeastialMinionUnique__1_"] = { affix = "", "Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while", "you have a Bestial Minion", statOrder = { 3885, 3885.1 }, level = 1, group = "ProjectileAttacksChanceToBleedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 4058504226, }, - ["ProjectileAttacksChanceToPoisonBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks have 20% chance to Poison on Hit while", "you have a Bestial Minion", statOrder = { 3887, 3887.1 }, level = 1, group = "ProjectileAttacksChanceToPoisonBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 1114411822, }, - ["ProjectileAttacksChanceToMaimBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks have 20% chance to Maim on Hit while", "you have a Bestial Minion", statOrder = { 3886, 3886.1 }, level = 1, group = "ProjectileAttacksChanceToMaimBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1753916791, }, - ["AddedPhysicalDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (11-16) to (21-25) Physical Damage to Attacks while you have a Bestial Minion", statOrder = { 3888 }, level = 1, group = "AddedPhysicalDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 242822230, }, - ["AddedChaosDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (13-19) to (23-29) Chaos Damage to Attacks while you have a Bestial Minion", statOrder = { 3889 }, level = 1, group = "AddedChaosDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHash = 2152491486, }, - ["AttackAndMovementSpeedBeastialMinionUnique__1"] = { affix = "", "(10-15)% increased Attack and Movement Speed while you have a Bestial Minion", statOrder = { 3890 }, level = 1, group = "AttackAndMovementSpeedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 3597737983, }, - ["GrantsDarktongueKissUnique__1"] = { affix = "", "Trigger Level 20 Darktongue's Kiss when you Cast a Curse Spell", statOrder = { 528 }, level = 1, group = "GrantsDarktongueKiss", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3670477918, }, - ["ShockEffectUnique__1"] = { affix = "", "(15-25)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2527686725, }, - ["ShockEffectUnique__2"] = { affix = "", "(1-50)% increased Effect of Lightning Ailments", statOrder = { 7069 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3081816887, }, - ["ShockEffectUnique__3"] = { affix = "", "30% increased Effect of Lightning Ailments", statOrder = { 7069 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3081816887, }, - ["LightningAilmentEffectUnique__1"] = { affix = "", "100% increased Effect of Lightning Ailments", statOrder = { 7069 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3081816887, }, - ["LocalCanSocketIgnoringColourUnique__1"] = { affix = "", "Gems can be Socketed in this Item ignoring Socket Colour", statOrder = { 68 }, level = 1, group = "LocalCanSocketIgnoringColour", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 899329924, }, - ["LocalNoAttributeRequirementsUnique__1"] = { affix = "", "Has no Attribute Requirements", statOrder = { 815 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2739148464, }, - ["LocalNoAttributeRequirementsUnique__2"] = { affix = "", "Has no Attribute Requirements", statOrder = { 815 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2739148464, }, - ["UniqueLocalNoAttributeRequirements1"] = { affix = "", "Has no Attribute Requirements", statOrder = { 815 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2739148464, }, - ["UniqueLocalNoAttributeRequirements2"] = { affix = "", "Has no Attribute Requirements", statOrder = { 815 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2739148464, }, - ["SocketedGemsInRedSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Red Sockets have +2 to Level", statOrder = { 117 }, level = 1, group = "SocketedGemsInRedSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 2886998024, }, - ["SocketedGemsInGreenSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Green Sockets have +30% to Quality", statOrder = { 118 }, level = 1, group = "SocketedGemsInGreenSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 3799930101, }, - ["SocketedGemsInBlueSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Blue Sockets gain 100% increased Experience", statOrder = { 119 }, level = 1, group = "SocketedGemsInBlueSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHash = 2236460050, }, - ["GainThaumaturgyBuffRotationUnique__1_"] = { affix = "", "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence", statOrder = { 9641 }, level = 1, group = "GainThaumaturgyBuffRotation", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2918150296, }, - ["FireBeamLengthUnique__1"] = { affix = "", "10% increased Scorching Ray beam length", statOrder = { 6136 }, level = 1, group = "FireBeamLength", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 702909553, }, - ["GrantsPurityOfFireUnique__1"] = { affix = "", "Grants Level 25 Purity of Fire Skill", statOrder = { 447 }, level = 1, group = "PurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3970432307, }, - ["GrantsPurityOfIceUnique__1"] = { affix = "", "Grants Level 25 Purity of Ice Skill", statOrder = { 453 }, level = 1, group = "PurityOfColdSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 4193390599, }, - ["GrantsPurityOfLightningUnique__1"] = { affix = "", "Grants Level 25 Purity of Lightning Skill", statOrder = { 455 }, level = 1, group = "PurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3822878124, }, - ["GrantsVaalPurityOfFireUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Fire Skill", statOrder = { 522 }, level = 1, group = "VaalPurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2700934265, }, - ["GrantsVaalPurityOfIceUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Ice Skill", statOrder = { 523 }, level = 1, group = "VaalPurityOfIceSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1300125165, }, - ["GrantsVaalPurityOfLightningUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Lightning Skill", statOrder = { 524 }, level = 1, group = "VaalPurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2959369472, }, - ["SpectreLifeUnique__1___"] = { affix = "", "+1000 to Spectre maximum Life", statOrder = { 9379 }, level = 1, group = "SpectreLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 3111456397, }, - ["SpectreIncreasedLifeUnique__1"] = { affix = "", "Spectres have (50-100)% increased maximum Life", statOrder = { 1455 }, level = 1, group = "SpectreIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, tradeHash = 3035514623, }, - ["PowerChargeOnManaSpentUnique__1"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7199 }, level = 1, group = "PowerChargeOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3269060224, }, - ["IncreasedCastSpeedPerPowerChargeUnique__1"] = { affix = "", "2% increased Cast Speed per Power Charge", statOrder = { 1285 }, level = 1, group = "IncreasedCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 1604393896, }, - ["ManaRegeneratedPerSecondPerPowerChargeUnique__1"] = { affix = "", "Regenerate 2 Mana per Second per Power Charge", statOrder = { 7518 }, level = 1, group = "ManaRegeneratedPerSecondPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 4084763463, }, - ["GainARandomChargePerSecondWhileStationaryUnique__1"] = { affix = "", "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary", statOrder = { 6413 }, level = 1, group = "GainARandomChargePerSecondWhileStationary", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 1438403666, }, - ["LoseAllChargesOnMoveUnique__1"] = { affix = "", "Lose all Frenzy, Endurance, and Power Charges when you Move", statOrder = { 7445 }, level = 1, group = "LoseAllChargesOnMove", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHash = 31415336, }, - ["PassiveEffectivenessJewelUnique__1_"] = { affix = "", "50% increased Effect of non-Keystone Passive Skills in Radius", "Notable Passive Skills in Radius grant nothing", statOrder = { 7421, 7422 }, level = 1, group = "PassiveEffectivenessJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2151971591, }, - ["DegradingMovementSpeedDuringFlaskEffectUnique__1"] = { affix = "", "50% increased Attack, Cast and Movement Speed during Effect", "Reduce Attack, Cast and Movement Speed 10% every second during Effect", statOrder = { 795, 796 }, level = 1, group = "DegradingMovementSpeedDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "attack", "caster", "speed" }, tradeHash = 2001651052, }, - ["TriggeredFireAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Fire Aegis when Equipped", statOrder = { 549 }, level = 1, group = "TriggeredFireAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1128763150, }, - ["TriggeredColdAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Cold Aegis when Equipped", statOrder = { 547 }, level = 1, group = "TriggeredColdAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3918947537, }, - ["TriggeredLightningAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Lightning Aegis when Equipped", statOrder = { 550 }, level = 1, group = "TriggeredLightningAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 850729424, }, - ["TriggeredElementalAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Elemental Aegis when Equipped", statOrder = { 548 }, level = 1, group = "TriggeredElementalAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2602585351, }, - ["TriggeredPhysicalAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Physical Aegis when Equipped", statOrder = { 552 }, level = 1, group = "TriggeredPhysicalAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1892084828, }, - ["SupportedByBlasphemyUnique"] = { affix = "", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 370 }, level = 1, group = "SupportedByBlasphemyUnique", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, tradeHash = 539747809, }, - ["GrantCursePillarSkillUnique"] = { affix = "", "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", "20% less Effect of Curses from Socketed Hex Skills", statOrder = { 491, 491.1, 491.2, 491.3 }, level = 1, group = "GrantCursePillarSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1757548756, }, - ["GrantCursePillarSkillUnique__"] = { affix = "", "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", statOrder = { 492, 492.1, 492.2 }, level = 1, group = "GrantCursePillarSkillUnique__", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1517357911, }, - ["ReflectPoisonsToSelfUnique__1"] = { affix = "", "Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you", statOrder = { 8930 }, level = 1, group = "ReflectPoisonsToSelf", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2374357674, }, - ["ReflectBleedingToSelfUnique__1"] = { affix = "", "Bleeding you inflict is Reflected to you", statOrder = { 4673 }, level = 1, group = "ReflectBleedingToSelf", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 2658399404, }, - ["ChaosResistancePerPoisonOnSelfUnique__1"] = { affix = "", "+1% to Chaos Resistance per Poison on you", statOrder = { 5210 }, level = 1, group = "ChaosResistancePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 175362265, }, - ["DamagePerPoisonOnSelfUnique__1_"] = { affix = "", "15% increased Damage for each Poison on you up to a maximum of 75%", statOrder = { 5612 }, level = 1, group = "DamagePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1034580601, }, - ["MovementSpeedPerPoisonOnSelfUnique__1_"] = { affix = "", "10% increased Movement Speed for each Poison on you up to a maximum of 50%", statOrder = { 8605 }, level = 1, group = "MovementSpeedPerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1360723495, }, - ["TravelSkillsReflectPoisonUnique__1"] = { affix = "", "Poison you inflict with Travel Skills is Reflected to you if you", "have fewer than 5 Poisons on you", statOrder = { 9704, 9704.1 }, level = 57, group = "TravelSkillsReflectPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 130616495, }, - ["IncreasedArmourWhileBleedingUnique__1"] = { affix = "", "(30-40)% increased Armour while Bleeding", statOrder = { 4305 }, level = 1, group = "IncreasedArmourWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 2466912132, }, - ["CannotBeIgnitedWithStrHigherThanDexUnique__1"] = { affix = "", "Cannot be Ignited if Strength is higher than Dexterity", statOrder = { 4905 }, level = 1, group = "CannotBeIgnitedWithStrHigherThanDex", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHash = 676883595, }, - ["CannotBeFrozenWithDexHigherThanIntUnique__1"] = { affix = "", "Cannot be Frozen if Dexterity is higher than Intelligence", statOrder = { 4900 }, level = 1, group = "CannotBeFrozenWithDexHigherThanInt", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3881126302, }, - ["CannotBeShockedWithIntHigherThanStrUnique__1"] = { affix = "", "Cannot be Shocked if Intelligence is higher than Strength", statOrder = { 4918 }, level = 1, group = "CannotBeShockedWithIntHigherThanStr", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3024242403, }, - ["IncreasedDamagePerLowestAttributeUnique__1"] = { affix = "", "1% increased Damage per 5 of your lowest Attribute", statOrder = { 5607 }, level = 85, group = "IncreasedDamagePerLowestAttribute", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 35476451, }, - ["IncreasedAilmentDurationUnique__1"] = { affix = "", "40% increased Duration of Ailments on Enemies", statOrder = { 1543 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 2419712247, }, - ["IncreasedAilmentDurationUnique__2"] = { affix = "", "30% reduced Duration of Ailments on Enemies", statOrder = { 1543 }, level = 88, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 2419712247, }, - ["IncreasedAilmentDurationUnique__3_"] = { affix = "", "(10-20)% increased Duration of Ailments on Enemies", statOrder = { 1543 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 2419712247, }, - ["CreateSmokeCloudWhenTrapTriggeredUnique__1"] = { affix = "", "Trigger Level 20 Fog of War when your Trap is triggered", statOrder = { 589 }, level = 1, group = "CreateSmokeCloudWhenTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 208447205, }, - ["FlammabilityReservationCostUnique__1"] = { affix = "", "Flammability has no Reservation if Cast as an Aura", statOrder = { 6211 }, level = 1, group = "FlammabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1195140808, }, - ["FrostbiteReservationCostUnique__1"] = { affix = "", "Frostbite has no Reservation if Cast as an Aura", statOrder = { 6264 }, level = 1, group = "FrostbiteNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3062707366, }, - ["ConductivityReservationCostUnique__1"] = { affix = "", "Conductivity has no Reservation if Cast as an Aura", statOrder = { 5350 }, level = 1, group = "ConductivityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 1233358566, }, - ["VulnerabilityReservationCostUnique__1_"] = { affix = "", "Vulnerability has no Reservation if Cast as an Aura", statOrder = { 9872 }, level = 1, group = "VulnerabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 531868030, }, - ["DespairReservationCostUnique__1"] = { affix = "", "Despair has no Reservation if Cast as an Aura", statOrder = { 5735 }, level = 1, group = "DespairNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 450601566, }, - ["TemporalChainsReservationCostUnique__1"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 9638 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2100165275, }, - ["TemporalChainsReservationCostUnique__2"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 9638 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2100165275, }, - ["PunishmentReservationCostUnique__1"] = { affix = "", "Punishment has no Reservation if Cast as an Aura", statOrder = { 9001 }, level = 1, group = "PunishmentNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 2097195894, }, - ["EnfeebleReservationCostUnique__1"] = { affix = "", "Enfeeble has no Reservation if Cast as an Aura", statOrder = { 6038 }, level = 1, group = "EnfeebleNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 56919069, }, - ["ElementalWeaknessReservationCostUnique__1"] = { affix = "", "Elemental Weakness has no Reservation if Cast as an Aura", statOrder = { 5903 }, level = 1, group = "ElementalWeaknessNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3416664215, }, - ["IncreasedColdDamageWhileOffhandIsEmpty_"] = { affix = "", "(100-200)% increased Cold Damage while your Off Hand is empty", statOrder = { 5305 }, level = 1, group = "IncreasedColdDamageWhileOffhandIsEmpty", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3520048646, }, - ["DisplayIronReflexesFor8SecondsUnique__1"] = { affix = "", "Every 16 seconds you gain Iron Reflexes for 8 seconds", statOrder = { 10089 }, level = 1, group = "DisplayIronReflexesFor8Seconds", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2200114771, }, - ["ArborixMoreDamageAtCloseRangeUnique__1"] = { affix = "", "30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes", statOrder = { 10094 }, level = 1, group = "ArborixMoreDamageAtCloseRange", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 304032021, }, - ["FarShotWhileYouDoNotHaveIronReflexesUnique__1_"] = { affix = "", "You have Far Shot while you do not have Iron Reflexes", statOrder = { 10098 }, level = 1, group = "FarShotWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3284029342, }, - ["AttackCastMovementSpeedWhileYouDoNotHaveIronReflexesUnique__1"] = { affix = "", "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes", statOrder = { 10097 }, level = 1, group = "AttackCastMovementSpeedWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 3476327198, }, - ["ElementalDamageCanShockUnique__1__"] = { affix = "", "All Elemental Damage from Hits Contributes to Shock Chance", statOrder = { 2524 }, level = 1, group = "ElementalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2933625540, }, - ["EnemiesTakeIncreasedDamagePerAilmentTypeUnique__1"] = { affix = "", "Enemies take 5% increased Damage for each Elemental Ailment type among", "your Ailments on them", statOrder = { 5846, 5846.1 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1509533589, }, - ["DeathWalk"] = { affix = "", "Triggers Level 20 Death Walk when Equipped", statOrder = { 565 }, level = 1, group = "DeathWalk", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 651875072, }, - ["IntimidateOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 7158 }, level = 1, group = "IntimidateOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 642457541, }, - ["FortifyOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify", statOrder = { 7240 }, level = 1, group = "FortifyOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 186482813, }, - ["RageOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit, no more than once every second", statOrder = { 7238 }, level = 1, group = "RageOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3892691596, }, - ["MaimOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks", statOrder = { 7159 }, level = 1, group = "MaimOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2750004091, }, - ["BlindOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks", statOrder = { 7167 }, level = 1, group = "BlindOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2044840211, }, - ["OnslaughtOnKillWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill", statOrder = { 7156 }, level = 1, group = "OnslaughtOnKillWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 2863332749, }, - ["DealNoNonElementalDamageUnique__1"] = { affix = "", "Deal no Non-Elemental Damage", statOrder = { 5695 }, level = 1, group = "DealNoNonElementalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHash = 4031851097, }, - ["DisplaySupportedByElementalPenetrationUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 25 Elemental Penetration", statOrder = { 196 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1994143317, }, - ["DisplaySupportedByElementalPenetrationUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 1 Elemental Penetration", statOrder = { 196 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 1994143317, }, - ["GainSpiritChargeOnKillChanceUnique__1"] = { affix = "", "Gain a Spirit Charge on Kill", statOrder = { 3941 }, level = 1, group = "GainSpiritChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 570644802, }, - ["GainLifeWhenSpiritChargeExpiresOrConsumedUnique__2"] = { affix = "", "Recover (2-3)% of maximum Life when you lose a Spirit Charge", statOrder = { 3943 }, level = 1, group = "GainLifeWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 305634887, }, - ["GainESWhenSpiritChargeExpiresOrConsumedUnique__1"] = { affix = "", "Recover (2-3)% of maximum Energy Shield when you lose a Spirit Charge", statOrder = { 3944 }, level = 1, group = "GainESWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1996775727, }, - ["PhysAddedAsEachElementPerSpiritChargeUnique__1"] = { affix = "", "Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge", statOrder = { 8725 }, level = 1, group = "PhysAddedAsEachElementPerSpiritCharge", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, tradeHash = 3137640399, }, - ["LocalDisplayGrantLevelXSpiritBurstUnique__1"] = { affix = "", "Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge", statOrder = { 590 }, level = 1, group = "LocalDisplayGrantLevelXSpiritBurst", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1992516007, }, - ["GainSpiritChargeEverySecondUnique__1"] = { affix = "", "Gain a Spirit Charge every second", statOrder = { 3940 }, level = 1, group = "GainSpiritChargeEverySecond", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 328131617, }, - ["LoseSpiritChargesOnSavageHitUnique__1_"] = { affix = "", "You lose all Spirit Charges when taking a Savage Hit", statOrder = { 3942 }, level = 1, group = "LoseSpiritChargesOnSavageHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2663792764, }, - ["MaximumSpiritChargesPerAbyssJewelEquippedUnique__1"] = { affix = "", "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", statOrder = { 3938 }, level = 1, group = "MaximumSpiritChargesPerAbyssJewelEquipped", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4053097676, }, - ["MaximumSpiritChargesPerAbyssJewelEquippedUnique__2"] = { affix = "", "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", statOrder = { 3938 }, level = 1, group = "MaximumSpiritChargesPerAbyssJewelEquipped", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4053097676, }, - ["GainDebilitatingPresenceUnique__1"] = { affix = "", "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy", statOrder = { 9990 }, level = 1, group = "GainDebilitatingPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3442107889, }, - ["LocalDisplayGrantLevelXShadeFormUnique__1"] = { affix = "", "20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill", statOrder = { 570 }, level = 1, group = "LocalDisplayGrantLevelXShadeForm", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3308936917, }, - ["TriggerShadeFormWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Shade Form when Hit", statOrder = { 571 }, level = 1, group = "TriggerShadeFormWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2603798371, }, - ["AddedPhysicalDamagePerEnduranceChargeUnique__1"] = { affix = "", "Adds 5 to 8 Physical Damage per Endurance Charge", statOrder = { 8426 }, level = 1, group = "AddedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 173438493, }, - ["ChaosResistancePerEnduranceChargeUnique__1_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5208 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 4210011075, }, - ["ReducedElementalDamageTakenHitsPerEnduranceChargeUnique__1"] = { affix = "", "1% reduced Elemental Damage taken from Hits per Endurance Charge", statOrder = { 5873 }, level = 1, group = "ReducedElementalDamageTakenHitsPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 1686913105, }, - ["ArmourPerEnduranceChargeUnique__1"] = { affix = "", "+500 to Armour per Endurance Charge", statOrder = { 8877 }, level = 1, group = "ArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 513221334, }, - ["AddedColdDamagePerFrenzyChargeUnique__1"] = { affix = "", "12 to 14 Added Cold Damage per Frenzy Charge", statOrder = { 3819 }, level = 1, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3648858570, }, - ["AvoidElementalDamagePerFrenzyChargeUnique__1"] = { affix = "", "2% chance to Avoid Elemental Damage from Hits per Frenzy Charge", statOrder = { 2970 }, level = 1, group = "AvoidElementalDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHash = 1649883131, }, - ["MovementVelocityPerFrenzyChargeUnique__1"] = { affix = "", "4% increased Movement Speed per Frenzy Charge", statOrder = { 1484 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, }, - ["MovementVelocityPerFrenzyChargeUnique__2"] = { affix = "", "6% increased Movement Speed per Frenzy Charge", statOrder = { 1484 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, }, - ["AddedLightningDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 3 to 9 Lightning Damage to Spells per Power Charge", statOrder = { 8423 }, level = 1, group = "AddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, tradeHash = 4085417083, }, - ["AdditionalCriticalStrikeChancePerPowerChargeUnique__1"] = { affix = "", "+0.3% Critical Hit Chance per Power Charge", statOrder = { 4071 }, level = 1, group = "AdditionalCriticalStrikeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1818900806, }, - ["CriticalMultiplierPerPowerChargeUnique__1"] = { affix = "", "(6-10)% increased Critical Damage Bonus per Power Charge", statOrder = { 2885 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 4164870816, }, - ["RaiseSpectreManaCostUnique__1_"] = { affix = "", "(40-50)% reduced Mana Cost of Raise Spectre", statOrder = { 9056 }, level = 1, group = "RaiseSpectreManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHash = 262301496, }, - ["VoidShotOnSkillUseUnique__1_"] = { affix = "", "Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows with a Non-Triggered Skill", statOrder = { 593 }, level = 1, group = "VoidShotOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3262369040, }, - ["MaximumVoidArrowsUnique__1"] = { affix = "", "5 Maximum Void Charges", "Gain a Void Charge every 0.5 seconds", statOrder = { 3913, 6491 }, level = 1, group = "MaximumVoidArrows", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3320313293, }, - ["CannotBeStunnedByAttacksElderItemUnique__1"] = { affix = "", "Cannot be Stunned by Attacks if your other Ring is an Elder Item", statOrder = { 3894 }, level = 1, group = "CannotBeStunnedByAttacksElderItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2926399803, }, - ["AttackDamageShaperItemUnique__1"] = { affix = "", "(60-80)% increased Attack Damage if your other Ring is a Shaper Item", statOrder = { 3891 }, level = 1, group = "AttackDamageShaperItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHash = 1555962658, }, - ["SpellDamageElderItemUnique__1_"] = { affix = "", "(60-80)% increased Spell Damage if your other Ring is an Elder Item", statOrder = { 3892 }, level = 1, group = "SpellDamageElderItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2921373173, }, - ["CannotBeStunnedBySpellsShaperItemUnique__1"] = { affix = "", "Cannot be Stunned by Spells if your other Ring is a Shaper Item", statOrder = { 3893 }, level = 1, group = "CannotBeStunnedBySpellsShaperItem", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2312817839, }, - ["RecoverLifeInstantlyOnManaFlaskUnique__1"] = { affix = "", "Recover (8-10)% of maximum Life when you use a Mana Flask", statOrder = { 3900 }, level = 1, group = "RecoverLifeInstantlyOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 1926816773, }, - ["NonInstantManaRecoveryAlsoAffectsLifeUnique__1"] = { affix = "", "Non-instant Recovery from Mana Flasks also applies to Life", statOrder = { 3901 }, level = 1, group = "NonInstantManaRecoveryAlsoAffectsLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 2262007777, }, - ["SpellDamagePer200ManaSpentRecentlyUnique__1__"] = { affix = "", "(20-25)% increased Spell damage for each 200 total Mana you have Spent Recently", statOrder = { 3903 }, level = 1, group = "SpellDamagePerManaSpent", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 347220474, }, - ["ManaCostPer200ManaSpentRecentlyUnique__1"] = { affix = "", "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently", statOrder = { 3902 }, level = 1, group = "ManaCostPerManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2650053239, }, - ["SpellAddedPhysicalDamageUnique__1_"] = { affix = "", "Battlemage", statOrder = { 10032 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 448903047, }, - ["SpellAddedPhysicalDamageUnique__2_"] = { affix = "", "Adds (6-8) to (10-12) Physical Damage to Spells", statOrder = { 1240 }, level = 1, group = "SpellAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, tradeHash = 2435536961, }, - ["TentacleSmashOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Tentacle Whip on Kill", statOrder = { 597 }, level = 100, group = "TentacleSmashOnKill", weightKey = { }, weightVal = { }, modTags = { "skill", "green_herring" }, tradeHash = 1350938937, }, - ["GlimpseOfEternityWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Glimpse of Eternity when Hit", statOrder = { 596 }, level = 1, group = "GlimpseOfEternityWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3141831683, }, - ["SummonVoidSphereOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill", statOrder = { 598 }, level = 100, group = "SummonVoidSphereOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2143990571, }, - ["PetrificationStatueUnique__1"] = { affix = "", "Grants Level 20 Petrification Statue Skill", statOrder = { 488 }, level = 1, group = "GrantsPetrificationStatue", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1904419785, }, - ["GrantsCatAspect1"] = { affix = "", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 500 }, level = 1, group = "GrantsCatAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 1265282021, }, - ["GrantsBirdAspect1_"] = { affix = "", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 496 }, level = 1, group = "GrantsBirdAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 3914740665, }, - ["GrantsSpiderAspect1"] = { affix = "", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 519 }, level = 1, group = "GrantsSpiderAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 956546305, }, - ["GrantsIntimidatingCry1"] = { affix = "", "Grants Level 20 Intimidating Cry Skill", statOrder = { 512 }, level = 1, group = "GrantsIntimidatingCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 989878105, }, - ["GrantsCrabAspect1_"] = { affix = "", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 501 }, level = 1, group = "GrantsCrabAspect", weightKey = { }, weightVal = { }, modTags = { "blue_herring", "skill" }, tradeHash = 4102318278, }, - ["ItemQuantityOnLowLifeUnique__1"] = { affix = "", "(10-16)% increased Quantity of Items found when on Low Life", statOrder = { 1388 }, level = 65, group = "ItemQuantityOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 760855772, }, - ["DamagePer15DexterityUnique__1"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 5602 }, level = 72, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2062174346, }, - ["DamagePer15DexterityUnique__2"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 5602 }, level = 1, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2062174346, }, - ["LifeRegeneratedPerMinuteWhileIgnitedUnique__1"] = { affix = "", "Regenerate (75-125) Life per second while Ignited", statOrder = { 7031 }, level = 74, group = "LifeRegeneratedPerMinuteWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 952897668, }, - ["IncreasedElementalDamageIfKilledCursedEnemyRecentlyUnique__1"] = { affix = "", "20% increased Elemental Damage if you've Killed a Cursed Enemy Recently", statOrder = { 5854 }, level = 77, group = "IncreasedElementalDamageIfKilledCursedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 850820277, }, - ["DoubleDamagePer500StrengthUnique__1"] = { affix = "", "6% chance to deal Double Damage per 500 Strength", statOrder = { 5129 }, level = 63, group = "DoubleDamagePer500Strength", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 4104492115, }, - ["BestiaryLeague"] = { affix = "", "Areas contain Beasts to hunt", statOrder = { 8130 }, level = 1, group = "BestiaryLeague", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1158543967, }, - ["RagingSpiritDurationResetOnIgnitedEnemyUnique__1"] = { affix = "", "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy", statOrder = { 9052 }, level = 1, group = "RagingSpiritDurationResetOnIgnitedEnemy", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 2761732967, }, - ["FrenzyChargePer50RampageStacksUnique__1"] = { affix = "", "Gain a Frenzy Charge on every 50th Rampage Kill", statOrder = { 3934 }, level = 1, group = "FrenzyChargePer50RampageStacks", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 637690626, }, - ["AreaOfEffectPer25RampageStacksUnique__1_"] = { affix = "", "2% increased Area of Effect per 25 Rampage Kills", statOrder = { 3933 }, level = 1, group = "AreaOfEffectPer25RampageStacks", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4119032338, }, - ["UnaffectedByCursesUnique__1"] = { affix = "", "Unaffected by Curses", statOrder = { 2148 }, level = 85, group = "UnaffectedByCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 3809896400, }, - ["ChanceToChillAttackersOnBlockUnique__1"] = { affix = "", "(30-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5265 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHash = 864879045, }, - ["ChanceToChillAttackersOnBlockUnique__2__"] = { affix = "", "Chill Attackers for 4 seconds on Block", statOrder = { 5265 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, tradeHash = 864879045, }, - ["ChanceToShockAttackersOnBlockUnique__1_"] = { affix = "", "(30-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 9245 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHash = 575111651, }, - ["ChanceToShockAttackersOnBlockUnique__2"] = { affix = "", "Shock Attackers for 4 seconds on Block", statOrder = { 9245 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, tradeHash = 575111651, }, - ["SupportedByTrapAndMineDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", statOrder = { 322 }, level = 1, group = "SupportedByTrapAndMineDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3814066599, }, - ["SupportedByClusterTrapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Cluster Trap", statOrder = { 320 }, level = 1, group = "SupportedByClusterTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 2854183975, }, - ["AviansMightColdDamageUnique__1"] = { affix = "", "Adds (20-25) to (37-40) Cold Damage while you have Avian's Might", statOrder = { 8413 }, level = 1, group = "AviansMightColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3485231932, }, - ["AviansMightLightningDamageUnique__1_"] = { affix = "", "Adds (1-3) to (55-62) Lightning Damage while you have Avian's Might", statOrder = { 8424 }, level = 1, group = "AviansMightLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 855634301, }, - ["AviansMightDurationUnique__1"] = { affix = "", "+(-2-2) seconds to Avian's Might Duration", statOrder = { 4465 }, level = 1, group = "AviansMightDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1251945210, }, - ["GrantAviansAspectToAlliesUnique__1"] = { affix = "", "Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies", statOrder = { 4330 }, level = 1, group = "GrantAviansAspectToAllies", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2544408546, }, - ["AvianAspectBuffEffectUnique__1"] = { affix = "", "100% increased Aspect of the Avian Buff Effect", statOrder = { 4329 }, level = 1, group = "AvianAspectBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1746347097, }, - ["AviansFlightLifeRegenerationUnique__1"] = { affix = "", "Regenerate 100 Life per Second while you have Avian's Flight", statOrder = { 7033 }, level = 1, group = "AviansFlightLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2589482056, }, - ["AviansFlightManaRegenerationUnique__1_"] = { affix = "", "Regenerate 12 Mana per Second while you have Avian's Flight", statOrder = { 7526 }, level = 1, group = "AviansFlightManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1495376076, }, - ["AviansFlightDurationUnique__1"] = { affix = "", "+(-2-2) seconds to Avian's Flight Duration", statOrder = { 4464 }, level = 1, group = "AviansFlightDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1251731548, }, - ["GrantsAvianTornadoUnique__1__"] = { affix = "", "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight", statOrder = { 572 }, level = 1, group = "GrantsAvianTornado", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2554328719, }, - ["ElementalDamageUniqueJewel_1"] = { affix = "", "(10-15)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, - ["ElementalHitDisableFireUniqueJewel_1"] = { affix = "", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire", statOrder = { 7391, 7394 }, level = 1, group = "ElementalHitDisableFireJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHash = 2542902299, }, - ["ElementalHitDisableColdUniqueJewel_1"] = { affix = "", "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage", "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold", statOrder = { 7390, 7393 }, level = 1, group = "ElementalHitDisableColdJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHash = 2676447058, }, - ["ElementalHitDisableLightningUniqueJewel_1"] = { affix = "", "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage", "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning", statOrder = { 7392, 7395 }, level = 1, group = "ElementalHitDisableLightningJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHash = 1007157231, }, - ["ChargeBonusEnduranceChargeDuration"] = { affix = "", "(20-40)% increased Endurance Charge Duration", statOrder = { 1789 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1170174456, }, - ["ChargeBonusFrenzyChargeDuration"] = { affix = "", "(20-40)% increased Frenzy Charge Duration", statOrder = { 1791 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 3338298622, }, - ["ChargeBonusPowerChargeDuration"] = { affix = "", "(20-40)% increased Power Charge Duration", statOrder = { 1806 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 3872306017, }, - ["ChargeBonusEnduranceChargeOnKill"] = { affix = "", "10% chance to gain an Endurance Charge on kill", statOrder = { 2293 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1054322244, }, - ["ChargeBonusFrenzyChargeOnKill"] = { affix = "", "10% chance to gain a Frenzy Charge on kill", statOrder = { 2295 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 1826802197, }, - ["ChargeBonusPowerChargeOnKill"] = { affix = "", "10% chance to gain a Power Charge on kill", statOrder = { 2297 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 2483795307, }, - ["ChargeBonusMovementVelocityPerEnduranceCharge"] = { affix = "", "1% increased Movement Speed per Endurance Charge", statOrder = { 8603 }, level = 1, group = "MovementVelocityPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2116250000, }, - ["ChargeBonusMovementVelocityPerFrenzyCharge"] = { affix = "", "1% increased Movement Speed per Frenzy Charge", statOrder = { 1484 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 1541516339, }, - ["ChargeBonusMovementVelocityPerPowerCharge"] = { affix = "", "1% increased Movement Speed per Power Charge", statOrder = { 8606 }, level = 1, group = "MovementVelocityPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 3774108776, }, - ["ChargeBonusLifeRegenerationPerEnduranceCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Endurance Charge", statOrder = { 1375 }, level = 1, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 989800292, }, - ["ChargeBonusLifeRegenerationPerFrenzyCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Frenzy Charge", statOrder = { 2292 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2828673491, }, - ["ChargeBonusLifeRegenerationPerPowerCharge"] = { affix = "", "Regenerate 0.3% of maximum Life per second per Power Charge", statOrder = { 7053 }, level = 1, group = "LifeRegenerationPercentPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 3961213398, }, - ["ChargeBonusDamagePerEnduranceCharge"] = { affix = "", "5% increased Damage per Endurance Charge", statOrder = { 2812 }, level = 1, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 3515686789, }, - ["ChargeBonusDamagePerFrenzyCharge"] = { affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 2889 }, level = 1, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 902747843, }, - ["ChargeBonusDamagePerPowerCharge"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 5613 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2034658008, }, - ["ChargeBonusAddedFireDamagePerEnduranceCharge"] = { affix = "", "(7-9) to (13-14) Fire Damage per Endurance Charge", statOrder = { 8416 }, level = 1, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 1073447019, }, - ["ChargeBonusAddedColdDamagePerFrenzyCharge"] = { affix = "", "(6-8) to (12-13) Added Cold Damage per Frenzy Charge", statOrder = { 3819 }, level = 1, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3648858570, }, - ["ChargeBonusAddedLightningDamagePerPowerCharge"] = { affix = "", "(1-2) to (18-20) Lightning Damage per Power Charge", statOrder = { 8420 }, level = 1, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 1917107159, }, - ["ChargeBonusBlockChancePerEnduranceCharge"] = { affix = "", "+1% Chance to Block Attack Damage per Endurance Charge", statOrder = { 4054 }, level = 1, group = "BlockChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2355741828, }, - ["ChargeBonusBlockChancePerFrenzyCharge_"] = { affix = "", "+1% Chance to Block Attack Damage per Frenzy Charge", statOrder = { 4055 }, level = 1, group = "BlockChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2148784747, }, - ["ChargeBonusBlockChancePerPowerCharge_"] = { affix = "", "+1% Chance to Block Attack Damage per Power Charge", statOrder = { 4056 }, level = 1, group = "BlockChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 2856326982, }, - ["ChargeBonusFireDamageAddedAsChaos__"] = { affix = "", "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge", statOrder = { 8713 }, level = 1, group = "FireDamageAddedAsChaosPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, tradeHash = 700405539, }, - ["ChargeBonusColdDamageAddedAsChaos"] = { affix = "", "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge", statOrder = { 8712 }, level = 1, group = "ColdDamageAddedAsChaosPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, tradeHash = 2764080642, }, - ["ChargeBonusLightningDamageAddedAsChaos"] = { affix = "", "Gain 1% of Lightning Damage as Chaos Damage per Power Charge", statOrder = { 8715 }, level = 1, group = "LightningDamageAddedAsChaosPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, tradeHash = 2650222338, }, - ["ChargeBonusArmourPerEnduranceCharge"] = { affix = "", "6% increased Armour per Endurance Charge", statOrder = { 8879 }, level = 1, group = "IncreasedArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1447080724, }, - ["ChargeBonusEvasionPerFrenzyCharge"] = { affix = "", "8% increased Evasion Rating per Frenzy Charge", statOrder = { 1365 }, level = 1, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 660404777, }, - ["ChargeBonusEnergyShieldPerPowerCharge"] = { affix = "", "3% increased Energy Shield per Power Charge", statOrder = { 6011 }, level = 1, group = "IncreasedEnergyShieldPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2189382346, }, - ["ChargeBonusChanceToGainMaximumEnduranceCharges"] = { affix = "", "15% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", statOrder = { 3789 }, level = 1, group = "ChanceToGainMaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 2713233613, }, - ["ChargeBonusChanceToGainMaximumFrenzyCharges"] = { affix = "", "15% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", statOrder = { 6379 }, level = 1, group = "ChanceToGainMaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 2119664154, }, - ["ChargeBonusChanceToGainMaximumPowerCharges"] = { affix = "", "15% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6380, 6380.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 1232004574, }, - ["ChargeBonusEnduranceChargeIfHitRecently"] = { affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6350 }, level = 1, group = "EnduranceChargeIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 2894476716, }, - ["ChargeBonusFrenzyChargeOnHit__"] = { affix = "", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1515 }, level = 1, group = "FrenzyChargeOnHitChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 2323242761, }, - ["ChargeBonusPowerChargeOnCrit"] = { affix = "", "20% chance to gain a Power Charge on Critical Hit", statOrder = { 1512 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, tradeHash = 3814876985, }, - ["ChargeBonusAttackAndCastSpeedPerEnduranceCharge"] = { affix = "", "1% increased Attack and Cast Speed per Endurance Charge", statOrder = { 4343 }, level = 1, group = "AttackAndCastSpeedPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 3618888098, }, - ["ChargeBonusAccuracyRatingPerFrenzyCharge"] = { affix = "", "10% increased Accuracy Rating per Frenzy Charge", statOrder = { 1710 }, level = 1, group = "AccuracyRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 3700381193, }, - ["ChargeBonusAttackAndCastSpeedPerPowerCharge"] = { affix = "", "1% increased Attack and Cast Speed per Power Charge", statOrder = { 4344 }, level = 1, group = "AttackAndCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHash = 987588151, }, - ["ChargeBonusCriticalStrikeChancePerEnduranceCharge"] = { affix = "", "6% increased Critical Hit Chance per Endurance Charge", statOrder = { 5459 }, level = 1, group = "CriticalStrikeChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 2547511866, }, - ["ChargeBonusCriticalStrikeChancePerFrenzyCharge"] = { affix = "", "6% increased Critical Hit Chance per Frenzy Charge", statOrder = { 5460 }, level = 1, group = "CriticalStrikeChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 707887043, }, - ["ChargeBonusCriticalStrikeMultiplierPerPowerCharge"] = { affix = "", "3% increased Critical Damage Bonus per Power Charge", statOrder = { 2885 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 4164870816, }, - ["ChargeBonusChaosResistancePerEnduranceCharge_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5208 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 4210011075, }, - ["ChargeBonusPhysicalDamageReductionPerFrenzyCharge__"] = { affix = "", "1% additional Physical Damage Reduction per Frenzy Charge", statOrder = { 8870 }, level = 1, group = "PhysicalDamageReductionPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 1226049915, }, - ["ChargeBonusPhysicalDamageReductionPerPowerCharge_"] = { affix = "", "1% additional Physical Damage Reduction per Power Charge", statOrder = { 8872 }, level = 1, group = "PhysicalDamageReductionPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3986347319, }, - ["ChargeBonusMaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1486 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1515657623, }, - ["ChargeBonusMaximumFrenzyCharges"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, }, - ["ChargeBonusMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, - ["ChargeBonusIntimidateOnHitEnduranceCharges"] = { affix = "", "Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges", statOrder = { 6919 }, level = 1, group = "IntimidateOnHitMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2877370216, }, - ["ChargeBonusOnslaughtOnHitFrenzyCharges_"] = { affix = "", "Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges", statOrder = { 6388 }, level = 1, group = "OnslaughtOnHitMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2408544213, }, - ["ChargeBonusArcaneSurgeOnHitPowerCharges"] = { affix = "", "Gain Arcane Surge on Hit with Spells while at maximum Power Charges", statOrder = { 6322 }, level = 1, group = "ArcaneSurgeOnHitMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 813119588, }, - ["ChargeBonusCannotBeStunnedEnduranceCharges__"] = { affix = "", "You cannot be Stunned while at maximum Endurance Charges", statOrder = { 3609 }, level = 1, group = "CannotBeStunnedMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3780437763, }, - ["ChargeBonusFlaskChargeOnCritFrenzyCharges"] = { affix = "", "Gain a Flask Charge when you deal a Critical Hit while at maximum Frenzy Charges", statOrder = { 6356 }, level = 1, group = "FlaskChargeOnCritMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 3371432622, }, - ["ChargeBonusAdditionalCursePowerCharges"] = { affix = "", "You can apply an additional Curse while at maximum Power Charges", statOrder = { 8745 }, level = 1, group = "AdditionalCurseMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 761598374, }, - ["ChargeBonusIronReflexesFrenzyCharges"] = { affix = "", "You have Iron Reflexes while at maximum Frenzy Charges", statOrder = { 10083 }, level = 1, group = "IronReflexesMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 1990354706, }, - ["ChargeBonusMindOverMatterPowerCharges"] = { affix = "", "You have Mind over Matter while at maximum Power Charges", statOrder = { 10084 }, level = 1, group = "MindOverMatterMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 1876857497, }, - ["CurseCastSpeedUnique__1"] = { affix = "", "Curse Skills have (10-20)% increased Cast Speed", statOrder = { 1869 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "curse" }, tradeHash = 2378065031, }, - ["CurseCastSpeedUnique__2"] = { affix = "", "Curse Skills have (8-12)% increased Cast Speed", statOrder = { 1869 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "curse" }, tradeHash = 2378065031, }, - ["TriggerSocketedCurseSkillsOnCurseUnique__1_"] = { affix = "", "Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown", statOrder = { 595 }, level = 1, group = "TriggerCurseOnCurse", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem", "curse" }, tradeHash = 3657377047, }, - ["ElementalDamagePercentAddedAsChaosPerShaperItemUnique__1"] = { affix = "", "Gain (3-5)% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped", statOrder = { 3898 }, level = 1, group = "ElementalDamagePercentAddedAsChaosPerShaperItem", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, tradeHash = 1860646468, }, - ["HitsIgnoreChaosResistanceAllShaperItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items", statOrder = { 6771 }, level = 1, group = "HitsIgnoreChaosResistanceAllShaperItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 4234677275, }, - ["HitsIgnoreChaosResistanceAllElderItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items", statOrder = { 6770 }, level = 1, group = "HitsIgnoreChaosResistanceAllElderItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 89314980, }, - ["ColdDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%", statOrder = { 5296 }, level = 1, group = "ColdDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2517031897, }, - ["LightningDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75%", statOrder = { 7077 }, level = 1, group = "LightningDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2642525868, }, - ["FlaskConsecratedGroundDurationUnique__1"] = { affix = "", "(15-30)% reduced Duration", statOrder = { 907 }, level = 1, group = "FlaskConsecratedGroundDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 156096868, }, - ["FlaskConsecratedGroundAreaOfEffectUnique__1_"] = { affix = "", "Consecrated Ground created by this Flask has Tripled Radius", statOrder = { 639 }, level = 1, group = "FlaskConsecratedGroundAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 806698863, }, - ["FlaskConsecratedGroundDamageTakenUnique__1"] = { affix = "", "Consecrated Ground created during Effect applies (7-10)% increased Damage taken to Enemies", statOrder = { 737 }, level = 1, group = "FlaskConsecratedGroundDamageTaken", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, tradeHash = 1866211373, }, - ["FlaskConsecratedGroundEffectUnique__1_"] = { affix = "", "+(1-2)% to Critical Hit Chance against Enemies on Consecrated Ground during Effect", statOrder = { 733 }, level = 1, group = "FlaskConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHash = 1535051459, }, - ["FlaskConsecratedGroundEffectCriticalStrikeUnique__1"] = { affix = "", "(100-150)% increased Critical Hit Chance against Enemies on Consecrated Ground during Effect", statOrder = { 771 }, level = 1, group = "FlaskConsecratedGroundEffectCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHash = 3278399103, }, - ["ShockOnKillUnique__1"] = { affix = "", "Enemies you kill are Shocked", statOrder = { 1582 }, level = 1, group = "ShockOnKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 209387074, }, - ["DivineChargeOnHitUnique__1_"] = { affix = "", "+10 to maximum Divine Charges", "Gain a Divine Charge on Hit", statOrder = { 3945, 3946 }, level = 1, group = "DivineChargeOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3666908929, }, - ["GainDivinityOnMaxDivineChargeUnique__1"] = { affix = "", "You gain Divinity for 10 seconds on reaching maximum Divine Charges", "Lose all Divine Charges when you gain Divinity", statOrder = { 3948, 3948.1 }, level = 1, group = "GainDivinityOnMaxDivineCharge", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1174243390, }, - ["NearbyEnemiesCannotCritUnique__1"] = { affix = "", "Never deal Critical Hits", "Nearby Enemies cannot deal Critical Hits", statOrder = { 1842, 7210 }, level = 1, group = "NearbyEnemiesCannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 1239325414, }, - ["NearbyAlliesCannotBeSlowedUnique__1"] = { affix = "", "Action Speed cannot be modified to below base value", "Nearby Allies' Action Speed cannot be modified to below base value", statOrder = { 2808, 7203 }, level = 1, group = "NearbyAlliesCannotBeSlowed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2148696191, }, - ["ManaReservationPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 7536 }, level = 1, group = "ManaReservationPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2676451350, }, - ["ManaReservationEfficiencyPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 7537 }, level = 1, group = "ManaReservationEfficiencyPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1212083058, }, - ["DefencesPer100StrengthAuraUnique__1"] = { affix = "", "Nearby Allies have (4-6)% increased Defences per 100 Strength you have", statOrder = { 2627 }, level = 1, group = "DefencesPer100StrengthAura", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 3767939384, }, - ["BlockPer100StrengthAuraUnique__1___"] = { affix = "", "Nearby Allies have 1% Chance to Block Attack Damage per 100 Strength you have", statOrder = { 2626 }, level = 1, group = "BlockPer100StrengthAura", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHash = 3941641418, }, - ["CriticalMultiplierPer100DexterityAuraUnique__1"] = { affix = "", "Nearby Allies have +(6-8)% to Critical Damage Bonus per 100 Dexterity you have", statOrder = { 2628 }, level = 1, group = "CriticalMultiplierPer100DexterityAura", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 1438488526, }, - ["CastSpeedPer100IntelligenceAuraUnique__1"] = { affix = "", "Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have", statOrder = { 2629 }, level = 1, group = "CastSpeedPer100IntelligenceAura", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, tradeHash = 2373999301, }, - ["GrantsAccuracyAuraSkillUnique__1"] = { affix = "", "Grants Level 30 Precision Skill", statOrder = { 495 }, level = 81, group = "AccuracyAuraSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHash = 2721815210, }, - ["PrecisionAuraBonusUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 8942 }, level = 1, group = "PrecisionAuraBonus", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHash = 1291925008, }, - ["PrecisionReservationEfficiencyUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 8943 }, level = 1, group = "PrecisionReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, tradeHash = 3859865977, }, - ["SupportedByBlessingSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 25 Divine Blessing", statOrder = { 173 }, level = 1, group = "SupportedByBlessing", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3274973940, }, - ["TriggerBowSkillsOnBowAttackUnique__1"] = { affix = "", "Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown", statOrder = { 537 }, level = 1, group = "TriggerBowSkillsOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "gem" }, tradeHash = 3171958921, }, - ["TriggerBowSkillsOnCastUnique__1"] = { affix = "", "Trigger a Socketed Bow Skill when you Cast a Spell while", "wielding a Bow, with a 1 second Cooldown", statOrder = { 602, 602.1 }, level = 1, group = "TriggerBowSkillsOnCast", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, tradeHash = 1378815167, }, - ["LifeLeechNotRemovedOnFullLifeUnique__1"] = { affix = "", "Life Leech effects are not removed when Unreserved Life is Filled", statOrder = { 2823 }, level = 1, group = "LifeLeechNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 4224337800, }, - ["AttacksBlindOnHitChanceUnique__1"] = { affix = "", "5% chance to Blind Enemies on Hit with Attacks", statOrder = { 4453 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 318953428, }, - ["AttacksBlindOnHitChanceUnique__2"] = { affix = "", "(10-20)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4453 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 318953428, }, - ["HeraldBonusExtraMod1"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 9992 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3461563650, }, - ["HeraldBonusExtraMod2_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 9992 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3461563650, }, - ["HeraldBonusExtraMod3_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 9992 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3461563650, }, - ["HeraldBonusExtraMod4"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 9992 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3461563650, }, - ["HeraldBonusExtraMod5"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 9992 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3461563650, }, - ["HeraldBonusThunderReservation"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6719 }, level = 1, group = "HeraldBonusThunderReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3959101898, }, - ["HeraldBonusThunderReservationEfficiency"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6720 }, level = 1, group = "HeraldBonusThunderReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3817220109, }, - ["HeraldBonusThunderLightningDamage"] = { affix = "", "(40-60)% increased Lightning Damage while affected by Herald of Thunder", statOrder = { 7078 }, level = 1, group = "HeraldBonusThunderLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 536957, }, - ["HeraldBonusThunderEffect"] = { affix = "", "Herald of Thunder has (40-60)% increased Buff Effect", statOrder = { 6718 }, level = 1, group = "HeraldBonusThunderEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3814686091, }, - ["HeraldBonusThunderMaxLightningResist"] = { affix = "", "+1% to maximum Lightning Resistance while affected by Herald of Thunder", statOrder = { 8339 }, level = 1, group = "HeraldBonusThunderMaxLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 3259396413, }, - ["HeraldBonusThunderLightningResist_"] = { affix = "", "+(50-60)% to Lightning Resistance while affected by Herald of Thunder", statOrder = { 7080 }, level = 1, group = "HeraldBonusThunderLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 2687017988, }, - ["HeraldBonusAshReservation"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6706 }, level = 1, group = "HeraldBonusAshReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3819451758, }, - ["HeraldBonusAshReservationEfficiency__"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6707 }, level = 1, group = "HeraldBonusAshReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2500442851, }, - ["HeraldBonusAshFireDamage"] = { affix = "", "(40-60)% increased Fire Damage while affected by Herald of Ash", statOrder = { 6148 }, level = 1, group = "HeraldBonusAshFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2775776604, }, - ["HeraldBonusAshEffect"] = { affix = "", "Herald of Ash has (40-60)% increased Buff Effect", statOrder = { 6705 }, level = 1, group = "HeraldBonusAshEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2154349925, }, - ["HeraldBonusAshMaxFireResist"] = { affix = "", "+1% to maximum Fire Resistance while affected by Herald of Ash", statOrder = { 8317 }, level = 1, group = "HeraldBonusAshMaxFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 3716758077, }, - ["HeraldBonusFireResist"] = { affix = "", "+(50-60)% to Fire Resistance while affected by Herald of Ash", statOrder = { 6149 }, level = 1, group = "HeraldBonusFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 2675641469, }, - ["HeraldBonusIceReservation_"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6709 }, level = 1, group = "HeraldBonusIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3059700363, }, - ["HeraldBonusIceReservationEfficiency__"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6710 }, level = 1, group = "HeraldBonusIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3395872960, }, - ["HeraldBonusIceColdDamage"] = { affix = "", "(40-60)% increased Cold Damage while affected by Herald of Ice", statOrder = { 5304 }, level = 1, group = "HeraldBonusIceColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 1970606344, }, - ["HeraldBonusIceEffect_"] = { affix = "", "Herald of Ice has (40-60)% increased Buff Effect", statOrder = { 6708 }, level = 1, group = "HeraldBonusIceEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1862926389, }, - ["HeraldBonusMaxColdResist__"] = { affix = "", "+1% to maximum Cold Resistance while affected by Herald of Ice", statOrder = { 8302 }, level = 1, group = "HeraldBonusMaxColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 950661692, }, - ["HeraldBonusColdResist"] = { affix = "", "+(50-60)% to Cold Resistance while affected by Herald of Ice", statOrder = { 5306 }, level = 1, group = "HeraldBonusColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 2494069187, }, - ["HeraldBonusPurityReservation_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6714 }, level = 1, group = "HeraldBonusPurityReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1542765265, }, - ["HeraldBonusPurityReservationEfficiency_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6715 }, level = 1, group = "HeraldBonusPurityReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2189040439, }, - ["HeraldBonusPurityPhysicalDamage"] = { affix = "", "(40-60)% increased Physical Damage while affected by Herald of Purity", statOrder = { 8865 }, level = 1, group = "HeraldBonusPurityPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 3294232483, }, - ["HeraldBonusPurityEffect"] = { affix = "", "Herald of Purity has (40-60)% increased Buff Effect", statOrder = { 6712 }, level = 1, group = "HeraldBonusPurityEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2126027382, }, - ["HeraldBonusPurityMinionDamage"] = { affix = "", "Sentinels of Purity deal (70-100)% increased Damage", statOrder = { 9224 }, level = 1, group = "HeraldBonusPurityMinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 650630047, }, - ["HeraldBonusPurityPhysicalDamageReduction"] = { affix = "", "4% additional Physical Damage Reduction while affected by Herald of Purity", statOrder = { 8873 }, level = 1, group = "HeraldBonusPurityPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHash = 3163114700, }, - ["HeraldBonusAgonyReservation"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6702 }, level = 1, group = "HeraldBonusAgonyReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1284151528, }, - ["HeraldBonusAgonyReservationEfficiency"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 6703 }, level = 1, group = "HeraldBonusAgonyReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 1133703802, }, - ["HeraldBonusAgonyChaosDamage_"] = { affix = "", "(40-60)% increased Chaos Damage while affected by Herald of Agony", statOrder = { 5207 }, level = 1, group = "HeraldBonusAgonyChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 739274558, }, - ["HeraldBonusAgonyEffect"] = { affix = "", "Herald of Agony has (40-60)% increased Buff Effect", statOrder = { 6701 }, level = 1, group = "HeraldBonusAgonyEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2572910724, }, - ["HeraldBonusAgonyMinionDamage_"] = { affix = "", "Agony Crawler deals (70-100)% increased Damage", statOrder = { 4130 }, level = 1, group = "HeraldBonusAgonyMinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHash = 786460697, }, - ["HeraldBonusAgonyChaosResist_"] = { affix = "", "+(31-43)% to Chaos Resistance while affected by Herald of Agony", statOrder = { 5212 }, level = 1, group = "HeraldBonusAgonyChaosResist", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHash = 3456816469, }, - ["UniqueJewelAlternateTreeInRadiusVaal"] = { affix = "", "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHash = 3179277870, }, - ["UniqueJewelAlternateTreeInRadiusKarui"] = { affix = "", "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHash = 3179277870, }, - ["UniqueJewelAlternateTreeInRadiusMaraketh"] = { affix = "", "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHash = 3179277870, }, - ["UniqueJewelAlternateTreeInRadiusTemplar"] = { affix = "", "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHash = 3179277870, }, - ["UniqueJewelAlternateTreeInRadiusEternal"] = { affix = "", "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHash = 3179277870, }, - ["UniqueJewelAlternateTreeInRadiusKalguur"] = { affix = "", "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHash = 3179277870, }, - ["UniqueJewelAlternateTreeInRadiusAbyssal"] = { affix = "", "Glorifying the defilement of (79-30977) souls in tribute to Amanamu", "Passives in radius are Conquered by the Abyssals", "Desecration makes this item unstable", "Historic", statOrder = { 11, 11.1, 11.2, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHash = 3179277870, }, - ["TotemDamagePerDevotion"] = { affix = "", "4% increased Totem Damage per 10 Devotion", statOrder = { 9675 }, level = 1, group = "TotemDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 2566390555, }, - ["BrandDamagePerDevotion"] = { affix = "", "4% increased Brand Damage per 10 Devotion", statOrder = { 9279 }, level = 1, group = "BrandDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2697019412, }, - ["ChannelledSkillDamagePerDevotion"] = { affix = "", "Channelling Skills deal 4% increased Damage per 10 Devotion", statOrder = { 5199 }, level = 1, group = "ChannelledSkillDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 970844066, }, - ["AreaDamagePerDevotion"] = { affix = "", "4% increased Area Damage per 10 Devotion", statOrder = { 4234 }, level = 1, group = "AreaDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHash = 1724614884, }, - ["ElementalDamagePerDevotion_"] = { affix = "", "4% increased Elemental Damage per 10 Devotion", statOrder = { 5860 }, level = 1, group = "ElementalDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3103189267, }, - ["ElementalResistancesPerDevotion"] = { affix = "", "+2% to all Elemental Resistances per 10 Devotion", statOrder = { 5896 }, level = 1, group = "ElementalResistancesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHash = 1910205563, }, - ["AilmentEffectPerDevotion"] = { affix = "", "3% increased Magnitude of Non-Damaging Ailments you inflict per 10 Devotion", statOrder = { 8662 }, level = 1, group = "AilmentEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHash = 1810368194, }, - ["ElementalAilmentSelfDurationPerDevotion_"] = { affix = "", "4% reduced Elemental Ailment Duration on you per 10 Devotion", statOrder = { 9215 }, level = 1, group = "ElementalAilmentSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, tradeHash = 730530528, }, - ["CurseSelfDurationPerDevotion"] = { affix = "", "4% reduced Duration of Curses on you per 10 Devotion", statOrder = { 9214 }, level = 1, group = "CurseSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 4235333770, }, - ["MinionAttackAndCastSpeedPerDevotion"] = { affix = "", "1% increased Minion Attack and Cast Speed per 10 Devotion", statOrder = { 8455 }, level = 1, group = "MinionAttackAndCastSpeedPerDevotion", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHash = 3808469650, }, - ["MinionAccuracyRatingPerDevotion_"] = { affix = "", "Minions have +60 to Accuracy Rating per 10 Devotion", statOrder = { 8445 }, level = 1, group = "MinionAccuracyRatingPerDevotion", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, tradeHash = 2830135449, }, - ["AddedManaRegenerationPerDevotion"] = { affix = "", "Regenerate 0.6 Mana per Second per 10 Devotion", statOrder = { 7517 }, level = 1, group = "AddedManaRegenerationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2042813020, }, - ["ReducedManaCostPerDevotion"] = { affix = "", "1% reduced Mana Cost of Skills per 10 Devotion", statOrder = { 7487 }, level = 1, group = "ReducedManaCostPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 3293275880, }, - ["AuraEffectPerDevotion"] = { affix = "", "1% increased effect of Non-Curse Auras per 10 Devotion", statOrder = { 8656 }, level = 1, group = "AuraEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "aura" }, tradeHash = 2585926696, }, - ["ShieldDefencesPerDevotion"] = { affix = "", "3% increased Defences from Equipped Shield per 10 Devotion", statOrder = { 9243 }, level = 1, group = "ShieldDefencesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHash = 2803981661, }, - ["NovaSpellsAreaOfEffectUnique__1"] = { affix = "", "Nova Spells have 20% less Area of Effect", statOrder = { 7347 }, level = 50, group = "NovaSpellsAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHash = 200113086, }, - ["RingAttackSpeedUnique__1"] = { affix = "", "20% less Attack Speed", statOrder = { 7345 }, level = 1, group = "RingAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 2418322751, }, - ["FlaskDurationConsumedPerUse"] = { affix = "", "50% increased Duration. -1% to this value when used", statOrder = { 907 }, level = 1, group = "FlaskDurationConsumedPerUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 1256719186, }, - ["HarvestAlternateWeaponQualityLocalCriticalStrikeChance__"] = { affix = "", "Quality does not increase Damage", "1% increased Critical Hit Chance per 4% Quality", statOrder = { 1584, 7182 }, level = 1, group = "HarvestAlternateWeaponQualityLocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "critical" }, tradeHash = 2109698899, }, - ["HarvestAlternateWeaponQualityAccuracyRatingIncrease_"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Accuracy per 2% Quality", statOrder = { 1584, 7133 }, level = 1, group = "HarvestAlternateWeaponQualityAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 476646817, }, - ["HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed"] = { affix = "", "Quality does not increase Damage", "1% increased Attack Speed per 8% Quality", statOrder = { 1584, 7154 }, level = 1, group = "HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHash = 454308351, }, - ["HarvestAlternateWeaponQualityLocalMeleeWeaponRange_"] = { affix = "", "Quality does not increase Damage", "+1 Weapon Range per 10% Quality", statOrder = { 1584, 7440 }, level = 1, group = "HarvestAlternateWeaponQualityLocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 3746833883, }, - ["HarvestAlternateWeaponQualityElementalDamagePercent"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Elemental Damage per 2% Quality", statOrder = { 1584, 7232 }, level = 1, group = "HarvestAlternateWeaponQualityElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, tradeHash = 3668986230, }, - ["HarvestAlternateWeaponQualityAreaOfEffect_"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Area of Effect per 4% Quality", statOrder = { 1584, 7150 }, level = 1, group = "HarvestAlternateWeaponQualityAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1692679499, }, - ["AttackProjectilesForkUnique__1"] = { affix = "", "Projectiles from Attacks Fork", statOrder = { 4415 }, level = 1, group = "AttackProjectilesFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 396113830, }, - ["AttackProjectilesForkExtraTimesUnique__1"] = { affix = "", "Projectiles from Attacks Fork an additional time", statOrder = { 4416 }, level = 1, group = "AttackProjectilesForkExtraTimes", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1643324992, }, - ["MinionLargerAggroRadiusUnique__1"] = { affix = "", "Minions are Aggressive", statOrder = { 10011 }, level = 1, group = "MinionLargerAggroRadius", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHash = 128585622, }, - ["HungryLoopSupportedByTrinity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Trinity", statOrder = { 82, 268 }, level = 1, group = "HungryLoopSupportedByTrinity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHash = 3567278969, }, - ["LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "30% increased Rarity of Items found", "You and Nearby Allies have 30% increased Item Rarity", statOrder = { 916, 1392 }, level = 1, group = "LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2084531689, }, - ["InfernalCryThresholdJewel"] = { affix = "", "With at least 40 Strength in Radius, Combust is Disabled", statOrder = { 7284 }, level = 1, group = "InfernalCryThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1819655989, }, - ["ChaosDamageDoesNotBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Chaos Damage taken bypasses Energy Shield", statOrder = { 4534 }, level = 99, group = "ChaosDamageDoesNotBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1552907959, }, - ["NonChaosDamageBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Damage taken bypasses Energy Shield", statOrder = { 4510 }, level = 1, group = "DamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2448633171, }, - ["KillEnemyInstantlyExarchDominantUnique__1"] = { affix = "", "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant", statOrder = { 7312 }, level = 77, group = "KillEnemyInstantlyExarchDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3768948090, }, - ["MalignantMadnessCritEaterDominantUnique__1"] = { affix = "", "Critical Hits inflict Malignant Madness if The Eater of Worlds is dominant", statOrder = { 7270 }, level = 77, group = "MalignantMadnessCritEaterDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1109900829, }, - ["SocketedWarcryCooldownCountUnique__1"] = { affix = "", "Socketed Warcry Skills have +1 Cooldown Use", statOrder = { 427 }, level = 1, group = "SocketedWarcryCooldownCount", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3784504781, }, - ["TakePhysicalDamagePerWarcryExertingUnique__1"] = { affix = "", "When you Attack, take (15-20)% of Life as Physical Damage for", "each Warcry Empowering the Attack", statOrder = { 9217, 9217.1 }, level = 1, group = "TakePhysicalDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1615324731, }, - ["MoreDamagePerWarcryExertingUnique__1"] = { affix = "", "Skills deal (10-15)% more Damage for each Warcry Empowering them", statOrder = { 9786 }, level = 1, group = "MoreDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2023285759, }, - ["AllDamageCanChillUnique__1"] = { affix = "", "All Damage from Hits Contributes to Chill Magnitude", statOrder = { 2512 }, level = 21, group = "AllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3833160777, }, - ["AllDamageTakenCanChillUnique__1"] = { affix = "", "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", statOrder = { 2515 }, level = 1, group = "AllDamageTakenCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1705072014, }, - ["AllDamageTakenCanChillUnique__2"] = { affix = "", "All Damage taken from Hits Contributes to Magnitude of Chill inflicted on you", statOrder = { 2515 }, level = 1, group = "AllDamageTakenCanChill", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1705072014, }, - ["AllDamageTakenCanIgniteUnique__1"] = { affix = "", "All Damage Taken from Hits can Ignite you", statOrder = { 4157 }, level = 20, group = "AllDamageTakenCanIgnite", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1405089557, }, - ["ChillHitsCauseShatteringUnique__1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5278 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3119292058, }, - ["EnemiesChilledIncreasedDamageTakenUnique__1"] = { affix = "", "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", statOrder = { 5927 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1816894864, }, - ["CasterOffHandNearbyEnemiesAreCoveredInAshImplicit___"] = { affix = "", "Nearby Enemies are Covered in Ash", statOrder = { 7208 }, level = 1, group = "LocalDisplayNearbyEnemiesAreCoveredInAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 746994389, }, - ["CorruptedMagicJewelModEffectUnique__1"] = { affix = "", "(0-150)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Magic Jewels", statOrder = { 7424, 7424.1 }, level = 1, group = "CorruptedMagicJewelModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 461663422, }, - ["UniqueJewelSpecificSkillLevelBonus1"] = { affix = "", "+(1-3) to Level of all 0 Skills", statOrder = { 9795 }, level = 1, group = "UniqueJewelSpecificSkillLevelBonus", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3430847459, }, - ["UniqueReloadSpeed1"] = { affix = "", "(40-60)% reduced Reload Speed", statOrder = { 920 }, level = 65, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 710476746, }, - ["UniqueReloadSpeed2"] = { affix = "", "(15-25)% increased Reload Speed", statOrder = { 920 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 710476746, }, - ["UniqueLoadCrossbowBoltOnKillPercent1"] = { affix = "", "(10-20)% chance to load a bolt into all Crossbow skills on Kill", statOrder = { 5182 }, level = 65, group = "LoadCrossbowBoltOnKillPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3823990000, }, - ["UniqueSacrificeLifeForBolts1"] = { affix = "", "Sacrifice 300 Life to not consume the last bolt when firing", statOrder = { 5369 }, level = 65, group = "SacrificeLifeInsteadOfBolts", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 76982026, }, - ["UniqueLifeLeechLocal4"] = { affix = "", "Leeches (5-10)% of Physical Damage as Life", statOrder = { 972 }, level = 65, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHash = 55876295, }, - ["UniqueLocalIncreasedPhysicalDamagePercent15"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 821 }, level = 65, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHash = 1805374733, }, - ["UniqueIncreasedAttackSpeed12"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 919 }, level = 65, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHash = 210067635, }, - ["UniquePerandusArrows1"] = { affix = "", "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow", statOrder = { 5837 }, level = 83, group = "PerandusArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 3891922348, }, - ["ChanceToPoisonWithAttacksUnique___2"] = { affix = "", "(20-30)% chance to Poison on Hit with Attacks", statOrder = { 2791 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHash = 3954735777, }, - ["AbyssalWastingOnHit"] = { affix = "", "Inflict Abyssal Wasting on Hit", statOrder = { 4010 }, level = 1, group = "AbyssalWastingOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2646093132, }, - ["TokenOfPassageReducedPresenceUnique_1"] = { affix = "", "(20-30)% reduced Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 101878827, }, - ["TokenOfPassageReducedLightUnique_1"] = { affix = "", "(20-30)% reduced Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1263695895, }, - ["PassageUniqueAmanamuSpiritEfficiency"] = { affix = "", "(6-10)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4613 }, level = 1, group = "SpiritReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 53386210, }, - ["PassageUniqueAmanamuIncreasedSpiritPercent"] = { affix = "", "(6-10)% increased Spirit", statOrder = { 1356 }, level = 1, group = "MaximumSpiritPercentage", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1416406066, }, - ["PassageUniqueAmanamuIncreasedArmourPercent"] = { affix = "", "(30-40)% increased Armour", statOrder = { 864 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 2866361420, }, - ["PassageUniqueAmanamuYouAndAllyCooldownPresence"] = { affix = "", "You and Allies in your Presence have (10-14)% increased Cooldown Recovery Rate", statOrder = { 9930 }, level = 1, group = "YouAndAlliesInPresenceCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 36954843, }, - ["PassageUniqueAmanamuYouAndAllyChaosResistance"] = { affix = "", "You and Allies in your Presence have +(17-23)% to Chaos Resistance", statOrder = { 9929 }, level = 1, group = "YouAndAlliesInPresenceChaosResistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1404134612, }, - ["PassageUniqueAmanamuReducedMovementPenalty"] = { affix = "", "(5-8)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 8594 }, level = 1, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHash = 2590797182, }, - ["PassageUniqueAmanamuMaxEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1486 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHash = 1515657623, }, - ["PassageUniqueAmanamuThornsFromConsumingEndurance"] = { affix = "", "(30-50)% increased Thorns damage if you've consumed an Endurance Charge Recently", statOrder = { 9643 }, level = 1, group = "ThornsFromConsumingEndurance", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 806994543, }, - ["PassageUniqueAmanamuReducedIncomingCriticalBonus"] = { affix = "", "Hits against you have (20-30)% reduced Critical Damage Bonus", statOrder = { 950 }, level = 1, group = "ReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3855016469, }, - ["PassageUniqueAmanamuIncreasedDebuffSlowMagnitude"] = { affix = "", "Debuffs you inflict have (12-20)% increased Slow Magnitude", statOrder = { 4552 }, level = 1, group = "SlowEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3650992555, }, - ["PassageUniqueAmanamuReducedIncomingDebuffSlowPotency"] = { affix = "", "(10-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 924253255, }, - ["PassageUniqueAmanamuSkillEffectDuration"] = { affix = "", "(10-16)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3377888098, }, - ["PassageUniqueAmanamuFasterCursedActivation"] = { affix = "", "(10-20)% faster Curse Activation", statOrder = { 5530 }, level = 1, group = "CurseDelay", weightKey = { }, weightVal = { }, modTags = { "curse" }, tradeHash = 1104825894, }, - ["PassageUniqueAmanamuIgniteMagnitude"] = { affix = "", "(20-30)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3791899485, }, - ["PassageUniqueAmanamuIncreasedStrengthPercent"] = { affix = "", "(4-6)% increased Strength", statOrder = { 1080 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 734614379, }, - ["PassageUniqueAmanamuIncreasedCurseAreaOfEffect"] = { affix = "", "(15-25)% increased Area of Effect of Curses", statOrder = { 1875 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHash = 153777645, }, - ["PassageUniqueAmanamuDamageAsExtraFire"] = { affix = "", "Gain (8-12)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3015669065, }, - ["PassageUniqueAmanamuArmourAppliesToElementalDamage"] = { affix = "", "+(20-30)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "armour", "defences", "elemental" }, tradeHash = 3362812763, }, - ["PassageUniqueAmanamuAbyssalWastingReducesFireRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Fire Resistance", statOrder = { 4005 }, level = 1, group = "AbyssalWastingReducesFireRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2991563371, }, - ["PassageUniqueAmanamuAbyssalWastingIncreasedEffect"] = { affix = "", "(60-100)% increased Magnitude of Abyssal Wasting you inflict", statOrder = { 4004 }, level = 1, group = "AbyssalWastingIncreasedEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4043376133, }, - ["PassageUniqueAmanamuAbyssalWastingInfiniteDuration"] = { affix = "", "Abyssal Wasting you inflict has Infinite Duration", statOrder = { 4006 }, level = 1, group = "AbyssalWastingInfiniteDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1679776108, }, - ["PassageUniqueAmanamuFlatSpiritIfAtLeast200Strength"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Strength", statOrder = { 9454 }, level = 1, group = "FlatSpiritIfAtLeast200Strength", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3044685077, }, - ["PassageUniqueKurgalPercentCastSpeedPerSpirit"] = { affix = "", "2% increased Cast Speed per 20 Spirit", statOrder = { 4964 }, level = 1, group = "PercentCastSpeedPerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 34174842, }, - ["PassageUniqueKurgalMaximumManaPercent"] = { affix = "", "(5-10)% increased maximum Mana", statOrder = { 872 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHash = 2748665614, }, - ["PassageUniqueKurgalIncreasedEnergyShieldPercent"] = { affix = "", "(30-40)% increased maximum Energy Shield", statOrder = { 868 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, }, - ["PassageUniqueKurgalDamageTakenFromManaBeforeLife"] = { affix = "", "(10-14)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHash = 458438597, }, - ["PassageUniqueKurgalManaRegenWhileSurrounded"] = { affix = "", "(40-60)% increased Mana Regeneration Rate while Surrounded", statOrder = { 7514 }, level = 1, group = "ManaRegenWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1895238057, }, - ["PassageUniqueKurgalYouAndAllyCastSpeed"] = { affix = "", "You and Allies in your Presence have (11-16)% increased Cast Speed", statOrder = { 9928 }, level = 1, group = "YouAndAlliesInPresenceCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 281990982, }, - ["PassageUniqueKurgalEnemiesDyingInPresenceRecoverMana"] = { affix = "", "Recover (3-5)% of your maximum Mana when an Enemy dies in your Presence", statOrder = { 9106 }, level = 1, group = "EnemiesDyingInPresenceRecoverMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2456226238, }, - ["PassageUniqueKurgalGainArcaneSurgeOnMinionDeath"] = { affix = "", "Gain Arcane Surge when a Minion Dies", statOrder = { 6318 }, level = 1, group = "GainArcaneSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3625518318, }, - ["PassageUniqueKurgalMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHash = 227523295, }, - ["PassageUniqueKurgalSkillCostEfficiencyFromConsumingPower"] = { affix = "", "(10-20)% increased Cost Efficiency of Skills if you've consumed a Power Charge Recently", statOrder = { 9299 }, level = 1, group = "SkillCostEfficiencyFromConsumingPower", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2369495153, }, - ["PassageUniqueKurgalCriticalStrikeChancePercent"] = { affix = "", "(25-40)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHash = 587431675, }, - ["PassageUniqueKurgalMetaSkillsGenerateIncreasedEnergy"] = { affix = "", "Meta Skills gain (10-16)% increased Energy", statOrder = { 5987 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4236566306, }, - ["PassageUniqueKurgalTriggeredSkillsDealIncreasedDamage"] = { affix = "", "Triggered Spells deal (25-40)% increased Spell Damage", statOrder = { 9712 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 3067892458, }, - ["PassageUniqueKurgalChillMagnitude"] = { affix = "", "(20-30)% increased Magnitude of Chill you inflict", statOrder = { 5269 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 828179689, }, - ["PassageUniqueKurgalIncreasedIntelligencePercent"] = { affix = "", "(4-6)% increased Intelligence", statOrder = { 1082 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 656461285, }, - ["PassageUniqueKurgalIncreasedSpellAreaOfEffect"] = { affix = "", "Spell Skills have (9-18)% increased Area of Effect", statOrder = { 9390 }, level = 1, group = "SpellAreaOfEffectPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1967040409, }, - ["PassageUniqueKurgalDamageAsExtraCold"] = { affix = "", "Gain (8-12)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 2505884597, }, - ["PassageUniqueKurgalFasterStartOfEnergyShieldRecharge"] = { affix = "", "(15-25)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, }, - ["PassageUniqueKurgalAbyssalWastingReducesColdRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Cold Resistance", statOrder = { 4003 }, level = 1, group = "AbyssalWastingReducesColdRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3979226081, }, - ["PassageUniqueKurgalAbyssalWastingInstantManaLeechPercent"] = { affix = "", "(20-30)% of Mana Leeched from targets affected by Abyssal Wasting is Instant", statOrder = { 4008 }, level = 1, group = "AbyssalWastingInstantManaLeechPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 546201303, }, - ["PassageUniqueKurgalAbyssalWastingAccuracyRatingPlusPercent"] = { affix = "", "(30-40)% increased Accuracy Rating against Enemies affected by Abyssal Wasting", statOrder = { 4015 }, level = 1, group = "AbyssalWastingAccuracyRatingPlusPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4255854327, }, - ["PassageUniqueKurgalFlatSpiritIfAtLeast200Intelligence"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Intelligence", statOrder = { 9453 }, level = 1, group = "FlatSpiritIfAtLeast200Intelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1282318918, }, - ["PassageUniqueUlamanPercentAttackSpeedPerSpirit"] = { affix = "", "1% increased Attack Speed per 20 Spirit", statOrder = { 4419 }, level = 1, group = "PercentAttackSpeedPerSpirit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 324579579, }, - ["PassageUniqueUlamanMaximumLifePercent"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 983749596, }, - ["PassageUniqueUlamanIncreasedEvasionPercent"] = { affix = "", "(30-40)% increased Evasion Rating", statOrder = { 866 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, }, - ["PassageUniqueUlamanProjectileChanceToChainTerrain"] = { affix = "", "Projectiles have (10-16)% chance to Chain an additional time from terrain", statOrder = { 8970 }, level = 1, group = "ChainFromTerrain", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4081947835, }, - ["PassageUniqueUlamanAdditionalProjectileChanceWhileForking"] = { affix = "", "Projectiles have (40-50)% chance for an additional Projectile when Forking", statOrder = { 5139 }, level = 1, group = "ForkingProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3003542304, }, - ["PassageUniqueUlamanLifeRegenWhileSurrounded"] = { affix = "", "(30-40)% increased Life Regeneration rate while Surrounded", statOrder = { 7038 }, level = 1, group = "LifeRegenWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3084372306, }, - ["PassageUniqueUlamanYouAndAllyIncreasedAttackSpeed"] = { affix = "", "You and Allies in your Presence have (7-12)% increased Attack Speed", statOrder = { 9927 }, level = 1, group = "YouAndAlliesInPresenceAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3408222535, }, - ["PassageUniqueUlamanYouAndAllyAccuracyRatingPercent"] = { affix = "", "You and Allies in your Presence have (20-28)% increased Accuracy Rating", statOrder = { 9925 }, level = 1, group = "YouAndAlliesInPresenceAccuracyRating", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3429986699, }, - ["PassageUniqueUlamanEnemiesDyingInPresenceRecoverLife"] = { affix = "", "Recover (2-3)% of your maximum Life when an Enemy dies in your Presence", statOrder = { 9104 }, level = 1, group = "EnemiesDyingInPresenceRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3503117295, }, - ["PassageUniqueUlamanGainOnslaughtSurgeOnMinionDeath"] = { affix = "", "Gain Onslaught for 4 seconds when a Minion Dies", statOrder = { 6385 }, level = 1, group = "GainOnslaughtSurgeOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3605616594, }, - ["PassageUniqueUlamanMaximumFrenzyCharges"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHash = 4078695, }, - ["PassageUniqueUlamanLifeLeechAmountFromConsumingFrenzy"] = { affix = "", "(20-30)% increased amount of Life Leeched if you've consumed a Frenzy Charge Recently", statOrder = { 6987 }, level = 1, group = "LifeLeechAmountFromConsumingFrenzy", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3843204146, }, - ["PassageUniqueUlamanCriticalDamageBonus"] = { affix = "", "(15-25)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHash = 3556824919, }, - ["PassageUniqueUlamanShockMagnitude"] = { affix = "", "(15-25)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2527686725, }, - ["PassageUniqueUlamanIncreasedDexterityPercent"] = { affix = "", "(4-6)% increased Dexterity", statOrder = { 1081 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHash = 4139681126, }, - ["PassageUniqueUlamanIncreasedAttackAreaOfEffect"] = { affix = "", "(9-18)% increased Area of Effect for Attacks", statOrder = { 4363 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1840985759, }, - ["PassageUniqueUlamanDamageAsExtraLightning"] = { affix = "", "Gain (8-12)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 3278136794, }, - ["PassageUniqueUlamanEvasionAppliesToDeflectRating"] = { affix = "", "Gain Deflection Rating equal to (10-20)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 3033371881, }, - ["PassageUniqueUlamanAbyssalWastingReducesLightningRes"] = { affix = "", "Abyssal Wasting also applies {0:-d}% to Lightning Resistance", statOrder = { 4009 }, level = 1, group = "AbyssalWastingReducesLightningRes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1726353460, }, - ["PassageUniqueUlamanAbyssalWastingInstantLifeLeechPercent"] = { affix = "", "(20-30)% of Life Leeched from targets affected by Abyssal Wasting is Instant", statOrder = { 4007 }, level = 1, group = "AbyssalWastingInstantLifeLeechPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3658708511, }, - ["PassageUniqueUlamanAbyssalWastingAilmentChancePlusPercent"] = { affix = "", "(30-40)% increased chance to inflict Ailments against Enemies affected by Abyssal Wasting", statOrder = { 4133 }, level = 1, group = "AbyssalWastingAilmentChancePlusPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2760643568, }, - ["PassageUniqueUlamanFlatSpiritIfAtLeast200Dexterity"] = { affix = "", "+(20-25) to Spirit while you have at least 200 Dexterity", statOrder = { 9452 }, level = 1, group = "FlatSpiritIfAtLeast200PerDexterity", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2694614739, }, - ["MaceImplicitHasXSockets"] = { affix = "", "Has 3 Sockets", statOrder = { 54 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 4077843608, }, - ["LocalItemBenefitSocketableAsIfHelmetUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Helmet", statOrder = { 7275 }, level = 1, group = "LocalItemBenefitSocketableAsIfHelmet", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1458343515, }, - ["LocalItemBenefitSocketableAsIfBodyArmourUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Body Armour", statOrder = { 7272 }, level = 1, group = "LocalItemBenefitSocketableAsIfBodyArmour", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1087787187, }, - ["LocalItemBenefitSocketableAsIfBodyArmourUnique__2"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Body Armour", statOrder = { 7272 }, level = 1, group = "LocalItemBenefitSocketableAsIfBodyArmour", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1087787187, }, - ["LocalItemBenefitSocketableAsIfGlovesUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Gloves", statOrder = { 7274 }, level = 1, group = "LocalItemBenefitSocketableAsIfGloves", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1856590738, }, - ["LocalItemBenefitSocketableAsIfBootsUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was Boots", statOrder = { 7273 }, level = 1, group = "LocalItemBenefitSocketableAsIfBoots", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2733960806, }, - ["LocalItemBenefitSocketableAsIfShieldUnique__1"] = { affix = "", "This item gains bonuses from Socketed Items as though it was a Shield", statOrder = { 7276 }, level = 1, group = "LocalItemBenefitSocketableAsIfShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2044810874, }, - ["LocalSocketItemsEffectUnique__1"] = { affix = "", "(50-100)% increased effect of Socketed Items", statOrder = { 7351 }, level = 1, group = "LocalSocketItemsEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2081918629, }, - ["UniqueLocalSoulCoreAlsoGainBenefitsFromHelmet1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", statOrder = { 71 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromHelmet", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3773763721, }, - ["UniqueLocalSoulCoreAlsoGainBenefitsFromGloves1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", statOrder = { 70 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromGloves", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3915618954, }, - ["UniqueLocalSoulCoreAlsoGainBenefitsFromBoots1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Boots", statOrder = { 69 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromBoots", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 150590298, }, - ["UniqueLocalSoulCoreAlsoGainBenefitsFromShield1"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also a Shield", statOrder = { 72 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromShield", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 231726304, }, - ["UniqueAtziriSplendourArmour1"] = { affix = "", "(200-300)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHash = 1062208444, }, - ["UniqueAtziriSplendourEvasion1"] = { affix = "", "(200-300)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHash = 124859000, }, - ["UniqueAtziriSplendourEnergyShield1"] = { affix = "", "(200-300)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHash = 4015621042, }, - ["UniqueAtziriSplendourArmourAndEvasion1"] = { affix = "", "(120-180)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHash = 2451402625, }, - ["UniqueAtziriSplendourArmourAndEnergyShield1"] = { affix = "", "(120-180)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHash = 3321629045, }, - ["UniqueAtziriSplendourEnergyShieldAndEvasion1"] = { affix = "", "(120-180)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "defences" }, tradeHash = 1999113824, }, - ["UniqueAtziriSplendourArmourEvasionAndEnergyShield1"] = { affix = "", "(80-120)% increased Armour, Evasion and Energy Shield", statOrder = { 840 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "evasion", "defences" }, tradeHash = 3523867985, }, - ["UniqueCorruptedSkillGemManaCostConvertedToLife1"] = { affix = "", "Skills from Corrupted Gems have 50% of Mana Costs Converted to Life Costs", statOrder = { 9322 }, level = 1, group = "CorruptedSkillGemLifeCostConvertedToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHash = 2035336006, }, - ["UniqueOnlySocketSoulCores1"] = { affix = "", "Only Soul Cores can be Socketed in this item", statOrder = { 56 }, level = 1, group = "OnlySocketSoulCores", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 250458861, }, - ["EssenceDisplayDefences1"] = { affix = "", "(27-42)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, }, - ["EssenceDisplayDefences1Amulet"] = { affix = "", "(15-20)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, }, - ["EssenceDisplayDefences2"] = { affix = "", "(56-67)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, }, - ["EssenceDisplayDefences2Amulet"] = { affix = "", "(21-26)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, }, - ["EssenceDisplayDefences3"] = { affix = "", "(68-79)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, }, - ["EssenceDisplayDefences3Amulet"] = { affix = "", "(27-32)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, }, - ["EssenceDisplayDefences4"] = { affix = "", "(80-91)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, }, - ["EssenceDisplayDefences4Amulet"] = { affix = "", "(33-38)% increased Armour, Evasion or Energy Shield", statOrder = { 6053 }, level = 1, group = "EssenceDisplayDefences", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 3444888217, }, - ["EssenceDisplayAttributes1"] = { affix = "", "+(9-12) to Strength, Dexterity or Intelligence", statOrder = { 6051 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1816568014, }, - ["EssenceDisplayAttributes2"] = { affix = "", "+(17-20) to Strength, Dexterity or Intelligence", statOrder = { 6051 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1816568014, }, - ["EssenceDisplayAttributes3"] = { affix = "", "+(25-27) to Strength, Dexterity or Intelligence", statOrder = { 6051 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1816568014, }, - ["EssenceDisplayAttributes4"] = { affix = "", "+(28-30) to Strength, Dexterity or Intelligence", statOrder = { 6051 }, level = 1, group = "EssenceDisplayAttributes", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1816568014, }, - ["EssenceDisplayAttributes5"] = { affix = "", "(7-10)% increased Strength, Dexterity or Intelligence", statOrder = { 6052 }, level = 1, group = "EssenceDisplayAttributesIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 415464603, }, - ["UniqueFlaskMoreLife__1"] = { affix = "", "90% less Life Recovered", statOrder = { 619 }, level = 1, group = "FlaskMoreLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 1726753705, }, - ["UniqueFlaskEffectNotRemovedOnFullLife__1"] = { affix = "", "Effect is not removed when Unreserved Life is Filled", statOrder = { 628 }, level = 1, group = "FlaskEffectNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHash = 2932359713, }, - ["UniqueDuringRageFlaskEffects__1"] = { affix = "", "(15-30)% of Damage taken during effect Recouped as Life", "Gain (3-5) Rage when Hit by an Enemy during effect", "No Inherent loss of Rage during effect", statOrder = { 736, 739, 749 }, level = 1, group = "DoubleMaximumRageFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2832906403, }, - ["UniqueFlaskDuration__1"] = { affix = "", "(25-50)% increased Duration", statOrder = { 907 }, level = 1, group = "FlaskUtilityIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHash = 156096868, }, - ["GhostflameOnHitUnique__1"] = { affix = "", "Attack Hits inflict Spectral Fire for 8 seconds", statOrder = { 6453 }, level = 1, group = "GhostflameOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 33298888, }, - ["AttackAdditionalProjectilesUnique__1"] = { affix = "", "Attacks fire an additional Projectile", statOrder = { 3749 }, level = 1, group = "AttackAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHash = 1195705739, }, - ["FireDamageArmourPenetrationUnique__1"] = { affix = "", "Break Armour equal to 15% of Fire Damage dealt", statOrder = { 4289 }, level = 1, group = "FireDamageArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2451508632, }, - ["FireDamagePercentPerArmourBreakUnique__1"] = { affix = "", "(10-20)% increased Fire Damage per 10% of target's Armour that is Broken", statOrder = { 6137 }, level = 1, group = "FireDamagePercentPerArmourBreak", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 1325331627, }, - ["UniqueTwoHandedWeaponLightningStunMultiplier1"] = { affix = "", "(50-100)% more Stun Buildup with Lightning Damage", statOrder = { 9811 }, level = 1, group = "UniqueTwoHandedWeaponLightningStunMultiplier", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2029147356, }, - ["LocalAlwaysHeavyStunOnFullLifeUnique__1"] = { affix = "", "Heavy Stuns Enemies that are on Full Life", statOrder = { 1066 }, level = 76, group = "LocalAlwaysHeavyStunOnFullLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 668076381, }, - ["LocalDisableRareModOnHitUnique__1"] = { affix = "", "DNT-UNUSED 20% chance when hitting a Rare Monster to disable one of its Modifiers", statOrder = { 7194 }, level = 1, group = "LocalDisableRareModOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2662365575, }, - ["TheFlawedEdictUnique__1"] = { affix = "", "DNT-UNUSED Gain 20% Edict Declaration when you disable a rare monster mod", statOrder = { 7231 }, level = 1, group = "TheFlawedEdict", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 2303993580, }, - ["UniqueDesecratedModEffect1"] = { affix = "", "(60-80)% increased Desecrated Modifier magnitudes", statOrder = { 47 }, level = 1, group = "UniqueDesecratedModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHash = 586037801, }, - ["UniqueMutatedVaalPresenceRadius"] = { affix = "", "100% reduced Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 101878827, }, - ["UniqueMutatedVaalIncreasedLifeLeechRate"] = { affix = "", "Leech Life (-25-25)% slower", statOrder = { 1821 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 1570501432, }, - ["UniqueMutatedVaalLifeDegenerationPercentGracePeriod"] = { affix = "", "Lose (2.5-5)% of maximum Life per second", statOrder = { 1616 }, level = 1, group = "LifeDegenerationPercentGracePeriod", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1661347488, }, - ["UniqueMutatedVaalManaCostEfficiency"] = { affix = "", "25% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHash = 4101445926, }, - ["UniqueMutatedVaalSkillCostEfficiency"] = { affix = "", "(20-30)% increased Cost Efficiency", statOrder = { 4604 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 263495202, }, - ["UniqueMutatedVaalSpellLifeCostPercent"] = { affix = "", "(25-50)% of Spell Mana Cost Converted to Life Cost", statOrder = { 9436 }, level = 1, group = "SpellLifeCostPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life", "caster" }, tradeHash = 3544050945, }, - ["UniqueMutatedVaalGlobalDeflectionRating"] = { affix = "", "(15-25)% increased Deflection Rating", statOrder = { 5721 }, level = 1, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "mutatedunique_vaal", "defences" }, tradeHash = 3040571529, }, - ["UniqueMutatedVaalSurroundedAreaOfEffect"] = { affix = "", "(20-30)% increased Surrounded Area of Effect", statOrder = { 9601 }, level = 1, group = "SurroundedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 909236563, }, - ["UniqueMutatedVaalTotemDuration"] = { affix = "", "(-30-30)% reduced Totem Duration", statOrder = { 1463 }, level = 1, group = "TotemDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2357996603, }, - ["UniqueMutatedVaalAttackAndCastSpeedOnPlacingTotem"] = { affix = "", "25% increased Attack and Cast Speed if you've summoned a Totem Recently", statOrder = { 2820 }, level = 1, group = "AttackAndCastSpeedOnPlacingTotem", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3910614548, }, - ["UniqueMutatedVaalLifeLeechAmount"] = { affix = "", "(20-25)% increased amount of Life Leeched", statOrder = { 1820 }, level = 1, group = "LifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2112395885, }, - ["UniqueMutatedVaalLocalPhysicalDamageReductionRating"] = { affix = "", "+(100-150) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "mutatedunique_vaal", "defences" }, tradeHash = 3484657501, }, - ["UniqueMutatedVaalIgniteChanceIncrease"] = { affix = "", "25% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2968503605, }, - ["UniqueMutatedVaalPercentDamageGoesToMana"] = { affix = "", "(6-10)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life", "mana" }, tradeHash = 472520716, }, - ["UniqueMutatedVaalMaximumLifeIncreasePercent"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 983749596, }, - ["UniqueMutatedVaalBeltIncreasedFlaskChargesGained"] = { affix = "", "(20-30)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique_vaal" }, tradeHash = 1836676211, }, - ["UniqueMutatedVaalLocalEnegyShield"] = { affix = "", "+(50-150) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHash = 4052037485, }, - ["UniqueMutatedVaalLocalEvasionRating"] = { affix = "", "+(50-150) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "mutatedunique_vaal", "defences" }, tradeHash = 53045048, }, - ["UniqueMutatedVaalFireDamagePercentage"] = { affix = "", "(1-60)% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire" }, tradeHash = 3962278098, }, - ["UniqueMutatedVaalColdDamagePercentage"] = { affix = "", "(1-60)% increased Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "cold" }, tradeHash = 3291658075, }, - ["UniqueMutatedVaalLightningDamagePercentage"] = { affix = "", "(1-60)% increased Lightning Damage", statOrder = { 857 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "lightning" }, tradeHash = 2231156303, }, - ["UniqueMutatedVaalChaosDamagePercentage"] = { affix = "", "(1-60)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique_vaal", "damage", "chaos" }, tradeHash = 736967255, }, - ["UniqueMutatedVaalChaosResistance"] = { affix = "", "+(1-60)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueMutatedVaalVolatilityOnCritChance"] = { affix = "", "(30-50)% chance to grant Volatility on Critical Hit", statOrder = { 6910 }, level = 1, group = "VolatilityOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2931872063, }, - ["UniqueMutatedVaalCastSpeedIfCriticalStrikeDealtRecently"] = { affix = "", "(-15-15)% reduced Cast Speed if you've dealt a Critical Hit Recently", statOrder = { 4970 }, level = 1, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster", "speed" }, tradeHash = 1174076861, }, - ["UniqueMutatedVaalPoisonEffect"] = { affix = "", "(10-16)% increased Magnitude of Poison you inflict", statOrder = { 8925 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage", "ailment" }, tradeHash = 2487305362, }, - ["UniqueMutatedVaalDamageTakenGainedAsLife"] = { affix = "", "(5-10)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 1444556985, }, - ["UniqueMutatedVaalIncreasedStunThreshold"] = { affix = "", "(20-30)% increased Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 680068163, }, - ["UniqueMutatedVaalLocalEnergyShield1"] = { affix = "", "+(60-100) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHash = 4052037485, }, - ["UniqueMutatedVaalBeltFlaskLifeRecovery"] = { affix = "", "(10-30)% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mutatedunique_vaal", "life" }, tradeHash = 821241191, }, - ["UniqueMutatedVaalBeltIncreasedCharmChargesGained"] = { affix = "", "(10-30)% increased Charm Charges gained", statOrder = { 5227 }, level = 1, group = "BeltIncreasedCharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3585532255, }, - ["UniqueMutatedVaalDamageRemovedFromManaBeforeLife"] = { affix = "", "10% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life", "mana" }, tradeHash = 458438597, }, - ["UniqueMutatedVaalMaximumManaOnKillPercent"] = { affix = "", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1439 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHash = 1030153674, }, - ["UniqueMutatedVaalIncreasedLife"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 3299347043, }, - ["UniqueMutatedVaalIncreasedLife1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 3299347043, }, - ["UniqueMutatedVaalAllAttributes"] = { affix = "", "+(17-23) to all Attributes", statOrder = { 946 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attribute" }, tradeHash = 1379411836, }, - ["UniqueMutatedVaalCriticalStrikeChanceIfNoCriticalStrikeDealtRecently"] = { affix = "", "(120-200)% increased Critical Hit Chance if you haven't dealt a Critical Hit Recently", statOrder = { 5452 }, level = 1, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "critical" }, tradeHash = 2856328513, }, - ["UniqueMutatedVaalManaCostEfficiency1"] = { affix = "", "(20-30)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHash = 4101445926, }, - ["UniqueMutatedVaalRecoverLifeOnKillingPoisonedEnemyPerPoison"] = { affix = "", "Recover (0.5-1)% of maximum Life per Poison affecting Enemies you Kill", statOrder = { 9122 }, level = 1, group = "RecoverLifeOnKillingPoisonedEnemyPerPoison", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2535713562, }, - ["UniqueMutatedVaalLifeRegenerationRatePercentage"] = { affix = "", "Regenerate (1.5-3)% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 836936635, }, - ["UniqueMutatedVaalIgniteChanceIncrease1"] = { affix = "", "(15-25)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2968503605, }, - ["UniqueMutatedVaalIgniteEffect"] = { affix = "", "(26-40)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3791899485, }, - ["UniqueMutatedVaalChanceToGainAdditionalRandomCharge"] = { affix = "", "50% chance to gain an additional random Charge when you gain a Charge", statOrder = { 5146 }, level = 1, group = "ChanceToGainAdditionalRandomCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 504210122, }, - ["UniqueMutatedVaalChargeDuration"] = { affix = "", "(-60-60)% reduced Endurance, Frenzy and Power Charge Duration", statOrder = { 2651 }, level = 1, group = "ChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "mutatedunique_vaal" }, tradeHash = 2839036860, }, - ["UniqueMutatedVaalPoisonStackCount"] = { affix = "", "Targets can be affected by +1 of your Poisons at the same time", statOrder = { 8749 }, level = 1, group = "PoisonStackCount", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1755296234, }, - ["UniqueMutatedVaalDeflectDamageTakenRecoupedAsLife"] = { affix = "", "(10-20)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 5718 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3471443885, }, - ["UniqueMutatedVaalGoldFoundIncrease"] = { affix = "", "(-15-15)% reduced Quantity of Gold Dropped by Slain Enemies", statOrder = { 6476 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop", "mutatedunique_vaal" }, tradeHash = 3175163625, }, - ["UniqueMutatedVaalLightningResistance"] = { affix = "", "+(-60-60)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["UniqueMutatedVaalLifeRegenerationWhileSurrounded"] = { affix = "", "Regenerate (0.5-1.5)% of maximum Life per second while Surrounded", statOrder = { 7043 }, level = 1, group = "LifeRegenerationWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 2002533190, }, - ["UniqueMutatedVaalLocalPhysicalDamageReductionRating1"] = { affix = "", "+(60-75) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "mutatedunique_vaal", "defences" }, tradeHash = 3484657501, }, - ["UniqueMutatedVaalPercentageStrength"] = { affix = "", "(5-10)% increased Strength", statOrder = { 1080 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attribute" }, tradeHash = 734614379, }, - ["UniqueMutatedVaalAreaOfEffectIfKilledRecently"] = { affix = "", "(10-25)% increased Area of Effect if you've Killed Recently", statOrder = { 3772 }, level = 1, group = "AreaOfEffectIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3481736410, }, - ["UniqueMutatedVaalSpellChanceToFireTwoAdditionalProjectiles"] = { affix = "", "(5-10)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9431 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster" }, tradeHash = 2910761524, }, - ["UniqueMutatedVaalEnergyGeneration"] = { affix = "", "Meta Skills gain (-30-30)% reduced Energy", statOrder = { 5987 }, level = 1, group = "EnergyGeneration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 4236566306, }, - ["UniqueMutatedVaalAilmentChance"] = { affix = "", "(20-30)% increased chance to inflict Ailments", statOrder = { 4136 }, level = 1, group = "AilmentChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "ailment" }, tradeHash = 1772247089, }, - ["UniqueMutatedVaalManaCostEfficiency2"] = { affix = "", "(13-17)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHash = 4101445926, }, - ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromHelmet"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also a Helmet", statOrder = { 71 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromHelmet", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3773763721, }, - ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromGloves"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Gloves", statOrder = { 70 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromGloves", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3915618954, }, - ["UniqueMutatedVaalLocalSoulCoreAlsoGainBenefitsFromBoots"] = { affix = "", "This item gains bonuses from Socketed Soul Cores as though it was also Boots", statOrder = { 69 }, level = 1, group = "LocalSoulCoreAlsoGainBenefitsFromBoots", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 150590298, }, - ["UniqueMutatedVaalEnergyShieldDelay1"] = { affix = "", "(33-66)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHash = 1782086450, }, - ["UniqueMutatedVaalSkillCostEfficiency1"] = { affix = "", "(-30-30)% reduced Cost Efficiency", statOrder = { 4604 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 263495202, }, - ["UniqueMutatedVaalPresenceRadius1"] = { affix = "", "(15-30)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 101878827, }, - ["UniqueMutatedVaalLifeCostEfficiency"] = { affix = "", "(12-20)% increased Life Cost Efficiency", statOrder = { 4572 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 310945763, }, - ["UniqueMutatedVaalEvasionRatingPercentWhileSprinting"] = { affix = "", "(100-150)% increased Evasion Rating while Sprinting", statOrder = { 6065 }, level = 1, group = "EvasionRatingPercentWhileSprinting", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1586136369, }, - ["UniqueMutatedVaalProjectileSpeed"] = { affix = "", "(16-24)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "speed" }, tradeHash = 3759663284, }, - ["UniqueMutatedVaalGainSoulEaterStackOnHit"] = { affix = "", "Eat a Soul when you Hit a Unique Enemy, no more than once every 0.5 seconds", statOrder = { 6419 }, level = 1, group = "GainSoulEaterStackOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2103621252, }, - ["UniqueMutatedVaalPowerFrenzyOrEnduranceChargeOnKill"] = { affix = "", "(15-30)% chance to gain a Power, Frenzy, or Endurance Charge on kill", statOrder = { 3187 }, level = 1, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "mutatedunique_vaal" }, tradeHash = 498214257, }, - ["UniqueMutatedVaalLocalEnergyShield"] = { affix = "", "+(90-120) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHash = 4052037485, }, - ["UniqueMutatedVaalMaximumRagePerGlorySkillUsed"] = { affix = "", "+(8-12) maximum Rage for each time you've used a Skill that Requires Glory in the past 6 seconds, up to 5 times", statOrder = { 8293 }, level = 1, group = "MaximumRagePerGlorySkillUsed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 233359425, }, - ["UniqueMutatedVaalMaxRageFromRageOnHitChance"] = { affix = "", "(12-16)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", statOrder = { 6375 }, level = 1, group = "MaxRageFromRageOnHitChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2710292678, }, - ["UniqueMutatedVaalIncreasedAttackSpeed"] = { affix = "", "25% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "speed" }, tradeHash = 681332047, }, - ["UniqueMutatedVaalArmourAppliesToElementalDamage"] = { affix = "", "+(33-66)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "armour", "mutatedunique_vaal", "defences", "elemental" }, tradeHash = 3362812763, }, - ["UniqueMutatedVaalCharmChargeGeneration"] = { affix = "", "Charms gain 0.5 charges per Second", statOrder = { 6448 }, level = 1, group = "CharmChargeGeneration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 185580205, }, - ["UniqueMutatedVaalRemoveBleedOnLifeFlaskUse"] = { affix = "", "Remove Bleeding when you use a Life Flask", statOrder = { 9158 }, level = 1, group = "RemoveBleedOnLifeFlaskUse", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1394184789, }, - ["UniqueMutatedVaalChanceToNotConsumeInfusion"] = { affix = "", "Skills have (5-10)% chance to not remove Elemental Infusions but still count as consuming them", statOrder = { 5185 }, level = 1, group = "ChanceToNotConsumeInfusion", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3024873336, }, - ["UniqueMutatedVaalSpellSkillProjectileSpeed"] = { affix = "", "(-30-30)% reduced Projectile Speed for Spell Skills", statOrder = { 9426 }, level = 1, group = "SpellSkillProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3359797958, }, - ["UniqueMutatedVaalSpellsFire8AdditionalProjectileChance"] = { affix = "", "(5-10)% chance for Spell Skills to fire 8 additional Projectiles in a circle", statOrder = { 9425 }, level = 1, group = "SpellsFire8AdditionalProjectileChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 4224832423, }, - ["UniqueMutatedVaalGlobalSkillGemLevel"] = { affix = "", "+(2-4) to Level of all Skills", statOrder = { 4166 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "gem" }, tradeHash = 4283407333, }, - ["UniqueMutatedVaalGlobalSkillGemQuality"] = { affix = "", "+(5-10)% to Quality of all Skills", statOrder = { 4167 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "gem" }, tradeHash = 3655769732, }, - ["UniqueMutatedVaalBaseSpirit"] = { affix = "", "+50 to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3981240776, }, - ["UniqueMutatedVaalPercentageAllAttributes"] = { affix = "", "(5-10)% increased Attributes", statOrder = { 1079 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attribute" }, tradeHash = 3143208761, }, - ["UniqueMutatedVaalLocalPhysicalDamage1"] = { affix = "", "Adds (40-60) to (70-90) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueMutatedVaalAftershockChance"] = { affix = "", "(5-10)% chance for Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 9981 }, level = 1, group = "AftershockChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2045949233, }, - ["UniqueMutatedVaalManaCostEfficiency3"] = { affix = "", "(-30-30)% reduced Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "ManaCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHash = 4101445926, }, - ["UniqueMutatedVaalLifeCostEfficiency1"] = { affix = "", "(25-50)% increased Life Cost Efficiency", statOrder = { 4572 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 310945763, }, - ["UniqueMutatedVaalMaximumLifeIncreasePercent1"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 983749596, }, - ["UniqueMutatedVaalLifeRegenerationRatePercentage1"] = { affix = "", "Regenerate (1-3)% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 836936635, }, - ["UniqueMutatedVaalLifeLeechFromThorns"] = { affix = "", "(5-10)% of Thorns Damage Leeched as Life", statOrder = { 4576 }, level = 1, group = "LifeLeechFromThorns", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1753977518, }, - ["UniqueMutatedVaalGlobalFlaskLifeRecovery"] = { affix = "", "(25-50)% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mutatedunique_vaal", "life" }, tradeHash = 821241191, }, - ["UniqueMutatedVaalLocalPhysicalDamageReductionRating2"] = { affix = "", "+(220-320) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "mutatedunique_vaal", "defences" }, tradeHash = 3484657501, }, - ["UniqueMutatedVaalLifeFlaskChargePercentGeneration"] = { affix = "", "(15-30)% increased Life Flask Charges gained", statOrder = { 6970 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 4009879772, }, - ["UniqueMutatedVaalLocalArmourAndEnergyShield"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "mutatedunique_vaal", "defences" }, tradeHash = 3321629045, }, - ["UniqueMutatedVaalGoldFoundIncrease1"] = { affix = "", "(5-10)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6476 }, level = 1, group = "GoldFoundIncrease", weightKey = { }, weightVal = { }, modTags = { "drop", "mutatedunique_vaal" }, tradeHash = 3175163625, }, - ["UniqueMutatedVaalLightRadiusModifiersApplyToAreaOfEffect"] = { affix = "", "Increases and Reductions to Light Radius also apply to Area of Effect at (25-50)% of their value", statOrder = { 2168 }, level = 1, group = "LightRadiusModifiersApplyToAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1138742368, }, - ["UniqueMutatedVaalProjectileForkChanceIfMeleeRecently"] = { affix = "", "Projectiles have (50-75)% chance to Fork if you've dealt a Melee Hit in the past eight seconds", statOrder = { 8991 }, level = 1, group = "ProjectileForkChanceIfMeleeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2189073790, }, - ["UniqueMutatedVaalIncreasedWeaponElementalDamagePercent"] = { affix = "", "(100-150)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "attack" }, tradeHash = 387439868, }, - ["UniqueMutatedVaalLocalBaseCriticalStrikeChance"] = { affix = "", "+(2-4)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "critical" }, tradeHash = 518292764, }, - ["UniqueMutatedVaalTreatResistsAsInvertedChance"] = { affix = "", "Hits have (15-30)% chance to treat Enemy Monster Elemental Resistance values as inverted", statOrder = { 9705 }, level = 1, group = "TreatResistsAsInvertedChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3593401321, }, - ["UniqueMutatedVaalAtziriSplendourArmour1"] = { affix = "", "+(100-200) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "mutatedunique_vaal", "defences" }, tradeHash = 3484657501, }, - ["UniqueMutatedVaalAtziriSplendourEvasion1"] = { affix = "", "+(100-200) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "mutatedunique_vaal", "defences" }, tradeHash = 53045048, }, - ["UniqueMutatedVaalAtziriSplendourEnergyShield1"] = { affix = "", "+(100-200) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHash = 4052037485, }, - ["UniqueMutatedVaalLocalSoulCoreEffect"] = { affix = "", "(10-20)% increased effect of Socketed Soul Cores", statOrder = { 7352 }, level = 1, group = "LocalSoulCoreEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 4065505214, }, - ["UniqueMutatedVaalSkillCostEfficiency2"] = { affix = "", "(10-20)% increased Cost Efficiency", statOrder = { 4604 }, level = 1, group = "SkillCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 263495202, }, - ["UniqueMutatedVaalIgniteEffect1"] = { affix = "", "(20-40)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3791899485, }, - ["UniqueMutatedVaalChillEffect"] = { affix = "", "(20-40)% increased Magnitude of Chill you inflict", statOrder = { 5269 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "cold", "ailment" }, tradeHash = 828179689, }, - ["UniqueMutatedVaalFreezeDuration"] = { affix = "", "(10-20)% increased Freeze Duration on Enemies", statOrder = { 1541 }, level = 1, group = "FreezeDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1073942215, }, - ["UniqueMutatedVaalShockEffect"] = { affix = "", "(20-40)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "lightning", "ailment" }, tradeHash = 2527686725, }, - ["UniqueMutatedVaalCurseEffectiveness"] = { affix = "", "(10-20)% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster", "curse" }, tradeHash = 2353576063, }, - ["UniqueMutatedVaalReflectElementalAilmentsToSelf"] = { affix = "", "Elemental Ailments other than Freeze you inflict are Reflected to you", statOrder = { 5847 }, level = 1, group = "ReflectElementalAilmentsToSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1370804479, }, - ["UniqueMutatedVaalZealotsOath"] = { affix = "", "Life Regeneration is applied to Energy Shield instead", statOrder = { 9143 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "mutatedunique_vaal", "life", "defences" }, tradeHash = 632761194, }, - ["UniqueMutatedVaalEnergyShieldRecoveryRate"] = { affix = "", "(10-15)% increased Energy Shield Recovery rate", statOrder = { 1370 }, level = 1, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHash = 988575597, }, - ["UniqueMutatedVaalMaximumManaIncreasePercent"] = { affix = "", "(10-20)% increased maximum Mana", statOrder = { 872 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHash = 2748665614, }, - ["UniqueMutatedVaalManaLeechPermyriad"] = { affix = "", "Leech (4-6)% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana", "physical", "attack" }, tradeHash = 707457662, }, - ["UniqueMutatedVaalEnergyOnFullMana"] = { affix = "", "Meta Skills gain 25% increased Energy while on Full Mana", statOrder = { 5990 }, level = 1, group = "EnergyOnFullMana", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 173471035, }, - ["UniqueMutatedVaalGainPowerChargesNotLostRecently"] = { affix = "", "Gain a Power Charge every Second if you haven't lost Power Charges Recently", statOrder = { 6409 }, level = 1, group = "GainPowerChargesNotLostRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1099200124, }, - ["UniqueMutatedVaalReducedShockEffectOnSelf"] = { affix = "", "(25-50)% reduced effect of Shock on you", statOrder = { 9261 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "lightning", "ailment" }, tradeHash = 3801067695, }, - ["UniqueMutatedVaalManaGainedOnPowerChargeConsumption"] = { affix = "", "Recover (2-5)% of maximum Mana when you consume a Power Charge", statOrder = { 9123 }, level = 1, group = "ManaGainedOnPowerChargeConsumption", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 346374719, }, - ["UniqueMutatedVaalArcaneSurgeEffect"] = { affix = "", "(20-40)% increased effect of Arcane Surge on you", statOrder = { 2891 }, level = 1, group = "ArcaneSurgeEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2103650854, }, - ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8332 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "mutatedunique_vaal", "life", "defences" }, tradeHash = 2458962764, }, - ["UniqueMutatedVaalLocalEvasionRating1"] = { affix = "", "+(150-200) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "mutatedunique_vaal", "defences" }, tradeHash = 53045048, }, - ["UniqueMutatedVaalIncreasedAttackSpeed1"] = { affix = "", "(6-12)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "speed" }, tradeHash = 681332047, }, - ["UniqueMutatedVaalTotemDamagePerCurseOnSelf"] = { affix = "", "(10-20)% increased Totem Damage per Curse on you", statOrder = { 9673 }, level = 1, group = "TotemDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2639983772, }, - ["UniqueMutatedVaalBaseSpirit1"] = { affix = "", "+(40-50) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3981240776, }, - ["UniqueMutatedVaalPresenceRadius2"] = { affix = "", "(25-50)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 101878827, }, - ["UniqueMutatedVaalGlobalIncreaseMinionSpellSkillGemLevel"] = { affix = "", "+(1-2) to Level of all Minion Skills", statOrder = { 931 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "minion", "gem" }, tradeHash = 2162097452, }, - ["UniqueMutatedVaalBurningEnemiesExplodeChance"] = { affix = "", "Burning Enemies you kill have a (5-10)% chance to Explode, dealing a", "tenth of their maximum Life as Fire Damage", statOrder = { 6095, 6095.1 }, level = 1, group = "BurningEnemiesExplodeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1617268696, }, - ["UniqueMutatedVaalGlobalFireGemLevel"] = { affix = "", "+1 to Level of all Fire Skills", statOrder = { 6165 }, level = 1, group = "GlobalFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "fire", "gem" }, tradeHash = 599749213, }, - ["UniqueMutatedVaalLifeRegenerationRatePercentageWhileIgnited"] = { affix = "", "Regenerate 3% of maximum Life per second while Ignited", statOrder = { 7021 }, level = 1, group = "LifeRegenerationRatePercentageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 302024054, }, - ["UniqueMutatedVaalEvasionOnLowLife"] = { affix = "", "+(100-150) to Evasion Rating while on Low Life", statOrder = { 1361 }, level = 1, group = "EvasionOnLowLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "mutatedunique_vaal", "defences" }, tradeHash = 3470876581, }, - ["UniqueMutatedVaalLifeRegenerationOnLowLife"] = { affix = "", "Regenerate (2-3)% of maximum Life per second while on Low Life", statOrder = { 1618 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 3942946753, }, - ["UniqueMutatedVaalGlobalChanceToBlindOnHit"] = { affix = "", "(5-10)% Global chance to Blind Enemies on Hit", statOrder = { 2592 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2221570601, }, - ["UniqueMutatedVaalPoisonEffectOnNonPoisoned"] = { affix = "", "(30-60)% increased Effect of Poison you inflict on targets that are not Poisoned", statOrder = { 8923 }, level = 1, group = "PoisonEffectOnNonPoisoned", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1864159246, }, - ["UniqueMutatedVaalGlobalChaosGemLevel"] = { affix = "", "+1 to Level of all Chaos Skills", statOrder = { 5223 }, level = 1, group = "GlobalChaosGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "chaos", "gem" }, tradeHash = 67169579, }, - ["UniqueMutatedVaalMaximumLifeIncreasePercent2"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 870 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 983749596, }, - ["UniqueMutatedVaalDamageRemovedFromManaBeforeLifeWhileNotLowMana"] = { affix = "", "25% of Damage is taken from Mana before Life while not on Low Mana", statOrder = { 4543 }, level = 1, group = "DamageRemovedFromManaBeforeLifeWhileNotLowMana", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 679019978, }, - ["UniqueMutatedVaalDamageTakenGoesToLifeManaESPercent"] = { affix = "", "(5-10)% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 5646 }, level = 1, group = "DamageTakenGoesToLifeManaESPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2319832234, }, - ["UniqueMutatedVaalVolatilityDamageTakenAsColdPercent"] = { affix = "", "(50-100)% of Volatility Physical Damage Taken as Cold Damage", statOrder = { 9861 }, level = 1, group = "VolatilityDamageTakenAsColdPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3190121041, }, - ["UniqueMutatedVaalIceCrystalMaximumLife"] = { affix = "", "(40-60)% increased Ice Crystal Life", statOrder = { 6792 }, level = 1, group = "IceCrystalMaximumLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3274422940, }, - ["UniqueMutatedVaalEnergyShieldRechargeRatePer4Strength"] = { affix = "", "1% increased Energy Shield Recharge Rate per 4 Strength", statOrder = { 6017 }, level = 1, group = "EnergyShieldRechargeRatePer4Strength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2408276841, }, - ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield1"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8332 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "mutatedunique_vaal", "life", "defences" }, tradeHash = 2458962764, }, - ["UniqueMutatedVaalLocalEnergyShield2"] = { affix = "", "+(70-100) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHash = 4052037485, }, - ["UniqueMutatedVaalPercentOfLeechIsInstant"] = { affix = "", "(20-40)% of Leech is Instant", statOrder = { 6962 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3561837752, }, - ["UniqueMutatedVaalPoisonDurationIfConsumedFrenzyChargeRecently"] = { affix = "", "(30-40)% increased Duration of Poisons you inflict when you've consumed a Frenzy Charge Recently", statOrder = { 8919 }, level = 1, group = "PoisonDurationIfConsumedFrenzyChargeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3841138199, }, - ["UniqueMutatedVaalReducedPoisonDuration"] = { affix = "", "(40-60)% reduced Poison Duration on you", statOrder = { 1000 }, level = 1, group = "ReducedPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique_vaal", "chaos", "ailment" }, tradeHash = 3301100256, }, - ["UniqueMutatedVaalChanceToGainAdditionalPowerCharge"] = { affix = "", "10% chance when you gain a Power Charge to gain an additional Power Charge", statOrder = { 5145 }, level = 1, group = "ChanceToGainAdditionalPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3537994888, }, - ["UniqueMutatedVaalCriticalStrikeMultiplierIfConsumedPowerChargeRecently"] = { affix = "", "(-60-60)% reduced Critical Damage Bonus if you've consumed a Power Charge Recently", statOrder = { 5421 }, level = 1, group = "CriticalStrikeMultiplierIfConsumedPowerChargeRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 23669307, }, - ["UniqueMutatedVaalIncreasedPowerChargeDuration"] = { affix = "", "(-60-60)% reduced Power Charge Duration", statOrder = { 1806 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique_vaal" }, tradeHash = 3872306017, }, - ["UniqueMutatedVaalPoisonEffectWhilePoisoned"] = { affix = "", "(30-40)% increased Magnitude of Poison you inflict while Poisoned", statOrder = { 4600 }, level = 1, group = "PoisonEffectWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 120969026, }, - ["UniqueMutatedVaalChaosResistance1"] = { affix = "", "+(16-26)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "chaos", "resistance" }, tradeHash = 2923486259, }, - ["UniqueMutatedVaalGlobalFireGemLevel1"] = { affix = "", "+(2-4) to Level of all Fire Skills", statOrder = { 6165 }, level = 1, group = "GlobalFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental", "fire", "gem" }, tradeHash = 599749213, }, - ["UniqueMutatedVaalElementalExposureEffectOnHitWithMagnitude"] = { affix = "", "Inflict Elemental Exposure on Hit, lowering Total Elemental Resistances by (20-30)%", statOrder = { 4164 }, level = 1, group = "ElementalExposureEffectOnHitWithMagnitude", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 533542952, }, - ["UniqueMutatedVaalChargeChanceToNotConsume"] = { affix = "", "Skills have (10-15)% chance to not remove Charges but still count as consuming them", statOrder = { 5225 }, level = 1, group = "ChargeChanceToNotConsume", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2942439603, }, - ["UniqueMutatedVaalIncreasedChaosDamage"] = { affix = "", "(60-80)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique_vaal", "damage", "chaos" }, tradeHash = 736967255, }, - ["UniqueMutatedVaalDeflectDamageTaken"] = { affix = "", "+(-5-5)% to amount of Damage Prevented by Deflection", statOrder = { 4541 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3552135623, }, - ["UniqueMutatedVaalAttackDamageWhileSurrounded"] = { affix = "", "(-40-40)% reduced Attack Damage while Surrounded", statOrder = { 4388 }, level = 1, group = "AttackDamageWhileSurrounded", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2879725899, }, - ["UniqueMutatedVaalElementalPenetrationBelowZero"] = { affix = "", "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", statOrder = { 5889 }, level = 1, group = "ElementalPenetrationBelowZero", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "elemental" }, tradeHash = 2890792988, }, - ["UniqueMutatedVaalLocalPhysicalDamageReductionRating3"] = { affix = "", "+(260-400) to Armour", statOrder = { 831 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "armour", "mutatedunique_vaal", "defences" }, tradeHash = 3484657501, }, - ["UniqueMutatedVaalLightningResistancePenetration"] = { affix = "", "Damage Penetrates (10-20)% Lightning Resistance", statOrder = { 2615 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "lightning" }, tradeHash = 818778753, }, - ["UniqueMutatedVaalSurroundedAreaOfEffect1"] = { affix = "", "(20-60)% increased Surrounded Area of Effect", statOrder = { 9601 }, level = 1, group = "SurroundedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 909236563, }, - ["UniqueMutatedVaalCorruptedRareJewelModEffect"] = { affix = "", "(0-75)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Rare Jewels", statOrder = { 7423, 7423.1 }, level = 1, group = "CorruptedRareJewelModEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3128077011, }, - ["UniqueMutatedVaalIncreasedArmourForJewel"] = { affix = "", "(-30-30)% reduced Armour", statOrder = { 864 }, level = 1, group = "IncreasedArmourForJewel", weightKey = { }, weightVal = { }, modTags = { "armour", "mutatedunique_vaal", "defences" }, tradeHash = 2866361420, }, - ["UniqueMutatedVaalIncreasedEvasionForJewel"] = { affix = "", "(-30-30)% reduced Evasion Rating", statOrder = { 866 }, level = 1, group = "IncreasedEvasionForJewel", weightKey = { }, weightVal = { }, modTags = { "evasion", "mutatedunique_vaal", "defences" }, tradeHash = 2106365538, }, - ["UniqueMutatedVaalIncreasedEnergyShieldForJewel"] = { affix = "", "+(-30-30) to maximum Energy Shield", statOrder = { 867 }, level = 1, group = "IncreasedEnergyShieldForJewel", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHash = 3489782002, }, - ["UniqueMutatedVaalFireDamagePercentage1"] = { affix = "", "(-30-30)% reduced Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire" }, tradeHash = 3962278098, }, - ["UniqueMutatedVaalColdDamagePercentage1"] = { affix = "", "(-30-30)% reduced Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "cold" }, tradeHash = 3291658075, }, - ["UniqueMutatedVaalLightningDamagePercentage1"] = { affix = "", "(-30-30)% reduced Lightning Damage", statOrder = { 857 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "lightning" }, tradeHash = 2231156303, }, - ["UniqueMutatedVaalIncreasedChaosDamage1"] = { affix = "", "(-30-30)% reduced Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique_vaal", "damage", "chaos" }, tradeHash = 736967255, }, - ["UniqueMutatedVaalMinionDamage"] = { affix = "", "Minions deal (-30-30)% reduced Damage", statOrder = { 1646 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage", "minion" }, tradeHash = 1589917703, }, - ["UniqueMutatedVaalSpellAilmentEffectPerLife"] = { affix = "", "Non-Channelling Spells have 3% increased Magnitude of Ailments per 100 maximum Life", statOrder = { 9387 }, level = 1, group = "SpellAilmentEffectPerLifeNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 4245905059, }, - ["UniqueMutatedVaalSpellCriticalChancePerMana"] = { affix = "", "Non-Channelling Spells have 3% increased Critical Hit Chance per 100 maximum Mana", statOrder = { 9392 }, level = 1, group = "SpellCriticalChancePerManaNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1367999357, }, - ["UniqueMutatedVaalSpellDamagePerMana"] = { affix = "", "Non-Channelling Spells deal 6% increased Damage per 100 maximum Mana", statOrder = { 9403 }, level = 1, group = "SpellDamagePerManaNonChannelling", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3843734793, }, - ["UniqueMutatedVaalAdditionalArrowPierce"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1476 }, level = 1, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack" }, tradeHash = 3423006863, }, - ["UniqueMutatedVaalLifeCostEfficiency2"] = { affix = "", "(20-40)% increased Life Cost Efficiency", statOrder = { 4572 }, level = 1, group = "LifeCostEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 310945763, }, - ["UniqueMutatedVaalMaximumLifeConvertedToEnergyShield2"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 8332 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "mutatedunique_vaal", "life", "defences" }, tradeHash = 2458962764, }, - ["UniqueMutatedVaalSpellDamageLifeLeech"] = { affix = "", "5% of Spell Damage Leeched as Life", statOrder = { 4575 }, level = 1, group = "SpellDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 782941180, }, - ["UniqueMutatedVaalGlancingBlows"] = { affix = "", "Glancing Blows", statOrder = { 10053 }, level = 1, group = "GlancingBlows", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique_vaal" }, tradeHash = 4266776872, }, - ["UniqueMutatedVaalGlobalDeflectionRatingWhileMoving"] = { affix = "", "(15-25)% increased Deflection Rating while moving", statOrder = { 5722 }, level = 1, group = "GlobalDeflectionRatingWhileMoving", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 1382805233, }, - ["UniqueMutatedVaalLocalEvasionRating2"] = { affix = "", "+(70-100) to Evasion Rating", statOrder = { 832 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "mutatedunique_vaal", "defences" }, tradeHash = 53045048, }, - ["UniqueMutatedVaalRandomKeystoneFromTable"] = { affix = "", "(1-33)", statOrder = { 10021 }, level = 1, group = "UniqueVivisectionRandomKeystoneMutated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 37406516, }, - ["UniqueMutatedVaalVivisectionPriceLife"] = { affix = "", "(10-20)% less maximum Life", statOrder = { 9847 }, level = 1, group = "UniqueVivisectionPriceLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHash = 1633735772, }, - ["UniqueMutatedVaalVivisectionPriceMana"] = { affix = "", "(10-20)% less maximum Mana", statOrder = { 9848 }, level = 1, group = "UniqueVivisectionPriceMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "mana" }, tradeHash = 3045154261, }, - ["UniqueMutatedVaalVivisectionPriceDefences"] = { affix = "", "(10-20)% less Defences", statOrder = { 9846 }, level = 1, group = "UniqueVivisectionPriceDefences", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "defences" }, tradeHash = 1868522266, }, - ["UniqueMutatedVaalVivisectionPriceSpirit"] = { affix = "", "(10-20)% less Spirit", statOrder = { 9850 }, level = 1, group = "UniqueVivisectionPriceSpirit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 537850431, }, - ["UniqueMutatedVaalVivisectionPriceMovementSpeed"] = { affix = "", "(10-20)% less Movement Speed", statOrder = { 9849 }, level = 1, group = "UniqueVivisectionPriceMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "speed" }, tradeHash = 2146799605, }, - ["UniqueMutatedVaalVivisectionPriceDamage"] = { affix = "", "(10-20)% less Damage", statOrder = { 9845 }, level = 1, group = "UniqueVivisectionPriceDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "damage" }, tradeHash = 1274947822, }, - ["UniqueMutatedVaalDamageAsExtraFire"] = { affix = "", "Gain (25-40)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageasExtraFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique_vaal", "damage", "elemental", "fire" }, tradeHash = 3015669065, }, - ["UniqueMutatedVaalLocalPhysicalDamage"] = { affix = "", "Adds (65-73) to (83-91) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHash = 1940865751, }, - ["UniqueMutatedVaalLocalCriticalStrikeChance"] = { affix = "", "+(3-5)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "critical" }, tradeHash = 518292764, }, - ["UniqueMutatedVaalSpellChanceToFireTwoAdditionalProjectiles1"] = { affix = "", "(10-25)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9431 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster" }, tradeHash = 2910761524, }, - ["UniqueMutatedVaalLocalPhysicalDamagePercent"] = { affix = "", "(300-400)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHash = 1805374733, }, - ["UniqueMutatedVaalFireExposureOnHit"] = { affix = "", "(30-50)% chance to inflict Exposure on Hit", statOrder = { 4569 }, level = 1, group = "FireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 3602667353, }, - ["UniqueMutatedVaalCullingStrikeLocalVsBleeding"] = { affix = "", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrder = { 7188 }, level = 1, group = "CullingStrikeLocalVsBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHash = 2558253923, }, - ["UniqueMutatedVaalLocalIncreasedEvasionAndEnergyShield"] = { affix = "", "(150-300)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "mutatedunique_vaal", "defences" }, tradeHash = 1999113824, }, - ["UniqueMutatedVaalLocalEnergyShield3"] = { affix = "", "+(50-80) to maximum Energy Shield", statOrder = { 833 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "mutatedunique_vaal", "defences" }, tradeHash = 4052037485, }, - ["UniqueMutatedVaalPhysicalDamagePercent"] = { affix = "", "(-30-30)% reduced Global Physical Damage", statOrder = { 1122 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical" }, tradeHash = 1310194496, }, - ["CorruptionUpgradeLocalIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(75-125)% increased Armour", statOrder = { 834 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "upgraded_corruption_mod", "defences" }, tradeHash = 1062208444, }, - ["CorruptionUpgradeLocalIncreasedEvasionRatingPercent1"] = { affix = "", "(75-125)% increased Evasion Rating", statOrder = { 835 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "upgraded_corruption_mod", "defences" }, tradeHash = 124859000, }, - ["CorruptionUpgradeLocalIncreasedEnergyShieldPercent1"] = { affix = "", "(75-125)% increased Energy Shield", statOrder = { 836 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "upgraded_corruption_mod", "defences" }, tradeHash = 4015621042, }, - ["CorruptionUpgradeLocalIncreasedArmourAndEvasion1"] = { affix = "", "(75-125)% increased Armour and Evasion", statOrder = { 837 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "evasion", "upgraded_corruption_mod", "defences" }, tradeHash = 2451402625, }, - ["CorruptionUpgradeLocalIncreasedArmourAndEnergyShield1"] = { affix = "", "(75-125)% increased Armour and Energy Shield", statOrder = { 838 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "energy_shield", "upgraded_corruption_mod", "defences" }, tradeHash = 3321629045, }, - ["CorruptionUpgradeLocalIncreasedEvasionAndEnergyShield1"] = { affix = "", "(75-125)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "evasion", "upgraded_corruption_mod", "defences" }, tradeHash = 1999113824, }, - ["CorruptionUpgradeReducedLocalAttributeRequirements1"] = { affix = "", "(30-50)% reduced Attribute Requirements", statOrder = { 921 }, level = 1, group = "LocalAttributeRequirements", weightKey = { "armour", "weapon", "wand", "staff", "sceptre", "default", }, weightVal = { 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 3639275092, }, - ["CorruptionUpgradeAdditionalPhysicalDamageReduction1"] = { affix = "", "(6-9)% additional Physical Damage Reduction", statOrder = { 951 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "physical" }, tradeHash = 3771516363, }, - ["CorruptionUpgradeDamageTakenGainedAsLife1"] = { affix = "", "(20-40)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHash = 1444556985, }, - ["CorruptionUpgradeDamageTakenGainedAsMana1"] = { affix = "", "(20-40)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life", "mana" }, tradeHash = 472520716, }, - ["CorruptionUpgradeLifeLeech1"] = { affix = "", "Leech 9% of Physical Attack Damage as Life", statOrder = { 971 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life", "physical", "attack" }, tradeHash = 2557965901, }, - ["CorruptionUpgradeManaLeech1"] = { affix = "", "Leech 6% of Physical Attack Damage as Mana", statOrder = { 979 }, level = 1, group = "ManaLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana", "physical", "attack" }, tradeHash = 707457662, }, - ["CorruptionUpgradeMaximumElementalResistance1"] = { affix = "", "+2% to all Maximum Elemental Resistances", statOrder = { 952 }, level = 1, group = "MaximumElementalResistance", weightKey = { "body_armour", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "resistance" }, tradeHash = 1978899297, }, - ["CorruptionUpgradeIncreasedLife1"] = { affix = "", "+(120-160) to maximum Life", statOrder = { 869 }, level = 1, group = "IncreasedLife", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHash = 3299347043, }, - ["CorruptionUpgradeIncreasedMana1"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 871 }, level = 1, group = "IncreasedMana", weightKey = { "focus", "quiver", "ring", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHash = 1050105434, }, - ["CorruptionUpgradeIncreasedPhysicalDamageReductionRatingPercent1"] = { affix = "", "(50-75)% increased Armour", statOrder = { 864 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "upgraded_corruption_mod", "defences" }, tradeHash = 2866361420, }, - ["CorruptionUpgradeIncreasedEvasionRatingPercent1"] = { affix = "", "(50-75)% increased Evasion Rating", statOrder = { 866 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "upgraded_corruption_mod", "defences" }, tradeHash = 2106365538, }, - ["CorruptionUpgradeIncreasedEnergyShieldPercent1"] = { affix = "", "(50-75)% increased maximum Energy Shield", statOrder = { 868 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "upgraded_corruption_mod", "defences" }, tradeHash = 2482852589, }, - ["CorruptionUpgradeThornsDamageIncrease1"] = { affix = "", "(120-200)% increased Thorns damage", statOrder = { 9646 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHash = 1315743832, }, - ["CorruptionUpgradeChaosResistance1"] = { affix = "", "+(30-49)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { "body_armour", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "chaos", "resistance" }, tradeHash = 2923486259, }, - ["CorruptionUpgradeFireResistance1"] = { affix = "", "+(50-75)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["CorruptionUpgradeColdResistance1"] = { affix = "", "+(50-75)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["CorruptionUpgradeLightningResistance1"] = { affix = "", "+(50-75)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { "boots", "belt", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["CorruptionUpgradeMaximumFireResistance1"] = { affix = "", "+(3-5)% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "resistance" }, tradeHash = 4095671657, }, - ["CorruptionUpgradeMaximumColdResistance1"] = { affix = "", "+(3-5)% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "resistance" }, tradeHash = 3676141501, }, - ["CorruptionUpgradeMaximumLightningResistance1"] = { affix = "", "+(3-5)% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "resistance" }, tradeHash = 1011760251, }, - ["CorruptionUpgradeIncreasedSpirit1"] = { affix = "", "+(40-60) to Spirit", statOrder = { 874 }, level = 1, group = "BaseSpirit", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 3981240776, }, - ["CorruptionUpgradeFirePenetration1"] = { affix = "", "Damage Penetrates (25-40)% Fire Resistance", statOrder = { 2613 }, level = 1, group = "FireResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire" }, tradeHash = 2653955271, }, - ["CorruptionUpgradeColdPenetration1"] = { affix = "", "Damage Penetrates (25-40)% Cold Resistance", statOrder = { 2614 }, level = 1, group = "ColdResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold" }, tradeHash = 3417711605, }, - ["CorruptionUpgradeLightningPenetration1"] = { affix = "", "Damage Penetrates (25-40)% Lightning Resistance", statOrder = { 2615 }, level = 1, group = "LightningResistancePenetration", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning" }, tradeHash = 818778753, }, - ["CorruptionUpgradeArmourBreak1"] = { affix = "", "Break (25-40)% increased Armour", statOrder = { 4283 }, level = 1, group = "ArmourBreak", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 1776411443, }, - ["CorruptionUpgradeGoldFoundIncrease1"] = { affix = "", "(15-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6476 }, level = 1, group = "GoldFoundIncrease", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "drop", "upgraded_corruption_mod" }, tradeHash = 3175163625, }, - ["CorruptionUpgradeMaximumEnduranceCharges1"] = { affix = "", "+(2-3) to Maximum Endurance Charges", statOrder = { 1486 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "endurance_charge", "upgraded_corruption_mod" }, tradeHash = 1515657623, }, - ["CorruptionUpgradeMaximumFrenzyCharges1"] = { affix = "", "+(2-3) to Maximum Frenzy Charges", statOrder = { 1491 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "frenzy_charge", "upgraded_corruption_mod" }, tradeHash = 4078695, }, - ["CorruptionUpgradeMaximumPowerCharges1"] = { affix = "", "+(2-3) to Maximum Power Charges", statOrder = { 1496 }, level = 1, group = "MaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "power_charge", "upgraded_corruption_mod" }, tradeHash = 227523295, }, - ["CorruptionUpgradeIncreasedAccuracy1"] = { affix = "", "+(150-300) to Accuracy Rating", statOrder = { 862 }, level = 1, group = "IncreasedAccuracy", weightKey = { "helmet", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHash = 803737631, }, - ["CorruptionUpgradeMovementVelocity1"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "speed" }, tradeHash = 2250533757, }, - ["CorruptionUpgradeIncreasedStunThreshold1"] = { affix = "", "(50-75)% increased Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 680068163, }, - ["CorruptionUpgradeIncreasedFreezeThreshold1"] = { affix = "", "(50-75)% increased Freeze Threshold", statOrder = { 2879 }, level = 1, group = "FreezeThreshold", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHash = 3780644166, }, - ["CorruptionUpgradeSlowPotency1"] = { affix = "", "(30-40)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { "boots", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 924253255, }, - ["CorruptionUpgradeLifeRegenerationRate1"] = { affix = "", "(35-50)% increased Life Regeneration rate", statOrder = { 969 }, level = 1, group = "LifeRegenerationRate", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHash = 44972811, }, - ["CorruptionUpgradeManaRegeneration1"] = { affix = "", "(35-50)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "helmet", "ring", "default", }, weightVal = { 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHash = 789117908, }, - ["CorruptionUpgradeLocalBlockChance1"] = { affix = "", "(15-25)% increased Block chance", statOrder = { 830 }, level = 1, group = "LocalIncreasedBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "upgraded_corruption_mod" }, tradeHash = 2481353198, }, - ["CorruptionUpgradeMaximumBlockChance1"] = { affix = "", "+(4-6)% to maximum Block chance", statOrder = { 1659 }, level = 1, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "upgraded_corruption_mod" }, tradeHash = 480796730, }, - ["CorruptionUpgradeGainLifeOnBlock1"] = { affix = "", "(40-55) Life gained when you Block", statOrder = { 1445 }, level = 1, group = "GainLifeOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "upgraded_corruption_mod", "life" }, tradeHash = 762600725, }, - ["CorruptionUpgradeGainManaOnBlock1"] = { affix = "", "(20-30) Mana gained when you Block", statOrder = { 1446 }, level = 1, group = "GainManaOnBlock", weightKey = { "shield", "default", }, weightVal = { 1, 0 }, modTags = { "block", "resource", "upgraded_corruption_mod", "mana" }, tradeHash = 2122183138, }, - ["CorruptionUpgradeAllResistances1"] = { affix = "", "+(15-35)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "cold", "lightning", "resistance" }, tradeHash = 2901986750, }, - ["CorruptionUpgradeGlobalFireSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Fire Spell Skills", statOrder = { 924 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, }, - ["CorruptionUpgradeGlobalColdSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Cold Spell Skills", statOrder = { 925 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, }, - ["CorruptionUpgradeGlobalLightningSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, }, - ["CorruptionUpgradeGlobalChaosSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Chaos Spell Skills", statOrder = { 927 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "chaos", "caster", "gem" }, tradeHash = 4226189338, }, - ["CorruptionUpgradeGlobalPhysicalSpellGemsLevel1"] = { affix = "", "+(2-3) to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "physical", "caster", "gem" }, tradeHash = 1600707273, }, - ["CorruptionUpgradeGlobalMinionSkillGemsLevel1"] = { affix = "", "+(2-3) to Level of all Minion Skills", statOrder = { 931 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "minion", "gem" }, tradeHash = 2162097452, }, - ["CorruptionUpgradeGlobalMeleeSkillGemsLevel1"] = { affix = "", "+(2-3) to Level of all Melee Skills", statOrder = { 928 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { "gloves", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHash = 9187492, }, - ["CorruptionUpgradeItemFoundRarityIncrease1"] = { affix = "", "(25-35)% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1, 1, 0 }, modTags = { "drop", "upgraded_corruption_mod" }, tradeHash = 3917489142, }, - ["CorruptionUpgradeAllDamage1"] = { affix = "", "(50-75)% increased Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHash = 2154246560, }, - ["CorruptionUpgradeIncreasedSkillSpeed1"] = { affix = "", "(8-16)% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "speed" }, tradeHash = 970213192, }, - ["CorruptionUpgradeCriticalStrikeMultiplier1"] = { affix = "", "(35-60)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "ring", "quiver", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "damage", "critical" }, tradeHash = 3556824919, }, - ["CorruptionUpgradeGlobalSkillGemLevel1"] = { affix = "", "+(2-3) to Level of all Skills", statOrder = { 4166 }, level = 1, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "gem" }, tradeHash = 4283407333, }, - ["CorruptionUpgradeStrength1"] = { affix = "", "+(35-50) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHash = 4080418644, }, - ["CorruptionUpgradeDexterity1"] = { affix = "", "+(35-50) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHash = 3261801346, }, - ["CorruptionUpgradeIntelligence1"] = { affix = "", "+(35-50) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { "belt", "ring", "amulet", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHash = 328541901, }, - ["CorruptionUpgradeLifeFlaskChargeGeneration1"] = { affix = "", "Life Flasks gain (0.33-0.58) charges per Second", statOrder = { 6451 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 1102738251, }, - ["CorruptionUpgradeManaFlaskChargeGeneration1"] = { affix = "", "Mana Flasks gain (0.33-0.58) charges per Second", statOrder = { 6452 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 2200293569, }, - ["CorruptionUpgradeCharmChargeGeneration1"] = { affix = "", "Charms gain (0.33-0.58) charges per Second", statOrder = { 6448 }, level = 1, group = "CharmChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 185580205, }, - ["CorruptionUpgradeLocalIncreasedPhysicalDamagePercent1"] = { affix = "", "(50-75)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "upgraded_corruption_mod", "damage", "physical", "attack" }, tradeHash = 1805374733, }, - ["CorruptionUpgradeSpellDamageOnWeapon1"] = { affix = "", "(60-90)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "wand", "focus", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "upgraded_corruption_mod", "damage", "caster" }, tradeHash = 2974417149, }, - ["CorruptionUpgradeSpellDamageOnTwoHandWeapon1"] = { affix = "", "(120-240)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "upgraded_corruption_mod", "damage", "caster" }, tradeHash = 2974417149, }, - ["CorruptionUpgradeLocalIncreasedSpiritPercent1"] = { affix = "", "(35-60)% increased Spirit", statOrder = { 842 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 3984865854, }, - ["CorruptionUpgradeLocalAddedFireDamage1"] = { affix = "", "Adds (30-44) to (55-72) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, }, - ["CorruptionUpgradeLocalAddedFireDamageTwoHand1"] = { affix = "", "Adds (73-80) to (91-101) Fire Damage", statOrder = { 823 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire", "attack" }, tradeHash = 709508406, }, - ["CorruptionUpgradeLocalAddedColdDamage1"] = { affix = "", "Adds (28-42) to (53-69) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, }, - ["CorruptionUpgradeLocalAddedColdDamageTwoHand1"] = { affix = "", "Adds (51-57) to (88-96) Cold Damage", statOrder = { 824 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold", "attack" }, tradeHash = 1037193709, }, - ["CorruptionUpgradeLocalAddedLightningDamage1"] = { affix = "", "Adds (1-2) to (79-103) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, - ["CorruptionUpgradeLocalAddedLightningDamageTwoHand1"] = { affix = "", "Adds (1-3) to (131-141) Lightning Damage", statOrder = { 825 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning", "attack" }, tradeHash = 3336890334, }, - ["CorruptionUpgradeLocalAddedChaosDamage1"] = { affix = "", "Adds (27-31) to (42-48) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, - ["CorruptionUpgradeLocalAddedChaosDamageTwoHand1"] = { affix = "", "Adds (40-46) to (67-75) Chaos damage", statOrder = { 1227 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos", "attack" }, tradeHash = 2223678961, }, - ["CorruptionUpgradeLocalIncreasedAttackSpeed1"] = { affix = "", "(14-18)% increased Attack Speed", statOrder = { 919 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack", "speed" }, tradeHash = 210067635, }, - ["CorruptionUpgradeLocalCriticalStrikeMultiplier1"] = { affix = "", "+(15-25)% to Critical Damage Bonus", statOrder = { 918 }, level = 1, group = "LocalCriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "damage", "attack", "critical" }, tradeHash = 2694482655, }, - ["CorruptionUpgradeLocalStunDamageIncrease1"] = { affix = "", "Causes (40-60)% increased Stun Buildup", statOrder = { 985 }, level = 1, group = "LocalStunDamageIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 791928121, }, - ["CorruptionUpgradeLocalWeaponRangeIncrease1"] = { affix = "", "(20-40)% increased Melee Strike Range with this weapon", statOrder = { 7131 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHash = 548198834, }, - ["CorruptionUpgradeLocalChanceToBleed1"] = { affix = "", "(25-50)% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { "mace", "sword", "axe", "flail", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "bleed", "upgraded_corruption_mod", "physical", "attack", "ailment" }, tradeHash = 1519615863, }, - ["CorruptionUpgradeLocalChanceToPoison1"] = { affix = "", "(25-50)% chance to Poison on Hit with this weapon", statOrder = { 7334 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { "sword", "spear", "dagger", "warstaff", "default", }, weightVal = { 1, 1, 1, 1, 0 }, modTags = { "poison", "upgraded_corruption_mod", "chaos", "attack", "ailment" }, tradeHash = 3885634897, }, - ["CorruptionUpgradeLocalRageOnHit1"] = { affix = "", "Grants (4-6) Rage on Hit", statOrder = { 7239 }, level = 1, group = "LocalRageOnHit", weightKey = { "mace", "sword", "axe", "flail", "warstaff", "dagger", "spear", "default", }, weightVal = { 1, 1, 1, 1, 1, 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 1725749947, }, - ["CorruptionUpgradeLocalChanceToMaim1"] = { affix = "", "(25-50)% chance to Maim on Hit", statOrder = { 7320 }, level = 1, group = "LocalChanceToMaim", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHash = 2763429652, }, - ["CorruptionUpgradeLocalChanceToBlind1"] = { affix = "", "(25-50)% chance to Blind Enemies on hit", statOrder = { 1937 }, level = 1, group = "BlindingHit", weightKey = { "bow", "crossbow", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 2301191210, }, - ["CorruptionUpgradeWeaponElementalDamage1"] = { affix = "", "(60-90)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "attack" }, tradeHash = 387439868, }, - ["CorruptionUpgradeWeaponElementalDamageTwoHand1"] = { affix = "", "(140-200)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "attack" }, tradeHash = 387439868, }, - ["CorruptionUpgradeAdditionalArrows1"] = { affix = "", "Bow Attacks fire 2 additional Arrows", statOrder = { 945 }, level = 1, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHash = 3885405204, }, - ["CorruptionUpgradeAdditionalAmmo1"] = { affix = "", "Loads 2 additional bolts", statOrder = { 943 }, level = 1, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHash = 1039380318, }, - ["CorruptionUpgradeIgniteChanceIncrease1"] = { affix = "", "(50-75)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 2968503605, }, - ["CorruptionUpgradeFreezeDamageIncrease1"] = { affix = "", "(50-75)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 473429811, }, - ["CorruptionUpgradeShockChanceIncrease1"] = { affix = "", "(50-75)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 293638271, }, - ["CorruptionUpgradeSpellCriticalStrikeChance1"] = { affix = "", "(50-75)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "caster", "critical" }, tradeHash = 737908626, }, - ["CorruptionUpgradeLifeGainedFromEnemyDeath1"] = { affix = "", "Gain (40-55) Life per enemy killed", statOrder = { 975 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHash = 3695891184, }, - ["CorruptionUpgradeManaGainedFromEnemyDeath1"] = { affix = "", "Gain (20-30) Mana per enemy killed", statOrder = { 980 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "wand", "staff", "quiver", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHash = 1368271171, }, - ["CorruptionUpgradeIncreasedCastSpeed1"] = { affix = "", "(20-35)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod", "caster", "speed" }, tradeHash = 2891184298, }, - ["CorruptionUpgradeEnergyShieldDelay1"] = { affix = "", "(50-75)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { "focus", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "upgraded_corruption_mod", "defences" }, tradeHash = 1782086450, }, - ["CorruptionUpgradeAlliesInPresenceAllDamage1"] = { affix = "", "Allies in your Presence deal (50-75)% increased Damage", statOrder = { 881 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHash = 1798257884, }, - ["CorruptionUpgradeAlliesInPresenceIncreasedAttackSpeed1"] = { affix = "", "Allies in your Presence have (15-25)% increased Attack Speed", statOrder = { 893 }, level = 1, group = "AlliesInPresenceIncreasedAttackSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack", "speed" }, tradeHash = 1998951374, }, - ["CorruptionUpgradeAlliesInPresenceIncreasedCastSpeed1"] = { affix = "", "Allies in your Presence have (15-25)% increased Cast Speed", statOrder = { 894 }, level = 1, group = "AlliesInPresenceIncreasedCastSpeed", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "caster", "speed" }, tradeHash = 289128254, }, - ["CorruptionUpgradeAlliesInPresenceCriticalStrikeMultiplier1"] = { affix = "", "Allies in your Presence have (30-45)% increased Critical Damage Bonus", statOrder = { 892 }, level = 1, group = "AlliesInPresenceCriticalStrikeMultiplier", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "damage", "critical" }, tradeHash = 3057012405, }, - ["CorruptionUpgradeChanceToPierce1"] = { affix = "", "(50-75)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 1, group = "ChanceToPierce", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 2321178454, }, - ["CorruptionUpgradeChainFromTerrain1"] = { affix = "", "Projectiles have (25-50)% chance to Chain an additional time from terrain", statOrder = { 8970 }, level = 1, group = "ChainFromTerrain", weightKey = { "quiver", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHash = 4081947835, }, - ["CorruptionUpgradeJewelStrength1"] = { affix = "", "+(14-16) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHash = 4080418644, }, - ["CorruptionUpgradeJewelDexterity1"] = { affix = "", "+(14-16) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHash = 3261801346, }, - ["CorruptionUpgradeJewelIntelligence1"] = { affix = "", "+(14-16) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHash = 328541901, }, - ["CorruptionUpgradeJewelFireResist1"] = { affix = "", "+(15-20)% to Fire Resistance", statOrder = { 958 }, level = 1, group = "FireResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "resistance" }, tradeHash = 3372524247, }, - ["CorruptionUpgradeJewelColdResist1"] = { affix = "", "+(15-20)% to Cold Resistance", statOrder = { 959 }, level = 1, group = "ColdResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "resistance" }, tradeHash = 4220027924, }, - ["CorruptionUpgradeJewelLightningResist1"] = { affix = "", "+(15-20)% to Lightning Resistance", statOrder = { 960 }, level = 1, group = "LightningResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "resistance" }, tradeHash = 1671376347, }, - ["CorruptionUpgradeJewelChaosResist1"] = { affix = "", "+(10-13)% to Chaos Resistance", statOrder = { 961 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 1 }, modTags = { "upgraded_corruption_mod", "chaos", "resistance" }, tradeHash = 2923486259, }, - ["CorruptionUpgradeArmourAppliesToElementalDamage"] = { affix = "", "+(30-50)% of Armour also applies to Elemental Damage", statOrder = { 963 }, level = 1, group = "ArmourAppliesToElementalDamage", weightKey = { }, weightVal = { }, modTags = { "armour", "upgraded_corruption_mod", "defences", "elemental" }, tradeHash = 3362812763, }, - ["CorruptionUpgradeEvasionAppliesToDeflection"] = { affix = "", "Gain Deflection Rating equal to (30-50)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "upgraded_corruption_mod", "defences" }, tradeHash = 3033371881, }, - ["CorruptionUpgradeGlobalDeflectionRating"] = { affix = "", "(20-30)% increased Deflection Rating", statOrder = { 5721 }, level = 1, group = "GlobalDeflectionRating", weightKey = { }, weightVal = { }, modTags = { "evasion", "upgraded_corruption_mod", "defences" }, tradeHash = 3040571529, }, - ["CorruptionUpgradeDeflectDamageTaken"] = { affix = "", "Prevent +(2-3)% of Damage from Deflected Hits", statOrder = { 4541 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 3552135623, }, - ["CorruptionUpgradeMaximumLifeConvertedToEnergyShield"] = { affix = "", "(5-10)% of Maximum Life Converted to Energy Shield", statOrder = { 8332 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "upgraded_corruption_mod", "life", "defences" }, tradeHash = 2458962764, }, - ["CorruptionUpgradeGlobalItemAttributeRequirements"] = { affix = "", "Equipment and Skill Gems have (10-20)% reduced Attribute Requirements", statOrder = { 2224 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 752930724, }, - ["CorruptionUpgradePercentageAllAttributes"] = { affix = "", "(5-10)% increased Attributes", statOrder = { 1079 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHash = 3143208761, }, - ["CorruptionUpgradeDeflectDamageTakenRecoupedAsLife"] = { affix = "", "(5-10)% of Damage taken from Deflected Hits Recouped as Life", statOrder = { 5718 }, level = 1, group = "DeflectDamageTakenRecoupedAsLife", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 3471443885, }, - ["CorruptionUpgradeDamageTakenGoesToLifeManaESPercent"] = { affix = "", "(10-20)% of Damage Taken Recouped as Life, Mana and Energy Shield", statOrder = { 5646 }, level = 1, group = "DamageTakenGoesToLifeManaESPercent", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 2319832234, }, - ["CorruptionUpgradeDamageRemovedFromManaBeforeLife"] = { affix = "", "(10-20)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life", "mana" }, tradeHash = 458438597, }, - ["CorruptionUpgradeManaRecoveryRate"] = { affix = "", "(10-20)% increased Mana Recovery rate", statOrder = { 1381 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "mana" }, tradeHash = 3513180117, }, - ["CorruptionUpgradeLifeRecoveryRate"] = { affix = "", "(10-20)% increased Life Recovery rate", statOrder = { 1376 }, level = 1, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHash = 3240073117, }, - ["CorruptionUpgradePercentOfLeechIsInstant"] = { affix = "", "(10-20)% of Leech is Instant", statOrder = { 6962 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 3561837752, }, - ["CorruptionUpgradePhysicalDamageTakenAsRandomElement"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Damage of a Random Element", statOrder = { 8860 }, level = 1, group = "PhysicalDamageTakenAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental" }, tradeHash = 1904530666, }, - ["CorruptionUpgradeDamageTakenGainedAsLife"] = { affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life" }, tradeHash = 1444556985, }, - ["CorruptionUpgradePercentDamageGoesToMana"] = { affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "upgraded_corruption_mod", "life", "mana" }, tradeHash = 472520716, }, - ["CorruptionUpgradeThornsCriticalStrikeChance"] = { affix = "", "+(0.05-0.1)% to Thorns Critical Hit Chance", statOrder = { 4616 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 2715190555, }, - ["CorruptionUpgradeThornsFromPercentBodyArmour"] = { affix = "", "Gain Physical Thorns damage equal to (0.05-0.1)% of Item Armour on Equipped Body Armour", statOrder = { 4526 }, level = 1, group = "ThornsFromPercentBodyArmour", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "damage" }, tradeHash = 1793740180, }, - ["CorruptionUpgradeThornsDamageIncreaseIfBlockedRecently"] = { affix = "", "(100-150)% increased Thorns damage if you've Blocked Recently", statOrder = { 9647 }, level = 1, group = "ThornsDamageIncreaseIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 483561599, }, - ["CorruptionUpgradePhysicalDamageTakenAsChaos"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2124 }, level = 1, group = "PhysicalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "chaos" }, tradeHash = 4129825612, }, - ["CorruptionUpgradePhysicalDamageTakenAsFirePercent"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2119 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental", "fire" }, tradeHash = 3342989455, }, - ["CorruptionUpgradePhysicalDamageTakenAsCold"] = { affix = "", "(3-6)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2120 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental", "cold" }, tradeHash = 1871056256, }, - ["CorruptionUpgradePhysicalDamageTakenAsLightningPercent"] = { affix = "", "(3-6)% of Physical damage from Hits taken as Lightning damage", statOrder = { 2121 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "elemental", "lightning" }, tradeHash = 425242359, }, - ["CorruptionUpgradeMaximumChaosResistance"] = { affix = "", "+(1-3)% to Maximum Chaos Resistance", statOrder = { 956 }, level = 1, group = "MaximumChaosResistance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "chaos", "resistance" }, tradeHash = 1301765461, }, - ["CorruptionUpgradeHeraldReservationEfficiency"] = { affix = "", "(20-30)% increased Reservation Efficiency of Herald Skills", statOrder = { 9179 }, level = 1, group = "HeraldReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 1697191405, }, - ["CorruptionUpgradeMinionReservationEfficiency"] = { affix = "", "(20-30)% increased Reservation Efficiency of Minion Skills", statOrder = { 8524 }, level = 1, group = "MinionReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 1805633363, }, - ["CorruptionUpgradeMetaReservationEfficiency"] = { affix = "", "Meta Skills have (20-30)% increased Reservation Efficiency", statOrder = { 9180 }, level = 1, group = "MetaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 1672384027, }, - ["CorruptionUpgradeColdExposureOnHit"] = { affix = "", "(25-50)% chance to inflict Exposure on Hit", statOrder = { 4568 }, level = 1, group = "ColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 2630708439, }, - ["CorruptionUpgradeGlobalIncreaseFireSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Fire Spell Skills", statOrder = { 924 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "caster", "gem" }, tradeHash = 591105508, }, - ["CorruptionUpgradeGlobalIncreaseColdSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Cold Spell Skills", statOrder = { 925 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "caster", "gem" }, tradeHash = 2254480358, }, - ["CorruptionUpgradeGlobalIncreaseLightningSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Lightning Spell Skills", statOrder = { 926 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "caster", "gem" }, tradeHash = 1545858329, }, - ["CorruptionUpgradeGlobalIncreasePhysicalSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Physical Spell Skills", statOrder = { 1402 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical", "caster", "gem" }, tradeHash = 1600707273, }, - ["CorruptionUpgradeOneHandDamageGainedAsFire"] = { affix = "", "Gain (20-35)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire" }, tradeHash = 3015669065, }, - ["CorruptionUpgradeOneHandDamageGainedAsCold"] = { affix = "", "Gain (20-35)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold" }, tradeHash = 2505884597, }, - ["CorruptionUpgradeOneHandDamageGainedAsLightning"] = { affix = "", "Gain (20-35)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning" }, tradeHash = 3278136794, }, - ["CorruptionUpgradeOneHandDamageGainedAsPhysical"] = { affix = "", "Gain (20-35)% of Damage as Extra Physical Damage", statOrder = { 1601 }, level = 1, group = "DamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "upgraded_corruption_mod", "damage", "physical" }, tradeHash = 4019237939, }, - ["CorruptionUpgradeOneHandDamageGainedAsChaos"] = { affix = "", "Gain (20-35)% of Damage as Extra Chaos Damage", statOrder = { 1602 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos" }, tradeHash = 3398787959, }, - ["CorruptionUpgradeTwoHandDamageGainedAsFire"] = { affix = "", "Gain (35-50)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "fire" }, tradeHash = 3015669065, }, - ["CorruptionUpgradeTwoHandDamageGainedAsCold"] = { affix = "", "Gain (35-50)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "cold" }, tradeHash = 2505884597, }, - ["CorruptionUpgradeTwoHandDamageGainedAsLightning"] = { affix = "", "Gain (35-50)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 1, group = "DamageGainedAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "lightning" }, tradeHash = 3278136794, }, - ["CorruptionUpgradeTwoHandDamageGainedAsPhysical"] = { affix = "", "Gain (35-50)% of Damage as Extra Physical Damage", statOrder = { 1601 }, level = 1, group = "DamageGainedAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "upgraded_corruption_mod", "damage", "physical" }, tradeHash = 4019237939, }, - ["CorruptionUpgradeTwoHandDamageGainedAsChaos"] = { affix = "", "Gain (35-50)% of Damage as Extra Chaos Damage", statOrder = { 1602 }, level = 1, group = "DamageGainedAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "upgraded_corruption_mod", "damage", "chaos" }, tradeHash = 3398787959, }, - ["CorruptionUpgradeGlobalSkillGemQuality"] = { affix = "", "+10% to Quality of all Skills", statOrder = { 4167 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "gem" }, tradeHash = 3655769732, }, - ["CorruptionUpgradeTemporaryMinionLimit"] = { affix = "", "Temporary Minion Skills have +2 to Limit of Minions summoned", statOrder = { 9640 }, level = 1, group = "TemporaryMinionLimit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 1058934731, }, - ["CorruptionUpgradeMeleeSplash"] = { affix = "", "Strikes deal Splash Damage", statOrder = { 1067 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHash = 3675300253, }, - ["CorruptionUpgradePercentageStrength"] = { affix = "", "(5-10)% increased Strength", statOrder = { 1080 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHash = 734614379, }, - ["CorruptionUpgradePercentageDexterity"] = { affix = "", "(5-10)% increased Dexterity", statOrder = { 1081 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHash = 4139681126, }, - ["CorruptionUpgradePercentageIntelligence"] = { affix = "", "(5-10)% increased Intelligence", statOrder = { 1082 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHash = 656461285, }, - ["CorruptionUpgradePercentageAllAttributesCopy"] = { affix = "", "(3-6)% increased Attributes", statOrder = { 1079 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attribute" }, tradeHash = 3143208761, }, - ["CorruptionUpgradeGlobalFlaskLifeRecovery"] = { affix = "", "(15-30)% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "upgraded_corruption_mod", "life" }, tradeHash = 821241191, }, - ["CorruptionUpgradeFlaskManaRecovery"] = { affix = "", "(15-30)% increased Mana Recovery from Flasks", statOrder = { 1720 }, level = 1, group = "FlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "upgraded_corruption_mod", "mana" }, tradeHash = 2222186378, }, - ["CorruptionUpgradeCharmIncreasedDuration"] = { affix = "", "(15-30)% increased Duration", statOrder = { 903 }, level = 1, group = "CharmIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 2541588185, }, - ["CorruptionUpgradeCharmChargesGained"] = { affix = "", "(15-30)% increased Charm Charges gained", statOrder = { 5227 }, level = 1, group = "CharmChargesGained", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 3585532255, }, - ["CorruptionUpgradeOneHandGlobalIncreaseSpellSkillGemLevel"] = { affix = "", "+(1-2) to Level of all Spell Skills", statOrder = { 922 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster", "gem" }, tradeHash = 124131830, }, - ["CorruptionUpgradeTwoHandGlobalIncreaseSpellSkillGemLevel"] = { affix = "", "+(3-4) to Level of all Spell Skills", statOrder = { 922 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster", "gem" }, tradeHash = 124131830, }, - ["CorruptionUpgradeBleedDotMultiplier"] = { affix = "", "(40-60)% increased Magnitude of Bleeding you inflict", statOrder = { 4662 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "upgraded_corruption_mod", "damage", "physical", "attack", "ailment" }, tradeHash = 3166958180, }, - ["CorruptionUpgradePoisonEffect"] = { affix = "", "(40-60)% increased Magnitude of Poison you inflict", statOrder = { 8925 }, level = 1, group = "PoisonEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "damage", "ailment" }, tradeHash = 2487305362, }, - ["CorruptionUpgradeMaximumRage"] = { affix = "", "+(5-10) to Maximum Rage", statOrder = { 9032 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 1181501418, }, - ["CorruptionUpgradeSlowPotency"] = { affix = "", "(10-20)% increased Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 924253255, }, - ["CorruptionUpgradeBlindEffect"] = { affix = "", "(30-50)% increased Blind Effect", statOrder = { 4781 }, level = 1, group = "BlindEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 1585769763, }, - ["CorruptionUpgradeGlobalElementalGemLevel"] = { affix = "", "+(1-2) to Level of all Elemental Skills", statOrder = { 5899 }, level = 1, group = "GlobalElementalGemLevel", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "gem" }, tradeHash = 2901213448, }, - ["CorruptionUpgradeChanceForNoBolt"] = { affix = "", "Bolts fired by Crossbow Attacks have (10-20)% chance to not expend Ammunition", statOrder = { 5508 }, level = 1, group = "ChanceForNoBolt", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 4273162558, }, - ["CorruptionUpgradeIgniteEffect"] = { affix = "", "(20-30)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 3791899485, }, - ["CorruptionUpgradeFreezeDuration"] = { affix = "", "(20-30)% increased Freeze Duration on Enemies", statOrder = { 1541 }, level = 1, group = "FreezeDuration", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 1073942215, }, - ["CorruptionUpgradeShockEffect"] = { affix = "", "(20-30)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHash = 2527686725, }, - ["CorruptionUpgradeSpellCriticalStrikeMultiplier"] = { affix = "", "(60-90)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster", "critical" }, tradeHash = 274716455, }, - ["CorruptionUpgradeSpellChanceToFireTwoAdditionalProjectiles"] = { affix = "", "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9431 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster" }, tradeHash = 2910761524, }, - ["CorruptionUpgradeMinionDuration"] = { affix = "", "(20-40)% increased Minion Duration", statOrder = { 4590 }, level = 1, group = "MinionDuration", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "minion" }, tradeHash = 999511066, }, - ["CorruptionUpgradePresenceRadius"] = { affix = "", "(30-60)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 101878827, }, - ["CorruptionUpgradeProjectileSpeed"] = { affix = "", "(20-40)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "speed" }, tradeHash = 3759663284, }, - ["CorruptionUpgradeReducedIgniteEffectOnSelf"] = { affix = "", "(20-30)% reduced Magnitude of Ignite on you", statOrder = { 6814 }, level = 1, group = "ReducedIgniteEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "fire", "ailment" }, tradeHash = 1269971728, }, - ["CorruptionUpgradeReducedChillDurationOnSelf"] = { affix = "", "(20-30)% reduced Chill Duration on you", statOrder = { 997 }, level = 1, group = "ReducedChillDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "cold", "ailment" }, tradeHash = 1874553720, }, - ["CorruptionUpgradeReducedShockEffectOnSelf"] = { affix = "", "(20-30)% reduced effect of Shock on you", statOrder = { 9261 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "elemental", "lightning", "ailment" }, tradeHash = 3801067695, }, - ["CorruptionUpgradeGlobalMaimOnHit"] = { affix = "", "Attacks have (30-50)% chance to Maim on Hit", statOrder = { 7469 }, level = 1, group = "GlobalMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHash = 1510714129, }, - ["CorruptionUpgradeSpellsHinderOnHitChance"] = { affix = "", "(30-50)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9433 }, level = 1, group = "SpellsHinderOnHitChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "caster" }, tradeHash = 3002506763, }, - ["CorruptionUpgradePhysicalDamageOverTimeTaken"] = { affix = "", "(20-30)% reduced Physical Damage taken over time", statOrder = { 4599 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "physical" }, tradeHash = 511024200, }, - ["CorruptionUpgradeGlobalChanceToBlindOnHit"] = { affix = "", "(30-50)% Global chance to Blind Enemies on Hit", statOrder = { 2592 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod" }, tradeHash = 2221570601, }, - ["CorruptionUpgradeAdditionalFissureChance"] = { affix = "", "Skills which create Fissures have a (20-40)% chance to create an additional Fissure", statOrder = { 9296 }, level = 1, group = "AdditionalFissureChance", weightKey = { }, weightVal = { }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHash = 2544540062, }, } \ No newline at end of file diff --git a/src/Data/ModJewel.lua b/src/Data/ModJewel.lua index ba47f732aa..43043506f9 100644 --- a/src/Data/ModJewel.lua +++ b/src/Data/ModJewel.lua @@ -363,365 +363,4 @@ return { ["JewelShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(2-4)% increased Skill Speed while Shapeshifted", statOrder = { 9317 }, level = 1, group = "ShapeshiftSkillSpeedForJewel", weightKey = { "intjewel", "strjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, tradeHashes = { [918325986] = { "(2-4)% increased Skill Speed while Shapeshifted" }, } }, ["JewelShapeshiftDamage"] = { type = "Prefix", affix = "Bestial", "(5-15)% increased Damage while Shapeshifted", statOrder = { 5567 }, level = 1, group = "ShapeshiftDamageForJewel", weightKey = { "intjewel", "strjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2440073079] = { "(5-15)% increased Damage while Shapeshifted" }, } }, ["JewelPlantDamage"] = { type = "Prefix", affix = "Overgrown", "(5-15)% increased Damage with Plant Skills", statOrder = { 8914 }, level = 1, group = "PlantDamageForJewel", weightKey = { "intjewel", "strjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "damage" }, tradeHashes = { [2518900926] = { "(5-15)% increased Damage with Plant Skills" }, } }, - ["JewelAccuracy"] = { type = "Prefix", affix = "Accurate", "(5-10)% increased Accuracy Rating", statOrder = { 1268 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 624954515, }, - ["JewelAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(5-15)% increased chance to inflict Ailments", statOrder = { 4136 }, level = 1, group = "AilmentChance", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHash = 1772247089, }, - ["JewelAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(5-15)% increased Magnitude of Ailments you inflict", statOrder = { 4140 }, level = 1, group = "AilmentEffect", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, tradeHash = 1303248024, }, - ["JewelAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(10-20)% increased Elemental Ailment Threshold", statOrder = { 4147 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3544800472, }, - ["JewelAreaofEffect"] = { type = "Prefix", affix = "Blasting", "(4-6)% increased Area of Effect", statOrder = { 1557 }, level = 1, group = "AreaOfEffect", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 280731498, }, - ["JewelArmour"] = { type = "Prefix", affix = "Armoured", "(10-20)% increased Armour", statOrder = { 864 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, tradeHash = 2866361420, }, - ["JewelArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (5-15)% increased Armour", statOrder = { 4283 }, level = 1, group = "ArmourBreak", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1776411443, }, - ["JewelArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(10-20)% increased Armour Break Duration", statOrder = { 4285 }, level = 1, group = "ArmourBreakDuration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2637470878, }, - ["JewelAttackCriticalChance"] = { type = "Suffix", affix = "of Deadliness", "(6-16)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 2194114101, }, - ["JewelAttackCriticalDamage"] = { type = "Suffix", affix = "of Demolishing", "(10-20)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 3714003708, }, - ["JewelAttackDamage"] = { type = "Prefix", affix = "Combat", "(5-15)% increased Attack Damage", statOrder = { 1093 }, level = 1, group = "AttackDamage", weightKey = { "strjewel", "dexjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 2843214518, }, - ["JewelAttackSpeed"] = { type = "Suffix", affix = "of Alacrity", "(2-4)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 681332047, }, - ["JewelAuraEffect"] = { type = "Prefix", affix = "Commanding", "Aura Skills have (3-7)% increased Magnitudes", statOrder = { 2472 }, level = 1, group = "AuraEffectForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "aura" }, tradeHash = 315791320, }, - ["JewelAxeDamage"] = { type = "Prefix", affix = "Sinister", "(5-15)% increased Damage with Axes", statOrder = { 1170 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHash = 3314142259, }, - ["JewelAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(2-4)% increased Attack Speed with Axes", statOrder = { 1255 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHash = 3550868361, }, - ["JewelBleedingChance"] = { type = "Prefix", affix = "Bleeding", "(3-7)% chance to inflict Bleeding on Hit", statOrder = { 4532 }, level = 1, group = "BaseChanceToBleed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2174054121, }, - ["JewelBleedingDuration"] = { type = "Suffix", affix = "of Haemophilia", "(5-10)% increased Bleeding Duration", statOrder = { 4522 }, level = 1, group = "BleedDuration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHash = 1459321413, }, - ["JewelBlindEffect"] = { type = "Prefix", affix = "Stifling", "(5-10)% increased Blind Effect", statOrder = { 4781 }, level = 1, group = "BlindEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1585769763, }, - ["JewelBlindonHit"] = { type = "Suffix", affix = "of Blinding", "(3-7)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4453 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 318953428, }, - ["JewelBlock"] = { type = "Prefix", affix = "Protecting", "(3-7)% increased Block chance", statOrder = { 1064 }, level = 1, group = "IncreasedBlockChance", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHash = 4147897060, }, - ["JewelDamageVsRareOrUnique"] = { type = "Prefix", affix = "Slaying", "(10-20)% increased Damage with Hits against Rare and Unique Enemies", statOrder = { 2821 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1852872083, }, - ["JewelBowAccuracyRating"] = { type = "Prefix", affix = "Precise", "(5-15)% increased Accuracy Rating with Bows", statOrder = { 1277 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 169946467, }, - ["JewelBowDamage"] = { type = "Prefix", affix = "Perforating", "(6-16)% increased Damage with Bows", statOrder = { 1190 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 4188894176, }, - ["JewelBowSpeed"] = { type = "Suffix", affix = "of Nocking", "(2-4)% increased Attack Speed with Bows", statOrder = { 1260 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3759735052, }, - ["JewelCastSpeed"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, tradeHash = 2891184298, }, - ["JewelChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (3-5)% chance to Chain an additional time from terrain", statOrder = { 8970 }, level = 1, group = "ChainFromTerrain", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4081947835, }, - ["JewelCharmDuration"] = { type = "Suffix", affix = "of the Woodland", "(5-15)% increased Charm Effect Duration", statOrder = { 878 }, level = 1, group = "CharmDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1389754388, }, - ["JewelCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(5-15)% increased Charm Charges gained", statOrder = { 5227 }, level = 1, group = "CharmChargesGained", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3585532255, }, - ["JewelCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(10-20)% increased Damage while you have an active Charm", statOrder = { 5627 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 627767961, }, - ["JewelChaosDamage"] = { type = "Prefix", affix = "Chaotic", "(6-12)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHash = 736967255, }, - ["JewelChillDuration"] = { type = "Suffix", affix = "of Frost", "(15-25)% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IncreasedChillDuration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHash = 3485067555, }, - ["JewelColdDamage"] = { type = "Prefix", affix = "Chilling", "(5-15)% increased Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamagePercentage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3291658075, }, - ["JewelColdPenetration"] = { type = "Prefix", affix = "Numbing", "Damage Penetrates (5-10)% Cold Resistance", statOrder = { 2614 }, level = 1, group = "ColdResistancePenetration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHash = 3417711605, }, - ["JewelCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(3-5)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1004011302, }, - ["JewelCorpses"] = { type = "Prefix", affix = "Necromantic", "(10-20)% increased Damage if you have Consumed a Corpse Recently", statOrder = { 3802 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2118708619, }, - ["JewelCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(10-20)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5424 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, tradeHash = 440490623, }, - ["JewelCriticalChance"] = { type = "Suffix", affix = "of Annihilation", "(5-15)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, tradeHash = 587431675, }, - ["JewelCriticalDamage"] = { type = "Suffix", affix = "of Potency", "(10-20)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, tradeHash = 3556824919, }, - ["JewelSpellCriticalDamage"] = { type = "Suffix", affix = "of Unmaking", "(10-20)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster", "critical" }, tradeHash = 274716455, }, - ["JewelCrossbowDamage"] = { type = "Prefix", affix = "Bolting", "(6-16)% increased Damage with Crossbows", statOrder = { 3849 }, level = 1, group = "CrossbowDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 427684353, }, - ["JewelCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(10-15)% increased Crossbow Reload Speed", statOrder = { 9149 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3192728503, }, - ["JewelCrossbowSpeed"] = { type = "Suffix", affix = "of Rapidity", "(2-4)% increased Attack Speed with Crossbows", statOrder = { 3853 }, level = 1, group = "CrossbowSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 1135928777, }, - ["JewelCurseArea"] = { type = "Prefix", affix = "Expanding", "(8-12)% increased Area of Effect of Curses", statOrder = { 1875 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHash = 153777645, }, - ["JewelCurseDelay"] = { type = "Suffix", affix = "of Chanting", "(5-15)% faster Curse Activation", statOrder = { 5530 }, level = 1, group = "CurseDelay", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "curse" }, tradeHash = 1104825894, }, - ["JewelCurseDuration"] = { type = "Suffix", affix = "of Continuation", "(15-25)% increased Curse Duration", statOrder = { 1466 }, level = 1, group = "BaseCurseDuration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "curse" }, tradeHash = 3824372849, }, - ["JewelCurseEffect"] = { type = "Prefix", affix = "Hexing", "(2-4)% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHash = 2353576063, }, - ["JewelDaggerCriticalChance"] = { type = "Suffix", affix = "of Backstabbing", "(6-16)% increased Critical Hit Chance with Daggers", statOrder = { 1299 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, tradeHash = 4018186542, }, - ["JewelDaggerDamage"] = { type = "Prefix", affix = "Lethal", "(6-16)% increased Damage with Daggers", statOrder = { 1182 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHash = 3586984690, }, - ["JewelDaggerSpeed"] = { type = "Suffix", affix = "of Slicing", "(2-4)% increased Attack Speed with Daggers", statOrder = { 1258 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHash = 2538566497, }, - ["JewelDamagefromMana"] = { type = "Suffix", affix = "of Mind", "(2-4)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, tradeHash = 458438597, }, - ["JewelDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(15-25)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5553 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 2301718443, }, - ["JewelDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(5-10)% increased Duration of Damaging Ailments on Enemies", statOrder = { 5668 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHash = 1829102168, }, - ["JewelDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "(5-10)% chance to Daze on Hit", statOrder = { 4530 }, level = 1, group = "DazeBuildup", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3146310524, }, - ["JewelDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (5-10)% faster", statOrder = { 5703 }, level = 1, group = "DebuffTimePassed", weightKey = { "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1238227257, }, - ["JewelElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(5-10)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 6818 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "ailment" }, tradeHash = 1062710370, }, - ["JewelElementalDamage"] = { type = "Prefix", affix = "Prismatic", "(5-15)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHash = 3141070085, }, - ["JewelEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (10-20)% increased Damage", statOrder = { 5912 }, level = 1, group = "ExertedAttackDamage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 1569101201, }, - ["JewelEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (4-8)% increased Energy", statOrder = { 5987 }, level = 1, group = "EnergyGeneration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4236566306, }, - ["JewelEnergyShield"] = { type = "Prefix", affix = "Shimmering", "(10-20)% increased maximum Energy Shield", statOrder = { 868 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2482852589, }, - ["JewelEnergyShieldDelay"] = { type = "Prefix", affix = "Serene", "(10-15)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 1782086450, }, - ["JewelEnergyShieldRecharge"] = { type = "Prefix", affix = "Fevered", "(10-20)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 2339757871, }, - ["JewelEvasion"] = { type = "Prefix", affix = "Evasive", "(10-20)% increased Evasion Rating", statOrder = { 866 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, tradeHash = 2106365538, }, - ["JewelFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (3-7)% faster", statOrder = { 5671 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, tradeHash = 538241406, }, - ["JewelFireDamage"] = { type = "Prefix", affix = "Flaming", "(5-15)% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamagePercentage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 3962278098, }, - ["JewelFirePenetration"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (5-10)% Fire Resistance", statOrder = { 2613 }, level = 1, group = "FireResistancePenetration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHash = 2653955271, }, - ["JewelFlailCriticalChance"] = { type = "Suffix", affix = "of Thrashing", "(6-16)% increased Critical Hit Chance with Flails", statOrder = { 3843 }, level = 1, group = "FlailCriticalChance", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, tradeHash = 1484710594, }, - ["JewelFlailDamage"] = { type = "Prefix", affix = "Flailing", "(6-16)% increased Damage with Flails", statOrder = { 3838 }, level = 1, group = "FlailDamage", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHash = 1731242173, }, - ["JewelFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(5-10)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 1836676211, }, - ["JewelFlaskDuration"] = { type = "Suffix", affix = "of Prolonging", "(5-10)% increased Flask Effect Duration", statOrder = { 879 }, level = 1, group = "FlaskDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, tradeHash = 3741323227, }, - ["JewelFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(30-50)% increased Energy Shield from Equipped Focus", statOrder = { 6002 }, level = 1, group = "FocusEnergyShield", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, tradeHash = 3174700878, }, - ["JewelForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (10-15)% chance for an additional Projectile when Forking", statOrder = { 5139 }, level = 1, group = "ForkingProjectiles", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3003542304, }, - ["JewelFreezeAmount"] = { type = "Suffix", affix = "of Freezing", "(10-20)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 473429811, }, - ["JewelFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(18-32)% increased Freeze Threshold", statOrder = { 2879 }, level = 1, group = "FreezeThreshold", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 3780644166, }, - ["JewelHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (15-25)% increased Damage", statOrder = { 5632 }, level = 1, group = "HeraldDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 21071013, }, - ["JewelIgniteChance"] = { type = "Suffix", affix = "of Ignition", "(10-20)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 2968503605, }, - ["JewelIgniteEffect"] = { type = "Prefix", affix = "Burning", "(5-15)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 3791899485, }, - ["JewelIncreasedDuration"] = { type = "Suffix", affix = "of Lengthening", "(5-10)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 3377888098, }, - ["JewelKnockback"] = { type = "Suffix", affix = "of Fending", "(5-15)% increased Knockback Distance", statOrder = { 1669 }, level = 1, group = "KnockbackDistance", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 565784293, }, - ["JewelLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(4-6)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 1, group = "LifeCost", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2480498143, }, - ["JewelLifeFlaskRecovery"] = { type = "Suffix", affix = "of Recovery", "(5-15)% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHash = 821241191, }, - ["JewelLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(10-20)% increased Life Flask Charges gained", statOrder = { 6970 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4009879772, }, - ["JewelLifeLeech"] = { type = "Suffix", affix = "of Frenzy", "(5-15)% increased amount of Life Leeched", statOrder = { 1820 }, level = 1, group = "LifeLeechAmount", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2112395885, }, - ["JewelLifeonKill"] = { type = "Suffix", affix = "of Success", "Recover (1-2)% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 2023107756, }, - ["JewelLifeRecoup"] = { type = "Suffix", affix = "of Infusion", "(2-3)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 1444556985, }, - ["JewelLifeRegeneration"] = { type = "Suffix", affix = "of Regeneration", "(5-10)% increased Life Regeneration rate", statOrder = { 969 }, level = 1, group = "LifeRegenerationRate", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 44972811, }, - ["JewelLightningDamage"] = { type = "Prefix", affix = "Humming", "(5-15)% increased Lightning Damage", statOrder = { 857 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 2231156303, }, - ["JewelLightningPenetration"] = { type = "Prefix", affix = "Surging", "Damage Penetrates (5-10)% Lightning Resistance", statOrder = { 2615 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHash = 818778753, }, - ["JewelMaceDamage"] = { type = "Prefix", affix = "Beating", "(6-16)% increased Damage with Maces", statOrder = { 1186 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 1181419800, }, - ["JewelMaceStun"] = { type = "Suffix", affix = "of Thumping", "(15-25)% increased Stun Buildup with Maces", statOrder = { 7459 }, level = 1, group = "MaceStun", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHash = 872504239, }, - ["JewelManaFlaskRecovery"] = { type = "Suffix", affix = "of Quenching", "(5-15)% increased Mana Recovery from Flasks", statOrder = { 1720 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, tradeHash = 2222186378, }, - ["JewelManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(10-20)% increased Mana Flask Charges gained", statOrder = { 7491 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3590792340, }, - ["JewelManaLeech"] = { type = "Suffix", affix = "of Thirsting", "(5-15)% increased amount of Mana Leeched", statOrder = { 1822 }, level = 1, group = "ManaLeechAmount", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 2839066308, }, - ["JewelManaonKill"] = { type = "Suffix", affix = "of Osmosis", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1443 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 1604736568, }, - ["JewelManaRegeneration"] = { type = "Suffix", affix = "of Energy", "(5-15)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, tradeHash = 789117908, }, - ["JewelMarkCastSpeed"] = { type = "Suffix", affix = "of Targeting", "Mark Skills have (5-15)% increased Use Speed", statOrder = { 1871 }, level = 1, group = "MarkCastSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed", "curse" }, tradeHash = 1714971114, }, - ["JewelMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (18-32)% increased Skill Effect Duration", statOrder = { 8276 }, level = 1, group = "MarkDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2594634307, }, - ["JewelMarkEffect"] = { type = "Prefix", affix = "Marking", "(4-8)% increased Effect of your Mark Skills", statOrder = { 2268 }, level = 1, group = "MarkEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, tradeHash = 712554801, }, - ["JewelMaximumColdResistance"] = { type = "Suffix", affix = "of the Kraken", "+1% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "resistance" }, tradeHash = 3676141501, }, - ["JewelMaximumFireResistance"] = { type = "Suffix", affix = "of the Phoenix", "+1% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "resistance" }, tradeHash = 4095671657, }, - ["JewelMaximumLightningResistance"] = { type = "Suffix", affix = "of the Leviathan", "+1% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "resistance" }, tradeHash = 1011760251, }, - ["JewelMaximumRage"] = { type = "Prefix", affix = "Angry", "+1 to Maximum Rage", statOrder = { 9032 }, level = 1, group = "MaximumRage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1181501418, }, - ["JewelMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(5-15)% increased Melee Damage", statOrder = { 1124 }, level = 1, group = "MeleeDamage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 1002362373, }, - ["JewelMinionAccuracy"] = { type = "Prefix", affix = "Training", "(10-20)% increased Minion Accuracy Rating", statOrder = { 8446 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, tradeHash = 1718147982, }, - ["JewelMinionArea"] = { type = "Prefix", affix = "Companion", "Minions have (5-8)% increased Area of Effect", statOrder = { 2649 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion" }, tradeHash = 3811191316, }, - ["JewelMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (2-4)% increased Attack and Cast Speed", statOrder = { 8453 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "caster", "speed", "minion" }, tradeHash = 3091578504, }, - ["JewelMinionChaosResistance"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(7-13)% to Chaos Resistance", statOrder = { 2559 }, level = 1, group = "MinionChaosResistance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance", "minion" }, tradeHash = 3837707023, }, - ["JewelMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (10-20)% increased Critical Hit Chance", statOrder = { 8476 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, tradeHash = 491450213, }, - ["JewelMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (15-25)% increased Critical Damage Bonus", statOrder = { 8478 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "minion", "critical" }, tradeHash = 1854213750, }, - ["JewelMinionDamage"] = { type = "Prefix", affix = "Authoritative", "Minions deal (5-15)% increased Damage", statOrder = { 1646 }, level = 1, group = "MinionDamage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, tradeHash = 1589917703, }, - ["JewelMinionLife"] = { type = "Prefix", affix = "Fortuitous", "Minions have (5-15)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 770672621, }, - ["JewelMinionPhysicalDamageReduction"] = { type = "Suffix", affix = "of Confidence", "Minions have (6-16)% additional Physical Damage Reduction", statOrder = { 1946 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical", "minion" }, tradeHash = 3119612865, }, - ["JewelMinionResistances"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(5-10)% to all Elemental Resistances", statOrder = { 2558 }, level = 1, group = "MinionElementalResistance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance", "minion" }, tradeHash = 1423639565, }, - ["JewelMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (5-15)% faster", statOrder = { 8529 }, level = 1, group = "MinionReviveSpeed", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "minion" }, tradeHash = 2639966148, }, - ["JewelMovementSpeed"] = { type = "Suffix", affix = "of Speed", "(1-2)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 2250533757, }, - ["JewelOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (15-25)% increased Duration", statOrder = { 8776 }, level = 1, group = "OfferingDuration", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2957407601, }, - ["JewelOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (15-25)% increased Maximum Life", statOrder = { 8777 }, level = 1, group = "OfferingLife", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3787460122, }, - ["JewelPhysicalDamage"] = { type = "Prefix", affix = "Sharpened", "(5-15)% increased Global Physical Damage", statOrder = { 1122 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, tradeHash = 1310194496, }, - ["JewelPiercingProjectiles"] = { type = "Suffix", affix = "of Piercing", "(10-20)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 1, group = "ChanceToPierce", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2321178454, }, - ["JewelPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(10-20)% increased Pin Buildup", statOrder = { 6750 }, level = 1, group = "PinBuildup", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3473929743, }, - ["JewelPoisonChance"] = { type = "Suffix", affix = "of Poisoning", "(5-10)% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 795138349, }, - ["JewelPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(5-15)% increased Magnitude of Poison you inflict", statOrder = { 8925 }, level = 1, group = "PoisonEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, tradeHash = 2487305362, }, - ["JewelPoisonDuration"] = { type = "Suffix", affix = "of Infection", "(5-10)% increased Poison Duration", statOrder = { 2786 }, level = 1, group = "PoisonDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, tradeHash = 2011656677, }, - ["JewelProjectileDamage"] = { type = "Prefix", affix = "Archer's", "(5-15)% increased Projectile Damage", statOrder = { 1663 }, level = 1, group = "ProjectileDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1839076647, }, - ["JewelProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(4-8)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "ProjectileSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 3759663284, }, - ["JewelQuarterstaffDamage"] = { type = "Prefix", affix = "Monk's", "(6-16)% increased Damage with Quarterstaves", statOrder = { 1175 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 4045894391, }, - ["JewelQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(10-20)% increased Freeze Buildup with Quarterstaves", statOrder = { 9020 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 1697447343, }, - ["JewelQuarterstaffSpeed"] = { type = "Suffix", affix = "of Sequencing", "(2-4)% increased Attack Speed with Quarterstaves", statOrder = { 1256 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 3283482523, }, - ["JewelQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(4-6)% increased bonuses gained from Equipped Quiver", statOrder = { 9028 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1200678966, }, - ["JewelRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6431 }, level = 1, group = "RageOnHit", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2709367754, }, - ["JewelRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-3) Rage when Hit by an Enemy", statOrder = { 6433 }, level = 1, group = "GainRageWhenHit", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 3292710273, }, - ["JewelShieldDefences"] = { type = "Prefix", affix = "Shielding", "(18-32)% increased Defences from Equipped Shield", statOrder = { 9241 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences" }, tradeHash = 145497481, }, - ["JewelShockChance"] = { type = "Suffix", affix = "of Shocking", "(10-20)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 293638271, }, - ["JewelShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(15-25)% increased Shock Duration", statOrder = { 1540 }, level = 1, group = "ShockDuration", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 3668351662, }, - ["JewelShockEffect"] = { type = "Prefix", affix = "Jolting", "(10-15)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "ShockEffect", weightKey = { "dexjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHash = 2527686725, }, - ["JewelSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 924253255, }, - ["JewelSpearAttackSpeed"] = { type = "Suffix", affix = "of Spearing", "(2-4)% increased Attack Speed with Spears", statOrder = { 1263 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, tradeHash = 1165163804, }, - ["JewelSpearCriticalDamage"] = { type = "Suffix", affix = "of Hunting", "(10-20)% increased Critical Damage Bonus with Spears", statOrder = { 1328 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, tradeHash = 2456523742, }, - ["JewelSpearDamage"] = { type = "Prefix", affix = "Spearheaded", "(6-16)% increased Damage with Spears", statOrder = { 1204 }, level = 1, group = "SpearDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 2696027455, }, - ["JewelSpellCriticalChance"] = { type = "Suffix", affix = "of Annihilating", "(5-15)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, tradeHash = 737908626, }, - ["JewelSpellDamage"] = { type = "Prefix", affix = "Mystic", "(5-15)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 2974417149, }, - ["JewelStunBuildup"] = { type = "Suffix", affix = "of Stunning", "(10-20)% increased Stun Buildup", statOrder = { 984 }, level = 1, group = "StunDamageIncrease", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 239367161, }, - ["JewelStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(6-16)% increased Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 680068163, }, - ["JewelStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 9531 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 416040624, }, - ["JewelAilmentThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Inuring", "Gain additional Ailment Threshold equal to (5-15)% of maximum Energy Shield", statOrder = { 4146 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, tradeHash = 3398301358, }, - ["JewelStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(15-25)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 9533 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1405298142, }, - ["JewelBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(5-15)% increased Magnitude of Bleeding you inflict", statOrder = { 4662 }, level = 1, group = "BleedDotMultiplier", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, tradeHash = 3166958180, }, - ["JewelSwordDamage"] = { type = "Prefix", affix = "Vicious", "(6-16)% increased Damage with Swords", statOrder = { 1196 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHash = 83050999, }, - ["JewelSwordSpeed"] = { type = "Suffix", affix = "of Fencing", "(2-4)% increased Attack Speed with Swords", statOrder = { 1261 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHash = 3293699237, }, - ["JewelThorns"] = { type = "Prefix", affix = "Retaliating", "(10-20)% increased Thorns damage", statOrder = { 9646 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1315743832, }, - ["JewelTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(10-18)% increased Totem Damage", statOrder = { 1089 }, level = 1, group = "TotemDamageForJewel", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 3851254963, }, - ["JewelTotemLife"] = { type = "Prefix", affix = "Carved", "(10-20)% increased Totem Life", statOrder = { 1459 }, level = 1, group = "IncreasedTotemLife", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, tradeHash = 686254215, }, - ["JewelTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ancestry", "(10-20)% increased Totem Placement speed", statOrder = { 2250 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 3374165039, }, - ["JewelTrapDamage"] = { type = "Prefix", affix = "Trapping", "(6-16)% increased Trap Damage", statOrder = { 854 }, level = 1, group = "TrapDamage", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, tradeHash = 2941585404, }, - ["JewelTrapThrowSpeed"] = { type = "Suffix", affix = "of Preparation", "(4-8)% increased Trap Throwing Speed", statOrder = { 1597 }, level = 1, group = "TrapThrowSpeed", weightKey = { "intjewel", "default", }, weightVal = { 0, 0 }, modTags = { "speed" }, tradeHash = 118398748, }, - ["JewelTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (10-18)% increased Spell Damage", statOrder = { 9712 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHash = 3067892458, }, - ["JewelUnarmedDamage"] = { type = "Prefix", affix = "Punching", "(6-16)% increased Damage with Unarmed Attacks", statOrder = { 3153 }, level = 1, group = "UnarmedDamage", weightKey = { "dexjewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, tradeHash = 1870736574, }, - ["JewelWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(5-15)% increased Warcry Buff Effect", statOrder = { 9883 }, level = 1, group = "WarcryEffect", weightKey = { "strjewel", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 3037553757, }, - ["JewelWarcryCooldown"] = { type = "Suffix", affix = "of Rallying", "(5-15)% increased Warcry Cooldown Recovery Rate", statOrder = { 2929 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4159248054, }, - ["JewelWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(10-20)% increased Damage with Warcries", statOrder = { 9886 }, level = 1, group = "WarcryDamage", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1594812856, }, - ["JewelWarcrySpeed"] = { type = "Suffix", affix = "of Lungs", "(10-20)% increased Warcry Speed", statOrder = { 2884 }, level = 1, group = "WarcrySpeed", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, tradeHash = 1316278494, }, - ["JewelWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(15-25)% increased Weapon Swap Speed", statOrder = { 9897 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, tradeHash = 3233599707, }, - ["JewelWitheredEffect"] = { type = "Prefix", affix = "Withering", "(5-10)% increased Withered Magnitude", statOrder = { 9915 }, level = 1, group = "WitheredEffect", weightKey = { "intjewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, tradeHash = 3973629633, }, - ["JewelUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(2-4)% increased Unarmed Attack Speed", statOrder = { 9768 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dexjewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, tradeHash = 662579422, }, - ["JewelProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(10-20)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 8973 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 3596695232, }, - ["JewelMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(10-20)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8364 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, tradeHash = 3028809864, }, - ["JewelParryDamage"] = { type = "Prefix", affix = "Parrying", "(15-25)% increased Parry Damage", statOrder = { 8799 }, level = 1, group = "ParryDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1569159338, }, - ["JewelParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(10-15)% increased Parried Debuff Duration", statOrder = { 8808 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, tradeHash = 3401186585, }, - ["JewelStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(15-25)% increased Stun Threshold while Parrying", statOrder = { 8809 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1911237468, }, - ["JewelVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "(2-3)% chance to gain Volatility on Kill", statOrder = { 9860 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHash = 3749502527, }, - ["JewelCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (10-20)% increased Damage", statOrder = { 5339 }, level = 1, group = "CompanionDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, tradeHash = 234296660, }, - ["JewelCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (10-20)% increased maximum Life", statOrder = { 5342 }, level = 1, group = "CompanionLife", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, tradeHash = 1805182458, }, - ["JewelHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(10-20)% increased Hazard Damage", statOrder = { 6536 }, level = 1, group = "HazardDamage", weightKey = { "dexjewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHash = 1697951953, }, - ["JewelIncisionChance"] = { type = "Prefix", affix = "Incise", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5175 }, level = 1, group = "IncisionChance", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "ailment" }, tradeHash = 300723956, }, - ["JewelBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(15-20)% increased Glory generation for Banner Skills", statOrder = { 6474 }, level = 1, group = "BannerValourGained", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1869147066, }, - ["JewelBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (10-20)% increased Area of Effect", statOrder = { 4495 }, level = 1, group = "BannerArea", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 429143663, }, - ["JewelBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (15-25)% increased Duration", statOrder = { 4497 }, level = 1, group = "BannerDuration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 2720982137, }, - ["JewelPresenceRadius"] = { type = "Prefix", affix = "Iconic", "(15-25)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHash = 101878827, }, - ["JewelRadiusMediumSize"] = { type = "Prefix", affix = "Greater", "Upgrades Radius to Medium", statOrder = { 7285 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1817879664, }, - ["JewelRadiusLargeSize"] = { type = "Prefix", affix = "Grand", "Upgrades Radius to Large", statOrder = { 7285 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1817879664, }, - ["JewelRadiusSmallNodeEffect"] = { type = "Suffix", affix = "of Potency", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7308 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 1060572482, }, - ["JewelRadiusNotableEffect"] = { type = "Suffix", affix = "of Influence", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7308 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHash = 1060572482, }, - ["JewelRadiusNotableEffectNew"] = { type = "Suffix", affix = "of Supremacy", "(15-25)% increased Effect of Notable Passive Skills in Radius", statOrder = { 7304 }, level = 1, group = "JewelRadiusNotableEffect", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHash = 4234573345, }, - ["JewelRadiusAccuracy"] = { type = "Prefix", affix = "Accurate", "(1-2)% increased Accuracy Rating", statOrder = { 1268 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHash = 533892981, }, - ["JewelRadiusAilmentChance"] = { type = "Suffix", affix = "of Ailing", "(3-7)% increased chance to inflict Ailments", statOrder = { 4136 }, level = 1, group = "AilmentChance", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHash = 412709880, }, - ["JewelRadiusAilmentEffect"] = { type = "Prefix", affix = "Acrimonious", "(3-7)% increased Magnitude of Ailments you inflict", statOrder = { 4140 }, level = 1, group = "AilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHash = 1321104829, }, - ["JewelRadiusAilmentThreshold"] = { type = "Suffix", affix = "of Enduring", "(2-3)% increased Elemental Ailment Threshold", statOrder = { 4147 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 3409275777, }, - ["JewelRadiusAreaofEffect"] = { type = "Prefix", affix = "Blasting", "(2-3)% increased Area of Effect", statOrder = { 1557 }, level = 1, group = "AreaOfEffect", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3391917254, }, - ["JewelRadiusArmour"] = { type = "Prefix", affix = "Armoured", "(2-3)% increased Armour", statOrder = { 864 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "defences" }, nodeType = 1, tradeHash = 3858398337, }, - ["JewelRadiusArmourBreak"] = { type = "Prefix", affix = "Shattering", "Break (1-2)% increased Armour", statOrder = { 4283 }, level = 1, group = "ArmourBreak", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 4089835882, }, - ["JewelRadiusArmourBreakDuration"] = { type = "Suffix", affix = "Resonating", "(5-10)% increased Armour Break Duration", statOrder = { 4285 }, level = 1, group = "ArmourBreakDuration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 504915064, }, - ["JewelRadiusAttackCriticalChance"] = { type = "Suffix", affix = "of Deadliness", "(3-7)% increased Critical Hit Chance for Attacks", statOrder = { 934 }, level = 1, group = "AttackCriticalStrikeChance", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHash = 3865605585, }, - ["JewelRadiusAttackCriticalDamage"] = { type = "Suffix", affix = "of Demolishing", "(5-10)% increased Critical Damage Bonus for Attack Damage", statOrder = { 938 }, level = 1, group = "AttackCriticalStrikeMultiplier", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHash = 1352561456, }, - ["JewelRadiusAttackDamage"] = { type = "Prefix", affix = "Combat", "(1-2)% increased Attack Damage", statOrder = { 1093 }, level = 1, group = "AttackDamage", weightKey = { "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 1426522529, }, - ["JewelRadiusAttackSpeed"] = { type = "Suffix", affix = "of Alacrity", "(1-2)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 2822644689, }, - ["JewelRadiusAuraEffect"] = { type = "Prefix", affix = "Commanding", "Aura Skills have (1-3)% increased Magnitudes", statOrder = { 2472 }, level = 1, group = "AuraEffectForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "aura" }, nodeType = 2, tradeHash = 3243034867, }, - ["JewelRadiusAxeDamage"] = { type = "Prefix", affix = "Sinister", "(2-3)% increased Damage with Axes", statOrder = { 1170 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 2508922991, }, - ["JewelRadiusAxeSpeed"] = { type = "Suffix", affix = "of Cleaving", "(1-2)% increased Attack Speed with Axes", statOrder = { 1255 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 2433102767, }, - ["JewelRadiusBleedingChance"] = { type = "Prefix", affix = "Bleeding", "1% chance to inflict Bleeding on Hit", statOrder = { 4532 }, level = 1, group = "BaseChanceToBleed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 944643028, }, - ["JewelRadiusBleedingDuration"] = { type = "Suffix", affix = "of Haemophilia", "(3-7)% increased Bleeding Duration", statOrder = { 4522 }, level = 1, group = "BleedDuration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, nodeType = 2, tradeHash = 1505023559, }, - ["JewelRadiusBlindEffect"] = { type = "Prefix", affix = "Stifling", "(3-5)% increased Blind Effect", statOrder = { 4781 }, level = 1, group = "BlindEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2912416697, }, - ["JewelRadiusBlindonHit"] = { type = "Suffix", affix = "of Blinding", "1% chance to Blind Enemies on Hit with Attacks", statOrder = { 4453 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHash = 2610562860, }, - ["JewelRadiusBlock"] = { type = "Prefix", affix = "Protecting", "(1-3)% increased Block chance", statOrder = { 1064 }, level = 1, group = "IncreasedBlockChance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHash = 3821543413, }, - ["JewelRadiusDamageVsRareOrUnique"] = { type = "Prefix", affix = "Slaying", "(2-3)% increased Damage with Hits against Rare and Unique Enemies", statOrder = { 2821 }, level = 1, group = "DamageVsRareOrUnique", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 147764878, }, - ["JewelRadiusBowAccuracyRating"] = { type = "Prefix", affix = "Precise", "(1-2)% increased Accuracy Rating with Bows", statOrder = { 1277 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 1, tradeHash = 1285594161, }, - ["JewelRadiusBowDamage"] = { type = "Prefix", affix = "Perforating", "(2-3)% increased Damage with Bows", statOrder = { 1190 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 945774314, }, - ["JewelRadiusBowSpeed"] = { type = "Suffix", affix = "of Nocking", "(1-2)% increased Attack Speed with Bows", statOrder = { 1260 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 3641543553, }, - ["JewelRadiusCastSpeed"] = { type = "Suffix", affix = "of Enchanting", "(1-2)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "speed" }, nodeType = 2, tradeHash = 1022759479, }, - ["JewelRadiusChainFromTerrain"] = { type = "Suffix", affix = "of Chaining", "Projectiles have (1-2)% chance to Chain an additional time from terrain", statOrder = { 8970 }, level = 1, group = "ChainFromTerrain", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2334956771, }, - ["JewelRadiusCharmDuration"] = { type = "Suffix", affix = "of the Woodland", "(1-2)% increased Charm Effect Duration", statOrder = { 878 }, level = 1, group = "CharmDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 3088348485, }, - ["JewelRadiusCharmChargesGained"] = { type = "Suffix", affix = "of the Thicker", "(3-7)% increased Charm Charges gained", statOrder = { 5227 }, level = 1, group = "CharmChargesGained", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2320654813, }, - ["JewelRadiusCharmDamageWhileUsing"] = { type = "Prefix", affix = "Verdant", "(2-3)% increased Damage while you have an active Charm", statOrder = { 5627 }, level = 1, group = "CharmDamageWhileUsing", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 3752589831, }, - ["JewelRadiusChaosDamage"] = { type = "Prefix", affix = "Chaotic", "(1-2)% increased Chaos Damage", statOrder = { 858 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, nodeType = 1, tradeHash = 1309799717, }, - ["JewelRadiusChillDuration"] = { type = "Suffix", affix = "of Frost", "(6-12)% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IncreasedChillDuration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, nodeType = 2, tradeHash = 61644361, }, - ["JewelRadiusColdDamage"] = { type = "Prefix", affix = "Chilling", "(1-2)% increased Cold Damage", statOrder = { 856 }, level = 1, group = "ColdDamagePercentage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 1, tradeHash = 2442527254, }, - ["JewelRadiusColdPenetration"] = { type = "Prefix", affix = "Numbing", "Damage Penetrates (1-2)% Cold Resistance", statOrder = { 2614 }, level = 1, group = "ColdResistancePenetration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, nodeType = 1, tradeHash = 1896066427, }, - ["JewelRadiusCooldownSpeed"] = { type = "Suffix", affix = "of Chronomancy", "(1-3)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2149603090, }, - ["JewelRadiusCorpses"] = { type = "Prefix", affix = "Necromantic", "(2-3)% increased Damage if you have Consumed a Corpse Recently", statOrder = { 3802 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 1892122971, }, - ["JewelRadiusCriticalAilmentEffect"] = { type = "Prefix", affix = "Rancorous", "(5-10)% increased Magnitude of Damaging Ailments you inflict with Critical Hits", statOrder = { 5424 }, level = 1, group = "CriticalAilmentEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage", "critical", "ailment" }, nodeType = 2, tradeHash = 4092130601, }, - ["JewelRadiusCriticalChance"] = { type = "Suffix", affix = "of Annihilation", "(3-7)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CriticalStrikeChance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "critical" }, nodeType = 2, tradeHash = 2077117738, }, - ["JewelRadiusCriticalDamage"] = { type = "Suffix", affix = "of Potency", "(5-10)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "critical" }, nodeType = 2, tradeHash = 2359002191, }, - ["JewelRadiusSpellCriticalDamage"] = { type = "Suffix", affix = "of Unmaking", "(5-10)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster", "critical" }, nodeType = 2, tradeHash = 2466785537, }, - ["JewelRadiusCrossbowDamage"] = { type = "Prefix", affix = "Bolting", "(2-3)% increased Damage with Crossbows", statOrder = { 3849 }, level = 1, group = "CrossbowDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 517664839, }, - ["JewelRadiusCrossbowReloadSpeed"] = { type = "Suffix", affix = "of Reloading", "(5-7)% increased Crossbow Reload Speed", statOrder = { 9149 }, level = 1, group = "CrossbowReloadSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 3856744003, }, - ["JewelRadiusCrossbowSpeed"] = { type = "Suffix", affix = "of Rapidity", "(1-2)% increased Attack Speed with Crossbows", statOrder = { 3853 }, level = 1, group = "CrossbowSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 715957346, }, - ["JewelRadiusCurseArea"] = { type = "Prefix", affix = "Expanding", "(3-6)% increased Area of Effect of Curses", statOrder = { 1875 }, level = 1, group = "CurseAreaOfEffect", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHash = 3859848445, }, - ["JewelRadiusCurseDuration"] = { type = "Suffix", affix = "of Continuation", "(2-4)% increased Curse Duration", statOrder = { 1466 }, level = 1, group = "BaseCurseDuration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "curse" }, nodeType = 1, tradeHash = 1087108135, }, - ["JewelRadiusCurseEffect"] = { type = "Prefix", affix = "Hexing", "1% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHash = 2770044702, }, - ["JewelRadiusDaggerCriticalChance"] = { type = "Suffix", affix = "of Backstabbing", "(3-7)% increased Critical Hit Chance with Daggers", statOrder = { 1299 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHash = 4260437915, }, - ["JewelRadiusDaggerDamage"] = { type = "Prefix", affix = "Lethal", "(2-3)% increased Damage with Daggers", statOrder = { 1182 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 1441232665, }, - ["JewelRadiusDaggerSpeed"] = { type = "Suffix", affix = "of Slicing", "(1-2)% increased Attack Speed with Daggers", statOrder = { 1258 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 2172391939, }, - ["JewelRadiusDamagefromMana"] = { type = "Suffix", affix = "of Mind", "1% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, nodeType = 2, tradeHash = 2709646369, }, - ["JewelRadiusDamagevsArmourBrokenEnemies"] = { type = "Prefix", affix = "Exploiting", "(2-4)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5553 }, level = 1, group = "DamagevsArmourBrokenEnemies", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 1834658952, }, - ["JewelRadiusDamagingAilmentDuration"] = { type = "Suffix", affix = "of Suffusion", "(3-5)% increased Duration of Damaging Ailments on Enemies", statOrder = { 5668 }, level = 1, group = "DamagingAilmentDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHash = 2272980012, }, - ["JewelRadiusDazeBuildup"] = { type = "Suffix", affix = "of Dazing", "1% chance to Daze on Hit", statOrder = { 4530 }, level = 1, group = "DazeBuildup", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 4258000627, }, - ["JewelRadiusDebuffExpiry"] = { type = "Suffix", affix = "of Diminishing", "Debuffs on you expire (3-5)% faster", statOrder = { 5703 }, level = 1, group = "DebuffTimePassed", weightKey = { "int_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2256120736, }, - ["JewelRadiusElementalAilmentDuration"] = { type = "Suffix", affix = "of Suffering", "(3-5)% increased Duration of Ignite, Shock and Chill on Enemies", statOrder = { 6818 }, level = 1, group = "ElementalAilmentDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "ailment" }, nodeType = 2, tradeHash = 1323216174, }, - ["JewelRadiusElementalDamage"] = { type = "Prefix", affix = "Prismatic", "(1-2)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { "str_radius_jewel", "int_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, nodeType = 1, tradeHash = 3222402650, }, - ["JewelRadiusEmpoweredAttackDamage"] = { type = "Prefix", affix = "Empowering", "Empowered Attacks deal (2-3)% increased Damage", statOrder = { 5912 }, level = 1, group = "ExertedAttackDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 3395186672, }, - ["JewelRadiusEnergy"] = { type = "Suffix", affix = "of Generation", "Meta Skills gain (2-4)% increased Energy", statOrder = { 5987 }, level = 1, group = "EnergyGeneration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2849546516, }, - ["JewelRadiusEnergyShield"] = { type = "Prefix", affix = "Shimmering", "(2-3)% increased maximum Energy Shield", statOrder = { 868 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, nodeType = 1, tradeHash = 3665922113, }, - ["JewelRadiusEnergyShieldDelay"] = { type = "Prefix", affix = "Serene", "(5-7)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelay", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, nodeType = 2, tradeHash = 3394832998, }, - ["JewelRadiusEnergyShieldRecharge"] = { type = "Prefix", affix = "Fevered", "(2-3)% increased Energy Shield Recharge Rate", statOrder = { 966 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, nodeType = 1, tradeHash = 1552666713, }, - ["JewelRadiusEvasion"] = { type = "Prefix", affix = "Evasive", "(2-3)% increased Evasion Rating", statOrder = { 866 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "defences" }, nodeType = 1, tradeHash = 1994296038, }, - ["JewelRadiusFasterAilments"] = { type = "Suffix", affix = "of Decrepifying", "Damaging Ailments deal damage (2-3)% faster", statOrder = { 5671 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "ailment" }, nodeType = 2, tradeHash = 3173882956, }, - ["JewelRadiusFireDamage"] = { type = "Prefix", affix = "Flaming", "(1-2)% increased Fire Damage", statOrder = { 855 }, level = 1, group = "FireDamagePercentage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 1, tradeHash = 139889694, }, - ["JewelRadiusFirePenetration"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (1-2)% Fire Resistance", statOrder = { 2613 }, level = 1, group = "FireResistancePenetration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, nodeType = 1, tradeHash = 1432756708, }, - ["JewelRadiusFlailCriticalChance"] = { type = "Suffix", affix = "of Thrashing", "(3-7)% increased Critical Hit Chance with Flails", statOrder = { 3843 }, level = 1, group = "FlailCriticalChance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHash = 1441673288, }, - ["JewelRadiusFlailDamage"] = { type = "Prefix", affix = "Flailing", "(1-2)% increased Damage with Flails", statOrder = { 3838 }, level = 1, group = "FlailDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 2482383489, }, - ["JewelRadiusFlaskChargesGained"] = { type = "Suffix", affix = "of Gathering", "(3-5)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 2, tradeHash = 2066964205, }, - ["JewelRadiusFlaskDuration"] = { type = "Suffix", affix = "of Prolonging", "(1-2)% increased Flask Effect Duration", statOrder = { 879 }, level = 1, group = "FlaskDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, nodeType = 1, tradeHash = 1773308808, }, - ["JewelRadiusFocusEnergyShield"] = { type = "Prefix", affix = "Focusing", "(15-25)% increased Energy Shield from Equipped Focus", statOrder = { 6002 }, level = 1, group = "FocusEnergyShield", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "defences" }, nodeType = 2, tradeHash = 3419203492, }, - ["JewelRadiusForkingProjectiles"] = { type = "Suffix", affix = "of Forking", "Projectiles have (5-7)% chance for an additional Projectile when Forking", statOrder = { 5139 }, level = 1, group = "ForkingProjectiles", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 4258720395, }, - ["JewelRadiusFreezeAmount"] = { type = "Suffix", affix = "of Freezing", "(5-10)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1087531620, }, - ["JewelRadiusFreezeThreshold"] = { type = "Suffix", affix = "of Snowbreathing", "(2-4)% increased Freeze Threshold", statOrder = { 2879 }, level = 1, group = "FreezeThreshold", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 830345042, }, - ["JewelRadiusHeraldDamage"] = { type = "Prefix", affix = "Heralding", "Herald Skills deal (2-4)% increased Damage", statOrder = { 5632 }, level = 1, group = "HeraldDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 3065378291, }, - ["JewelRadiusIgniteChance"] = { type = "Suffix", affix = "of Ignition", "(2-3)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 394473632, }, - ["JewelRadiusIgniteEffect"] = { type = "Prefix", affix = "Burning", "(3-7)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 253641217, }, - ["JewelRadiusIncreasedDuration"] = { type = "Suffix", affix = "of Lengthening", "(3-5)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3113764475, }, - ["JewelRadiusKnockback"] = { type = "Suffix", affix = "of Fending", "(3-7)% increased Knockback Distance", statOrder = { 1669 }, level = 1, group = "KnockbackDistance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2976476845, }, - ["JewelRadiusLifeCost"] = { type = "Suffix", affix = "of Sacrifice", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 1, group = "LifeCost", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHash = 3386297724, }, - ["JewelRadiusLifeFlaskRecovery"] = { type = "Suffix", affix = "of Recovery", "(2-3)% increased Life Recovery from Flasks", statOrder = { 1719 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, nodeType = 1, tradeHash = 980177976, }, - ["JewelRadiusLifeFlaskChargeGen"] = { type = "Suffix", affix = "of Pathfinding", "(5-10)% increased Life Flask Charges gained", statOrder = { 6970 }, level = 1, group = "LifeFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 942519401, }, - ["JewelRadiusLifeLeech"] = { type = "Suffix", affix = "of Frenzy", "(2-3)% increased amount of Life Leeched", statOrder = { 1820 }, level = 1, group = "LifeLeechAmount", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 3666476747, }, - ["JewelRadiusLifeonKill"] = { type = "Suffix", affix = "of Success", "Recover 1% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHash = 2726713579, }, - ["JewelRadiusLifeRecoup"] = { type = "Suffix", affix = "of Infusion", "1% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHash = 3669820740, }, - ["JewelRadiusLifeRegeneration"] = { type = "Suffix", affix = "of Regeneration", "(3-5)% increased Life Regeneration rate", statOrder = { 969 }, level = 1, group = "LifeRegenerationRate", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 2, tradeHash = 1185341308, }, - ["JewelRadiusLightningDamage"] = { type = "Prefix", affix = "Humming", "(1-2)% increased Lightning Damage", statOrder = { 857 }, level = 1, group = "LightningDamagePercentage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 1, tradeHash = 2768899959, }, - ["JewelRadiusLightningPenetration"] = { type = "Prefix", affix = "Surging", "Damage Penetrates (1-2)% Lightning Resistance", statOrder = { 2615 }, level = 1, group = "LightningResistancePenetration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, nodeType = 1, tradeHash = 868556494, }, - ["JewelRadiusMaceDamage"] = { type = "Prefix", affix = "Beating", "(1-2)% increased Damage with Maces", statOrder = { 1186 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 1852184471, }, - ["JewelRadiusMaceStun"] = { type = "Suffix", affix = "of Thumping", "(6-12)% increased Stun Buildup with Maces", statOrder = { 7459 }, level = 1, group = "MaceStun", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, nodeType = 2, tradeHash = 2392824305, }, - ["JewelRadiusManaFlaskRecovery"] = { type = "Suffix", affix = "of Quenching", "(1-2)% increased Mana Recovery from Flasks", statOrder = { 1720 }, level = 1, group = "FlaskManaRecovery", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "mana" }, nodeType = 1, tradeHash = 3774951878, }, - ["JewelRadiusManaFlaskChargeGen"] = { type = "Suffix", affix = "of Fountains", "(5-10)% increased Mana Flask Charges gained", statOrder = { 7491 }, level = 1, group = "ManaFlaskChargePercentGeneration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 3171212276, }, - ["JewelRadiusManaLeech"] = { type = "Suffix", affix = "of Thirsting", "(1-2)% increased amount of Mana Leeched", statOrder = { 1822 }, level = 1, group = "ManaLeechAmount", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHash = 3700202631, }, - ["JewelRadiusManaonKill"] = { type = "Suffix", affix = "of Osmosis", "Recover 1% of maximum Mana on Kill", statOrder = { 1443 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 2, tradeHash = 525523040, }, - ["JewelRadiusManaRegeneration"] = { type = "Suffix", affix = "of Energy", "(1-2)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, nodeType = 1, tradeHash = 3256879910, }, - ["JewelRadiusMarkCastSpeed"] = { type = "Suffix", affix = "of Targeting", "Mark Skills have (2-3)% increased Use Speed", statOrder = { 1871 }, level = 1, group = "MarkCastSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed", "curse" }, nodeType = 1, tradeHash = 2202308025, }, - ["JewelRadiusMarkDuration"] = { type = "Suffix", affix = "of Tracking", "Mark Skills have (3-4)% increased Skill Effect Duration", statOrder = { 8276 }, level = 1, group = "MarkDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 4162678661, }, - ["JewelRadiusMarkEffect"] = { type = "Prefix", affix = "Marking", "(2-3)% increased Effect of your Mark Skills", statOrder = { 2268 }, level = 1, group = "MarkEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "curse" }, nodeType = 2, tradeHash = 179541474, }, - ["JewelRadiusMaximumRage"] = { type = "Prefix", affix = "Angry", "+1 to Maximum Rage", statOrder = { 9032 }, level = 1, group = "MaximumRage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1846980580, }, - ["JewelRadiusMeleeDamage"] = { type = "Prefix", affix = "Clashing", "(1-2)% increased Melee Damage", statOrder = { 1124 }, level = 1, group = "MeleeDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 1337740333, }, - ["JewelRadiusMinionAccuracy"] = { type = "Prefix", affix = "Training", "(2-3)% increased Minion Accuracy Rating", statOrder = { 8446 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, nodeType = 1, tradeHash = 793875384, }, - ["JewelRadiusMinionArea"] = { type = "Prefix", affix = "Companion", "Minions have (3-5)% increased Area of Effect", statOrder = { 2649 }, level = 1, group = "MinionAreaOfEffect", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion" }, nodeType = 2, tradeHash = 2534359663, }, - ["JewelRadiusMinionAttackandCastSpeed"] = { type = "Suffix", affix = "of Orchestration", "Minions have (1-2)% increased Attack and Cast Speed", statOrder = { 8453 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "caster", "speed", "minion" }, nodeType = 2, tradeHash = 3106718406, }, - ["JewelRadiusMinionChaosResistance"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(1-2)% to Chaos Resistance", statOrder = { 2559 }, level = 1, group = "MinionChaosResistance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos", "resistance", "minion" }, nodeType = 1, tradeHash = 1756380435, }, - ["JewelRadiusMinionCriticalChance"] = { type = "Suffix", affix = "of Marshalling", "Minions have (5-10)% increased Critical Hit Chance", statOrder = { 8476 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "minion", "critical" }, nodeType = 2, tradeHash = 3628935286, }, - ["JewelRadiusMinionCriticalMultiplier"] = { type = "Suffix", affix = "of Gripping", "Minions have (6-12)% increased Critical Damage Bonus", statOrder = { 8478 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "minion", "critical" }, nodeType = 2, tradeHash = 593241812, }, - ["JewelRadiusMinionDamage"] = { type = "Prefix", affix = "Authoritative", "Minions deal (1-2)% increased Damage", statOrder = { 1646 }, level = 1, group = "MinionDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, nodeType = 1, tradeHash = 2954360902, }, - ["JewelRadiusMinionLife"] = { type = "Prefix", affix = "Fortuitous", "Minions have (1-2)% increased maximum Life", statOrder = { 962 }, level = 1, group = "MinionLife", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHash = 378796798, }, - ["JewelRadiusMinionPhysicalDamageReduction"] = { type = "Suffix", affix = "of Confidence", "Minions have (1-2)% additional Physical Damage Reduction", statOrder = { 1946 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical", "minion" }, nodeType = 1, tradeHash = 30438393, }, - ["JewelRadiusMinionResistances"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(1-2)% to all Elemental Resistances", statOrder = { 2558 }, level = 1, group = "MinionElementalResistance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "resistance", "minion" }, nodeType = 1, tradeHash = 3225608889, }, - ["JewelRadiusMinionReviveSpeed"] = { type = "Suffix", affix = "of Revival", "Minions Revive (3-7)% faster", statOrder = { 8529 }, level = 1, group = "MinionReviveSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "minion" }, nodeType = 2, tradeHash = 50413020, }, - ["JewelRadiusMovementSpeed"] = { type = "Suffix", affix = "of Speed", "1% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHash = 844449513, }, - ["JewelRadiusOfferingDuration"] = { type = "Suffix", affix = "of Offering", "Offering Skills have (6-12)% increased Duration", statOrder = { 8776 }, level = 1, group = "OfferingDuration", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2374711847, }, - ["JewelRadiusOfferingLife"] = { type = "Prefix", affix = "Sacrificial", "Offerings have (2-3)% increased Maximum Life", statOrder = { 8777 }, level = 1, group = "OfferingLife", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 2107703111, }, - ["JewelRadiusPhysicalDamage"] = { type = "Prefix", affix = "Sharpened", "(1-2)% increased Global Physical Damage", statOrder = { 1122 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical" }, nodeType = 1, tradeHash = 1417267954, }, - ["JewelRadiusPiercingProjectiles"] = { type = "Suffix", affix = "of Piercing", "(5-10)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 1, group = "ChanceToPierce", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1800303440, }, - ["JewelRadiusPinBuildup"] = { type = "Suffix", affix = "of Pinning", "(5-10)% increased Pin Buildup", statOrder = { 6750 }, level = 1, group = "PinBuildup", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1944020877, }, - ["JewelRadiusPoisonChance"] = { type = "Suffix", affix = "of Poisoning", "1% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 2840989393, }, - ["JewelRadiusPoisonDamage"] = { type = "Prefix", affix = "Venomous", "(3-7)% increased Magnitude of Poison you inflict", statOrder = { 8925 }, level = 1, group = "PoisonEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "ailment" }, nodeType = 2, tradeHash = 462424929, }, - ["JewelRadiusPoisonDuration"] = { type = "Suffix", affix = "of Infection", "(3-7)% increased Poison Duration", statOrder = { 2786 }, level = 1, group = "PoisonDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, nodeType = 2, tradeHash = 221701169, }, - ["JewelRadiusProjectileDamage"] = { type = "Prefix", affix = "Archer's", "(1-2)% increased Projectile Damage", statOrder = { 1663 }, level = 1, group = "ProjectileDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 455816363, }, - ["JewelRadiusProjectileSpeed"] = { type = "Prefix", affix = "Soaring", "(2-3)% increased Projectile Speed", statOrder = { 875 }, level = 1, group = "ProjectileSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHash = 1777421941, }, - ["JewelRadiusQuarterstaffDamage"] = { type = "Prefix", affix = "Monk's", "(1-2)% increased Damage with Quarterstaves", statOrder = { 1175 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 821948283, }, - ["JewelRadiusQuarterstaffFreezeBuildup"] = { type = "Suffix", affix = "of Glaciers", "(5-10)% increased Freeze Buildup with Quarterstaves", statOrder = { 9020 }, level = 1, group = "QuarterstaffFreezeBuildup", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 127081978, }, - ["JewelRadiusQuarterstaffSpeed"] = { type = "Suffix", affix = "of Sequencing", "(1-2)% increased Attack Speed with Quarterstaves", statOrder = { 1256 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 111835965, }, - ["JewelRadiusQuiverEffect"] = { type = "Prefix", affix = "Fletching", "(2-3)% increased bonuses gained from Equipped Quiver", statOrder = { 9028 }, level = 1, group = "QuiverModifierEffect", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 4180952808, }, - ["JewelRadiusRageonHit"] = { type = "Suffix", affix = "of Raging", "Gain 1 Rage on Melee Hit", statOrder = { 6431 }, level = 1, group = "RageOnHit", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2969557004, }, - ["JewelRadiusRagewhenHit"] = { type = "Suffix", affix = "of Retribution", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6433 }, level = 1, group = "GainRageWhenHit", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2131720304, }, - ["JewelRadiusShieldDefences"] = { type = "Prefix", affix = "Shielding", "(8-15)% increased Defences from Equipped Shield", statOrder = { 9241 }, level = 1, group = "ShieldArmourIncrease", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences" }, nodeType = 2, tradeHash = 713216632, }, - ["JewelRadiusShockChance"] = { type = "Suffix", affix = "of Shocking", "(2-3)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 1039268420, }, - ["JewelRadiusShockDuration"] = { type = "Suffix", affix = "of Paralyzing", "(2-3)% increased Shock Duration", statOrder = { 1540 }, level = 1, group = "ShockDuration", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 1, tradeHash = 3513818125, }, - ["JewelRadiusShockEffect"] = { type = "Prefix", affix = "Jolting", "(5-7)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "ShockEffect", weightKey = { "dex_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, nodeType = 2, tradeHash = 1166140625, }, - ["JewelRadiusSlowEffectOnSelf"] = { type = "Suffix", affix = "of Hastening", "(2-5)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2580617872, }, - ["JewelRadiusSpearAttackSpeed"] = { type = "Suffix", affix = "of Spearing", "(1-2)% increased Attack Speed with Spears", statOrder = { 1263 }, level = 1, group = "SpearAttackSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 1266413530, }, - ["JewelRadiusSpearCriticalDamage"] = { type = "Suffix", affix = "of Hunting", "(5-10)% increased Critical Damage Bonus with Spears", statOrder = { 1328 }, level = 1, group = "SpearCriticalDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "attack", "critical" }, nodeType = 2, tradeHash = 138421180, }, - ["JewelRadiusSpearDamage"] = { type = "Prefix", affix = "Spearheaded", "(1-2)% increased Damage with Spears", statOrder = { 1204 }, level = 1, group = "SpearDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 2809428780, }, - ["JewelRadiusSpellCriticalChance"] = { type = "Suffix", affix = "of Annihilating", "(3-7)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster", "critical" }, nodeType = 2, tradeHash = 2704905000, }, - ["JewelRadiusSpellDamage"] = { type = "Prefix", affix = "Mystic", "(1-2)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHash = 1137305356, }, - ["JewelRadiusStunBuildup"] = { type = "Suffix", affix = "of Stunning", "(5-10)% increased Stun Buildup", statOrder = { 984 }, level = 1, group = "StunDamageIncrease", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 4173554949, }, - ["JewelRadiusStunThreshold"] = { type = "Suffix", affix = "of Withstanding", "(1-2)% increased Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 484792219, }, - ["JewelRadiusStunThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Barriers", "Gain additional Stun Threshold equal to (1-2)% of maximum Energy Shield", statOrder = { 9531 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 1653682082, }, - ["JewelRadiusAilmentThresholdfromEnergyShield"] = { type = "Suffix", affix = "of Inuring", "Gain additional Ailment Threshold equal to (1-2)% of maximum Energy Shield", statOrder = { 4146 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "ailment" }, nodeType = 1, tradeHash = 693237939, }, - ["JewelRadiusStunThresholdIfNotStunnedRecently"] = { type = "Suffix", affix = "of Stoutness", "(2-3)% increased Stun Threshold if you haven't been Stunned Recently", statOrder = { 9533 }, level = 1, group = "IncreasedStunThresholdIfNoRecentStun", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 654207792, }, - ["JewelRadiusBleedingEffect"] = { type = "Prefix", affix = "Haemorrhaging", "(3-7)% increased Magnitude of Bleeding you inflict", statOrder = { 4662 }, level = 1, group = "BleedDotMultiplier", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, nodeType = 2, tradeHash = 391602279, }, - ["JewelRadiusSwordDamage"] = { type = "Prefix", affix = "Vicious", "(1-2)% increased Damage with Swords", statOrder = { 1196 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 1417549986, }, - ["JewelRadiusSwordSpeed"] = { type = "Suffix", affix = "of Fencing", "(1-2)% increased Attack Speed with Swords", statOrder = { 1261 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 3492019295, }, - ["JewelRadiusThorns"] = { type = "Prefix", affix = "Retaliating", "(2-3)% increased Thorns damage", statOrder = { 9646 }, level = 1, group = "ThornsDamageIncrease", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 1320662475, }, - ["JewelRadiusTotemDamage"] = { type = "Prefix", affix = "Shaman's", "(2-3)% increased Totem Damage", statOrder = { 1089 }, level = 1, group = "TotemDamageForJewel", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 2108821127, }, - ["JewelRadiusTotemLife"] = { type = "Prefix", affix = "Carved", "(2-3)% increased Totem Life", statOrder = { 1459 }, level = 1, group = "IncreasedTotemLife", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, nodeType = 1, tradeHash = 442393998, }, - ["JewelRadiusTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ancestry", "(2-3)% increased Totem Placement speed", statOrder = { 2250 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHash = 1145481685, }, - ["JewelRadiusTrapDamage"] = { type = "Prefix", affix = "Trapping", "(1-2)% increased Trap Damage", statOrder = { 854 }, level = 1, group = "TrapDamage", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 836472423, }, - ["JewelRadiusTrapThrowSpeed"] = { type = "Suffix", affix = "of Preparation", "(2-4)% increased Trap Throwing Speed", statOrder = { 1597 }, level = 1, group = "TrapThrowSpeed", weightKey = { "int_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "speed" }, nodeType = 2, tradeHash = 2391207117, }, - ["JewelRadiusTriggeredSpellDamage"] = { type = "Prefix", affix = "Triggered", "Triggered Spells deal (2-3)% increased Spell Damage", statOrder = { 9712 }, level = 1, group = "DamageWithTriggeredSpells", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, nodeType = 1, tradeHash = 473917671, }, - ["JewelRadiusUnarmedDamage"] = { type = "Prefix", affix = "Punching", "(1-2)% increased Damage with Unarmed Attacks", statOrder = { 3153 }, level = 1, group = "UnarmedDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 1970067060, }, - ["JewelRadiusWarcryBuffEffect"] = { type = "Prefix", affix = "of Warcries", "(3-7)% increased Warcry Buff Effect", statOrder = { 9883 }, level = 1, group = "WarcryEffect", weightKey = { "str_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, nodeType = 2, tradeHash = 2675129731, }, - ["JewelRadiusWarcryCooldown"] = { type = "Suffix", affix = "of Rallying", "(3-7)% increased Warcry Cooldown Recovery Rate", statOrder = { 2929 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2056107438, }, - ["JewelRadiusWarcryDamage"] = { type = "Prefix", affix = "Yelling", "(2-3)% increased Damage with Warcries", statOrder = { 9886 }, level = 1, group = "WarcryDamage", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 1160637284, }, - ["JewelRadiusWarcrySpeed"] = { type = "Suffix", affix = "of Lungs", "(2-3)% increased Warcry Speed", statOrder = { 2884 }, level = 1, group = "WarcrySpeed", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, nodeType = 1, tradeHash = 1602294220, }, - ["JewelRadiusWeaponSwapSpeed"] = { type = "Suffix", affix = "of Swapping", "(2-4)% increased Weapon Swap Speed", statOrder = { 9897 }, level = 1, group = "WeaponSwapSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, nodeType = 1, tradeHash = 1129429646, }, - ["JewelRadiusWitheredEffect"] = { type = "Prefix", affix = "Withering", "(3-5)% increased Withered Magnitude", statOrder = { 9915 }, level = 1, group = "WitheredEffect", weightKey = { "int_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "chaos" }, nodeType = 2, tradeHash = 3936121440, }, - ["JewelRadiusUnarmedAttackSpeed"] = { type = "Suffix", affix = "of Jabbing", "(1-2)% increased Unarmed Attack Speed", statOrder = { 9768 }, level = 1, group = "UnarmedAttackSpeed", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, nodeType = 2, tradeHash = 541647121, }, - ["JewelRadiusProjectileDamageIfMeleeHitRecently"] = { type = "Prefix", affix = "Retreating", "(2-3)% increased Projectile Damage if you've dealt a Melee Hit in the past eight seconds", statOrder = { 8973 }, level = 1, group = "ProjectileDamageIfMeleeHitRecently", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 288364275, }, - ["JewelRadiusMeleeDamageIfProjectileHitRecently"] = { type = "Prefix", affix = "Engaging", "(2-3)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8364 }, level = 1, group = "MeleeDamageIfProjectileHitRecently", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "attack" }, nodeType = 1, tradeHash = 2421151933, }, - ["JewelRadiusParryDamage"] = { type = "Prefix", affix = "Parrying", "(2-3)% increased Parry Damage", statOrder = { 8799 }, level = 1, group = "ParryDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 1007380041, }, - ["JewelRadiusParriedDebuffDuration"] = { type = "Suffix", affix = "of Unsettling", "(5-10)% increased Parried Debuff Duration", statOrder = { 8808 }, level = 1, group = "ParriedDebuffDuration", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "block" }, nodeType = 2, tradeHash = 1514844108, }, - ["JewelRadiusStunThresholdDuringParry"] = { type = "Suffix", affix = "of Biding", "(8-12)% increased Stun Threshold while Parrying", statOrder = { 8809 }, level = 1, group = "StunThresholdDuringParry", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 1495814176, }, - ["JewelRadiusVolatilityOnKillChance"] = { type = "Suffix", affix = "of Volatility", "1% chance to gain Volatility on Kill", statOrder = { 9860 }, level = 1, group = "VolatilityOnKillChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, nodeType = 2, tradeHash = 4225700219, }, - ["JewelRadiusCompanionDamage"] = { type = "Prefix", affix = "Kinship", "Companions deal (2-3)% increased Damage", statOrder = { 5339 }, level = 1, group = "CompanionDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage", "minion" }, nodeType = 1, tradeHash = 1494950893, }, - ["JewelRadiusCompanionLife"] = { type = "Prefix", affix = "Kindred", "Companions have (2-3)% increased maximum Life", statOrder = { 5342 }, level = 1, group = "CompanionLife", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, nodeType = 1, tradeHash = 2638756573, }, - ["JewelRadiusHazardDamage"] = { type = "Prefix", affix = "Hazardous", "(2-3)% increased Hazard Damage", statOrder = { 6536 }, level = 1, group = "HazardDamage", weightKey = { "dex_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 255840549, }, - ["JewelRadiusIncisionChance"] = { type = "Prefix", affix = "Incise", "(3-5)% chance for Attack Hits to apply Incision", statOrder = { 5175 }, level = 1, group = "IncisionChance", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "ailment" }, nodeType = 1, tradeHash = 318092306, }, - ["JewelRadiusBannerValourGained"] = { type = "Suffix", affix = "of Valour", "(8-12)% increased Glory generation for Banner Skills", statOrder = { 6474 }, level = 1, group = "BannerValourGained", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 2907381231, }, - ["JewelRadiusBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (2-3)% increased Area of Effect", statOrder = { 4495 }, level = 1, group = "BannerArea", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 4142814612, }, - ["JewelRadiusBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (3-4)% increased Duration", statOrder = { 4497 }, level = 1, group = "BannerDuration", weightKey = { "str_radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, nodeType = 1, tradeHash = 2690740379, }, - ["JewelRadiusPresenceRadius"] = { type = "Prefix", affix = "Iconic", "(8-12)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { "str_radius_jewel", "int_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, nodeType = 2, tradeHash = 4032352472, }, - ["JewelRadiusShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(1-2)% increased Skill Speed while Shapeshifted", statOrder = { 9317 }, level = 1, group = "ShapeshiftSkillSpeedForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, nodeType = 2, tradeHash = 3579898587, }, - ["JewelRadiusShapeshiftDamage"] = { type = "Prefix", affix = "Bestial", "(1-2)% increased Damage while Shapeshifted", statOrder = { 5567 }, level = 1, group = "ShapeshiftDamageForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 266564538, }, - ["JewelRadiusPlantDamage"] = { type = "Prefix", affix = "Overgrown", "(1-2)% increased Damage with Plant Skills", statOrder = { 8914 }, level = 1, group = "PlantDamageForJewel", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "damage" }, nodeType = 1, tradeHash = 1590846356, }, - ["JewelShapeshiftSpeed"] = { type = "Suffix", affix = "of the Wild", "(2-4)% increased Skill Speed while Shapeshifted", statOrder = { 9317 }, level = 1, group = "ShapeshiftSkillSpeedForJewel", weightKey = { "intjewel", "strjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "speed" }, tradeHash = 918325986, }, - ["JewelShapeshiftDamage"] = { type = "Prefix", affix = "Bestial", "(5-15)% increased Damage while Shapeshifted", statOrder = { 5567 }, level = 1, group = "ShapeshiftDamageForJewel", weightKey = { "intjewel", "strjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { "damage" }, tradeHash = 2440073079, }, - ["JewelPlantDamage"] = { type = "Prefix", affix = "Overgrown", "(5-15)% increased Damage with Plant Skills", statOrder = { 8914 }, level = 1, group = "PlantDamageForJewel", weightKey = { "intjewel", "strjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "damage" }, tradeHash = 2518900926, }, } \ No newline at end of file diff --git a/src/Data/ModRunes.lua b/src/Data/ModRunes.lua index 05184a0e23..23b4e931e3 100644 --- a/src/Data/ModRunes.lua +++ b/src/Data/ModRunes.lua @@ -7,7 +7,7 @@ return { type = "Rune", "+40% of Armour also applies to Cold Damage", statOrder = { 4512 }, - tradeHashes = { 1947060170 }, + tradeHashes = { [1947060170] = { "+40% of Armour also applies to Cold Damage" }, }, rank = { 50 }, }, }, @@ -16,7 +16,7 @@ return { type = "Rune", "+40% of Armour also applies to Lightning Damage", statOrder = { 4514 }, - tradeHashes = { 2200571612 }, + tradeHashes = { [2200571612] = { "+40% of Armour also applies to Lightning Damage" }, }, rank = { 50 }, }, }, @@ -25,7 +25,7 @@ return { type = "Rune", "+40% of Armour also applies to Fire Damage", statOrder = { 4513 }, - tradeHashes = { 3897831687 }, + tradeHashes = { [3897831687] = { "+40% of Armour also applies to Fire Damage" }, }, rank = { 50 }, }, }, @@ -34,14 +34,14 @@ return { type = "Rune", "30% faster start of Energy Shield Recharge", statOrder = { 967 }, - tradeHashes = { 1782086450 }, + tradeHashes = { [1782086450] = { "30% faster start of Energy Shield Recharge" }, }, rank = { 50 }, }, ["focus"] = { type = "Rune", "30% faster start of Energy Shield Recharge", statOrder = { 967 }, - tradeHashes = { 1782086450 }, + tradeHashes = { [1782086450] = { "30% faster start of Energy Shield Recharge" }, }, rank = { 50 }, }, }, @@ -51,7 +51,7 @@ return { "8% increased Skill Effect Duration", "8% increased Cooldown Recovery Rate", statOrder = { 1572, 4539 }, - tradeHashes = { 3377888098, 1004011302, 3377888098, 1004011302 }, + tradeHashes = { [1004011302] = { "8% increased Cooldown Recovery Rate" }, [3377888098] = { "8% increased Skill Effect Duration" }, }, rank = { 50 }, }, }, @@ -60,7 +60,7 @@ return { type = "Rune", "+4 to Maximum Rage", statOrder = { 9032 }, - tradeHashes = { 1181501418 }, + tradeHashes = { [1181501418] = { "+4 to Maximum Rage" }, }, rank = { 50 }, }, }, @@ -70,7 +70,7 @@ return { "15% increased Curse Duration", "15% increased Poison Duration", statOrder = { 1466, 2786 }, - tradeHashes = { 3824372849, 2011656677, 3824372849, 2011656677 }, + tradeHashes = { [2011656677] = { "15% increased Poison Duration" }, [3824372849] = { "15% increased Curse Duration" }, }, rank = { 50 }, }, }, @@ -79,14 +79,14 @@ return { type = "Rune", "50% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", statOrder = { 5144 }, - tradeHashes = { 2916861134 }, + tradeHashes = { [2916861134] = { "50% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge" }, }, rank = { 50 }, }, ["caster"] = { type = "Rune", "50% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge", statOrder = { 5144 }, - tradeHashes = { 2916861134 }, + tradeHashes = { [2916861134] = { "50% chance when you gain a Frenzy Charge to gain an additional Frenzy Charge" }, }, rank = { 50 }, }, }, @@ -95,14 +95,14 @@ return { type = "Rune", "50% chance when you gain an Endurance Charge to gain an additional Endurance Charge", statOrder = { 5143 }, - tradeHashes = { 1228682002 }, + tradeHashes = { [1228682002] = { "50% chance when you gain an Endurance Charge to gain an additional Endurance Charge" }, }, rank = { 50 }, }, ["caster"] = { type = "Rune", "50% chance when you gain an Endurance Charge to gain an additional Endurance Charge", statOrder = { 5143 }, - tradeHashes = { 1228682002 }, + tradeHashes = { [1228682002] = { "50% chance when you gain an Endurance Charge to gain an additional Endurance Charge" }, }, rank = { 50 }, }, }, @@ -111,14 +111,14 @@ return { type = "Rune", "50% chance when you gain a Power Charge to gain an additional Power Charge", statOrder = { 5145 }, - tradeHashes = { 3537994888 }, + tradeHashes = { [3537994888] = { "50% chance when you gain a Power Charge to gain an additional Power Charge" }, }, rank = { 50 }, }, ["caster"] = { type = "Rune", "50% chance when you gain a Power Charge to gain an additional Power Charge", statOrder = { 5145 }, - tradeHashes = { 3537994888 }, + tradeHashes = { [3537994888] = { "50% chance when you gain a Power Charge to gain an additional Power Charge" }, }, rank = { 50 }, }, }, @@ -127,14 +127,14 @@ return { type = "Rune", "12% increased speed of Recoup Effects", statOrder = { 9084 }, - tradeHashes = { 2363593824 }, + tradeHashes = { [2363593824] = { "12% increased speed of Recoup Effects" }, }, rank = { 50 }, }, ["helmet"] = { type = "Rune", "8% of Damage taken Recouped as Life", statOrder = { 970 }, - tradeHashes = { 1444556985 }, + tradeHashes = { [1444556985] = { "8% of Damage taken Recouped as Life" }, }, rank = { 50 }, }, }, @@ -143,7 +143,7 @@ return { type = "Rune", "Enemies you Curse have -5% to Chaos Resistance", statOrder = { 3617 }, - tradeHashes = { 1772929282 }, + tradeHashes = { [1772929282] = { "Enemies you Curse have -5% to Chaos Resistance" }, }, rank = { 50 }, }, }, @@ -152,7 +152,7 @@ return { type = "Rune", "20% increased Projectile Speed", statOrder = { 875 }, - tradeHashes = { 3759663284 }, + tradeHashes = { [3759663284] = { "20% increased Projectile Speed" }, }, rank = { 50 }, }, }, @@ -161,7 +161,7 @@ return { type = "Rune", "Adds 19 to 29 Chaos damage", statOrder = { 1227 }, - tradeHashes = { 2223678961 }, + tradeHashes = { [2223678961] = { "Adds 19 to 29 Chaos damage" }, }, rank = { 50 }, }, }, @@ -170,14 +170,14 @@ return { type = "Rune", "Minions deal 40% increased Damage with Command Skills", statOrder = { 8473 }, - tradeHashes = { 3742865955 }, + tradeHashes = { [3742865955] = { "Minions deal 40% increased Damage with Command Skills" }, }, rank = { 50 }, }, ["sceptre"] = { type = "Rune", "Minions deal 40% increased Damage with Command Skills", statOrder = { 8473 }, - tradeHashes = { 3742865955 }, + tradeHashes = { [3742865955] = { "Minions deal 40% increased Damage with Command Skills" }, }, rank = { 50 }, }, }, @@ -186,14 +186,14 @@ return { type = "Rune", "15% chance to Poison on Hit with this weapon", statOrder = { 7334 }, - tradeHashes = { 3885634897 }, + tradeHashes = { [3885634897] = { "15% chance to Poison on Hit with this weapon" }, }, rank = { 0 }, }, ["armour"] = { type = "Rune", "+11% to Chaos Resistance", statOrder = { 961 }, - tradeHashes = { 2923486259 }, + tradeHashes = { [2923486259] = { "+11% to Chaos Resistance" }, }, rank = { 0 }, }, }, @@ -202,14 +202,14 @@ return { type = "Rune", "15% chance to cause Bleeding on Hit", statOrder = { 2153 }, - tradeHashes = { 1519615863 }, + tradeHashes = { [1519615863] = { "15% chance to cause Bleeding on Hit" }, }, rank = { 0 }, }, ["helmet"] = { type = "Rune", "20% increased Charm Charges gained", statOrder = { 5227 }, - tradeHashes = { 3585532255 }, + tradeHashes = { [3585532255] = { "20% increased Charm Charges gained" }, }, rank = { 0 }, }, }, @@ -218,14 +218,14 @@ return { type = "Rune", "Recover 2% of maximum Life on Kill", statOrder = { 1437 }, - tradeHashes = { 2023107756 }, + tradeHashes = { [2023107756] = { "Recover 2% of maximum Life on Kill" }, }, rank = { 0 }, }, ["body armour"] = { type = "Rune", "3% increased maximum Life", statOrder = { 870 }, - tradeHashes = { 983749596 }, + tradeHashes = { [983749596] = { "3% increased maximum Life" }, }, rank = { 0 }, }, }, @@ -234,14 +234,14 @@ return { type = "Rune", "Recover 2% of maximum Mana on Kill", statOrder = { 1439 }, - tradeHashes = { 1030153674 }, + tradeHashes = { [1030153674] = { "Recover 2% of maximum Mana on Kill" }, }, rank = { 0 }, }, ["helmet"] = { type = "Rune", "3% increased maximum Mana", statOrder = { 872 }, - tradeHashes = { 2748665614 }, + tradeHashes = { [2748665614] = { "3% increased maximum Mana" }, }, rank = { 0 }, }, }, @@ -250,14 +250,14 @@ return { type = "Rune", "30% increased Elemental Damage with Attacks", statOrder = { 859 }, - tradeHashes = { 387439868 }, + tradeHashes = { [387439868] = { "30% increased Elemental Damage with Attacks" }, }, rank = { 0 }, }, ["armour"] = { type = "Rune", "+5% to all Elemental Resistances", statOrder = { 957 }, - tradeHashes = { 2901986750 }, + tradeHashes = { [2901986750] = { "+5% to all Elemental Resistances" }, }, rank = { 0 }, }, }, @@ -266,14 +266,14 @@ return { type = "Rune", "30% increased Flammability Magnitude", statOrder = { 988 }, - tradeHashes = { 2968503605 }, + tradeHashes = { [2968503605] = { "30% increased Flammability Magnitude" }, }, rank = { 0 }, }, ["gloves"] = { type = "Rune", "+1% to Maximum Fire Resistance", statOrder = { 953 }, - tradeHashes = { 4095671657 }, + tradeHashes = { [4095671657] = { "+1% to Maximum Fire Resistance" }, }, rank = { 0 }, }, }, @@ -282,14 +282,14 @@ return { type = "Rune", "30% increased Freeze Buildup", statOrder = { 990 }, - tradeHashes = { 473429811 }, + tradeHashes = { [473429811] = { "30% increased Freeze Buildup" }, }, rank = { 0 }, }, ["helmet"] = { type = "Rune", "+1% to Maximum Cold Resistance", statOrder = { 954 }, - tradeHashes = { 3676141501 }, + tradeHashes = { [3676141501] = { "+1% to Maximum Cold Resistance" }, }, rank = { 0 }, }, }, @@ -298,14 +298,14 @@ return { type = "Rune", "30% increased chance to Shock", statOrder = { 992 }, - tradeHashes = { 293638271 }, + tradeHashes = { [293638271] = { "30% increased chance to Shock" }, }, rank = { 0 }, }, ["boots"] = { type = "Rune", "+1% to Maximum Lightning Resistance", statOrder = { 955 }, - tradeHashes = { 1011760251 }, + tradeHashes = { [1011760251] = { "+1% to Maximum Lightning Resistance" }, }, rank = { 0 }, }, }, @@ -314,14 +314,14 @@ return { type = "Rune", "+15 to Spirit", statOrder = { 874 }, - tradeHashes = { 3981240776 }, + tradeHashes = { [3981240776] = { "+15 to Spirit" }, }, rank = { 0 }, }, ["gloves"] = { type = "Rune", "10% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 6476 }, - tradeHashes = { 3175163625 }, + tradeHashes = { [3175163625] = { "10% increased Quantity of Gold Dropped by Slain Enemies" }, }, rank = { 0 }, }, }, @@ -330,14 +330,14 @@ return { type = "Rune", "Attacks with this Weapon Penetrate 15% Elemental Resistances", statOrder = { 3330 }, - tradeHashes = { 4064396395 }, + tradeHashes = { [4064396395] = { "Attacks with this Weapon Penetrate 15% Elemental Resistances" }, }, rank = { 0 }, }, ["boots"] = { type = "Rune", "25% increased Elemental Ailment Threshold", statOrder = { 4147 }, - tradeHashes = { 3544800472 }, + tradeHashes = { [3544800472] = { "25% increased Elemental Ailment Threshold" }, }, rank = { 0 }, }, }, @@ -346,14 +346,14 @@ return { type = "Rune", "5% increased Attack Speed", statOrder = { 919 }, - tradeHashes = { 210067635 }, + tradeHashes = { [210067635] = { "5% increased Attack Speed" }, }, rank = { 0 }, }, ["boots"] = { type = "Rune", "15% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, - tradeHashes = { 924253255 }, + tradeHashes = { [924253255] = { "15% reduced Slowing Potency of Debuffs on You" }, }, rank = { 0 }, }, }, @@ -362,21 +362,21 @@ return { type = "Rune", "+5% to Critical Damage Bonus", statOrder = { 918 }, - tradeHashes = { 2694482655 }, + tradeHashes = { [2694482655] = { "+5% to Critical Damage Bonus" }, }, rank = { 0 }, }, ["body armour"] = { type = "Rune", "Hits against you have 20% reduced Critical Damage Bonus", statOrder = { 950 }, - tradeHashes = { 3855016469 }, + tradeHashes = { [3855016469] = { "Hits against you have 20% reduced Critical Damage Bonus" }, }, rank = { 0 }, }, ["shield"] = { type = "Rune", "Hits against you have 20% reduced Critical Damage Bonus", statOrder = { 950 }, - tradeHashes = { 3855016469 }, + tradeHashes = { [3855016469] = { "Hits against you have 20% reduced Critical Damage Bonus" }, }, rank = { 0 }, }, }, @@ -385,14 +385,14 @@ return { type = "Rune", "Convert 20% of Requirements to Strength", statOrder = { 7338 }, - tradeHashes = { 1556124492 }, + tradeHashes = { [1556124492] = { "Convert 20% of Requirements to Strength" }, }, rank = { 0 }, }, ["armour"] = { type = "Rune", "Convert 20% of Requirements to Strength", statOrder = { 7338 }, - tradeHashes = { 1556124492 }, + tradeHashes = { [1556124492] = { "Convert 20% of Requirements to Strength" }, }, rank = { 0 }, }, }, @@ -401,14 +401,14 @@ return { type = "Rune", "Convert 20% of Requirements to Dexterity", statOrder = { 7336 }, - tradeHashes = { 1496740334 }, + tradeHashes = { [1496740334] = { "Convert 20% of Requirements to Dexterity" }, }, rank = { 0 }, }, ["armour"] = { type = "Rune", "Convert 20% of Requirements to Dexterity", statOrder = { 7336 }, - tradeHashes = { 1496740334 }, + tradeHashes = { [1496740334] = { "Convert 20% of Requirements to Dexterity" }, }, rank = { 0 }, }, }, @@ -417,14 +417,14 @@ return { type = "Rune", "Convert 20% of Requirements to Intelligence", statOrder = { 7337 }, - tradeHashes = { 2913012734 }, + tradeHashes = { [2913012734] = { "Convert 20% of Requirements to Intelligence" }, }, rank = { 0 }, }, ["armour"] = { type = "Rune", "Convert 20% of Requirements to Intelligence", statOrder = { 7337 }, - tradeHashes = { 2913012734 }, + tradeHashes = { [2913012734] = { "Convert 20% of Requirements to Intelligence" }, }, rank = { 0 }, }, }, @@ -433,14 +433,14 @@ return { type = "Rune", "Remove a Damaging Ailment when you use a Command Skill", statOrder = { 9162 }, - tradeHashes = { 594547430 }, + tradeHashes = { [594547430] = { "Remove a Damaging Ailment when you use a Command Skill" }, }, rank = { 60 }, }, ["body armour"] = { type = "Rune", "+2 to Armour per 1 Spirit", statOrder = { 4275 }, - tradeHashes = { 1197632982 }, + tradeHashes = { [1197632982] = { "+2 to Armour per 1 Spirit" }, }, rank = { 60 }, }, ["boots"] = { @@ -448,7 +448,7 @@ return { "1% increased Movement Speed per 15 Spirit, up to a maximum of 40%", "Other Modifiers to Movement Speed except for Sprinting do not apply", statOrder = { 8593, 8593.1 }, - tradeHashes = { 2703838669, 2703838669 }, + tradeHashes = { [2703838669] = { "1% increased Movement Speed per 15 Spirit, up to a maximum of 40%", "Other Modifiers to Movement Speed except for Sprinting do not apply" }, }, rank = { 60 }, }, }, @@ -457,21 +457,21 @@ return { type = "Rune", "Increases and Reductions to Life Regeneration Rate also apply to Mana Regeneration Rate", statOrder = { 4115 }, - tradeHashes = { 3570773271 }, + tradeHashes = { [3570773271] = { "Increases and Reductions to Life Regeneration Rate also apply to Mana Regeneration Rate" }, }, rank = { 60 }, }, ["gloves"] = { type = "Rune", "40% increased effect of Arcane Surge on you", statOrder = { 2891 }, - tradeHashes = { 2103650854 }, + tradeHashes = { [2103650854] = { "40% increased effect of Arcane Surge on you" }, }, rank = { 60 }, }, ["boots"] = { type = "Rune", "15% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently", statOrder = { 7483 }, - tradeHashes = { 2876843277 }, + tradeHashes = { [2876843277] = { "15% increased Mana Cost Efficiency if you haven't Dodge Rolled Recently" }, }, rank = { 60 }, }, }, @@ -480,21 +480,21 @@ return { type = "Rune", "Regenerate 1.5% of maximum Life per second", statOrder = { 1617 }, - tradeHashes = { 836936635 }, + tradeHashes = { [836936635] = { "Regenerate 1.5% of maximum Life per second" }, }, rank = { 60 }, }, ["gloves"] = { type = "Rune", "25% increased Life Cost Efficiency", statOrder = { 4572 }, - tradeHashes = { 310945763 }, + tradeHashes = { [310945763] = { "25% increased Life Cost Efficiency" }, }, rank = { 60 }, }, ["boots"] = { type = "Rune", "10% increased Movement Speed when on Low Life", statOrder = { 1481 }, - tradeHashes = { 649025131 }, + tradeHashes = { [649025131] = { "10% increased Movement Speed when on Low Life" }, }, rank = { 60 }, }, }, @@ -503,21 +503,21 @@ return { type = "Rune", "+1 to Accuracy Rating per 1 Item Evasion Rating on Equipped Helmet", statOrder = { 4022 }, - tradeHashes = { 687156079 }, + tradeHashes = { [687156079] = { "+1 to Accuracy Rating per 1 Item Evasion Rating on Equipped Helmet" }, }, rank = { 60 }, }, ["gloves"] = { type = "Rune", "Critical Hit chance is Lucky against Parried enemies", statOrder = { 5415 }, - tradeHashes = { 935518591 }, + tradeHashes = { [935518591] = { "Critical Hit chance is Lucky against Parried enemies" }, }, rank = { 60 }, }, ["body armour"] = { type = "Rune", "Prevent +3% of Damage from Deflected Hits", statOrder = { 4541 }, - tradeHashes = { 3552135623 }, + tradeHashes = { [3552135623] = { "Prevent +3% of Damage from Deflected Hits" }, }, rank = { 60 }, }, }, @@ -526,7 +526,7 @@ return { type = "Rune", "+1 to maximum Mana per 2 Item Energy Shield on Equipped Helmet", statOrder = { 6295 }, - tradeHashes = { 280497929 }, + tradeHashes = { [280497929] = { "+1 to maximum Mana per 2 Item Energy Shield on Equipped Helmet" }, }, rank = { 60 }, }, ["gloves"] = { @@ -534,7 +534,7 @@ return { "Energy Shield Recharge starts after spending a total of", " 2000 Mana, no more than once every 2 seconds", statOrder = { 6023, 6023.1 }, - tradeHashes = { 2241849004, 2241849004 }, + tradeHashes = { [2241849004] = { "Energy Shield Recharge starts after spending a total of", " 2000 Mana, no more than once every 2 seconds" }, }, rank = { 60 }, }, ["boots"] = { @@ -542,7 +542,7 @@ return { "Increases and Reductions to Movement Speed also", " apply to Energy Shield Recharge Rate", statOrder = { 6874, 6874.1 }, - tradeHashes = { 4282982513, 4282982513 }, + tradeHashes = { [4282982513] = { "Increases and Reductions to Movement Speed also", " apply to Energy Shield Recharge Rate" }, }, rank = { 60 }, }, }, @@ -551,21 +551,21 @@ return { type = "Rune", "A random Skill that requires Glory generates 15% of its maximum Glory when your Mark Activates", statOrder = { 8275 }, - tradeHashes = { 2231410646 }, + tradeHashes = { [2231410646] = { "A random Skill that requires Glory generates 15% of its maximum Glory when your Mark Activates" }, }, rank = { 60 }, }, ["gloves"] = { type = "Rune", "Each Runic Inscription from your Curse Skills causes you to Regenerate Mana per second equal to 10% of that Skill's Mana Cost", statOrder = { 9139 }, - tradeHashes = { 426207520 }, + tradeHashes = { [426207520] = { "Each Runic Inscription from your Curse Skills causes you to Regenerate Mana per second equal to 10% of that Skill's Mana Cost" }, }, rank = { 60 }, }, ["body armour"] = { type = "Rune", "+50% of Armour also applies to Chaos Damage while on full Energy Shield", statOrder = { 4261 }, - tradeHashes = { 2191621386 }, + tradeHashes = { [2191621386] = { "+50% of Armour also applies to Chaos Damage while on full Energy Shield" }, }, rank = { 60 }, }, }, @@ -574,14 +574,14 @@ return { type = "Rune", "Gain Armour equal to 25% of Life Lost from Hits in the past 8 seconds", statOrder = { 6337 }, - tradeHashes = { 3903510399 }, + tradeHashes = { [3903510399] = { "Gain Armour equal to 25% of Life Lost from Hits in the past 8 seconds" }, }, rank = { 60 }, }, ["body armour"] = { type = "Rune", "10% of Physical Damage prevented Recouped as Life", statOrder = { 8867 }, - tradeHashes = { 1374654984 }, + tradeHashes = { [1374654984] = { "10% of Physical Damage prevented Recouped as Life" }, }, rank = { 60 }, }, ["boots"] = { @@ -589,7 +589,7 @@ return { "Lose 5% of maximum Life per second while Sprinting", "25% increased Movement Speed while Sprinting", statOrder = { 6999, 9465 }, - tradeHashes = { 3473409233, 3107707789, 3473409233, 3107707789 }, + tradeHashes = { [3473409233] = { "Lose 5% of maximum Life per second while Sprinting" }, [3107707789] = { "25% increased Movement Speed while Sprinting" }, }, rank = { 60 }, }, }, @@ -598,21 +598,21 @@ return { type = "Rune", "You Recoup 50% of Damage taken by your Offerings as Life", statOrder = { 9105 }, - tradeHashes = { 1937310173 }, + tradeHashes = { [1937310173] = { "You Recoup 50% of Damage taken by your Offerings as Life" }, }, rank = { 60 }, }, ["gloves"] = { type = "Rune", "One of your Persistent Minions revives when an Offering expires", statOrder = { 9188 }, - tradeHashes = { 1480688478 }, + tradeHashes = { [1480688478] = { "One of your Persistent Minions revives when an Offering expires" }, }, rank = { 60 }, }, ["boots"] = { type = "Rune", "Sacrifice 10% of maximum Life to gain that much Guard when you Dodge Roll", statOrder = { 9195 }, - tradeHashes = { 1585886916 }, + tradeHashes = { [1585886916] = { "Sacrifice 10% of maximum Life to gain that much Guard when you Dodge Roll" }, }, rank = { 60 }, }, }, @@ -622,7 +622,7 @@ return { "Adds 7 to 11 Fire Damage", "Bonded: 25% increased Ignite Magnitude", statOrder = { 823, 1009 }, - tradeHashes = { 709508406 }, + tradeHashes = { [709508406] = { "Adds 7 to 11 Fire Damage" }, }, rank = { 15 }, }, ["caster"] = { @@ -630,7 +630,7 @@ return { "Gain 8% of Damage as Extra Fire Damage", "Bonded: 25% increased Ignite Magnitude", statOrder = { 847, 1009 }, - tradeHashes = { 3015669065 }, + tradeHashes = { [3015669065] = { "Gain 8% of Damage as Extra Fire Damage" }, }, rank = { 15 }, }, ["armour"] = { @@ -639,7 +639,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 958, 869, 871 }, - tradeHashes = { 3372524247 }, + tradeHashes = { [3372524247] = { "+12% to Fire Resistance" }, }, rank = { 15 }, }, }, @@ -649,7 +649,7 @@ return { "Adds 6 to 10 Cold Damage", "Bonded: 30% increased Freeze Buildup", statOrder = { 824, 990 }, - tradeHashes = { 1037193709 }, + tradeHashes = { [1037193709] = { "Adds 6 to 10 Cold Damage" }, }, rank = { 15 }, }, ["caster"] = { @@ -657,7 +657,7 @@ return { "Gain 8% of Damage as Extra Cold Damage", "Bonded: 30% increased Freeze Buildup", statOrder = { 849, 990 }, - tradeHashes = { 2505884597 }, + tradeHashes = { [2505884597] = { "Gain 8% of Damage as Extra Cold Damage" }, }, rank = { 15 }, }, ["armour"] = { @@ -666,7 +666,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 959, 869, 871 }, - tradeHashes = { 4220027924 }, + tradeHashes = { [4220027924] = { "+12% to Cold Resistance" }, }, rank = { 15 }, }, }, @@ -676,7 +676,7 @@ return { "Adds 1 to 20 Lightning Damage", "Bonded: 30% increased Magnitude of Shock you inflict", statOrder = { 825, 9248 }, - tradeHashes = { 3336890334 }, + tradeHashes = { [3336890334] = { "Adds 1 to 20 Lightning Damage" }, }, rank = { 15 }, }, ["caster"] = { @@ -684,7 +684,7 @@ return { "Gain 8% of Damage as Extra Lightning Damage", "Bonded: 30% increased Magnitude of Shock you inflict", statOrder = { 851, 9248 }, - tradeHashes = { 3278136794 }, + tradeHashes = { [3278136794] = { "Gain 8% of Damage as Extra Lightning Damage" }, }, rank = { 15 }, }, ["armour"] = { @@ -693,7 +693,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 960, 869, 871 }, - tradeHashes = { 1671376347 }, + tradeHashes = { [1671376347] = { "+12% to Lightning Resistance" }, }, rank = { 15 }, }, }, @@ -703,7 +703,7 @@ return { "16% increased Physical Damage", "Bonded: 20% increased effect of Fully Broken Armour", statOrder = { 821, 4868 }, - tradeHashes = { 1805374733 }, + tradeHashes = { [1805374733] = { "16% increased Physical Damage" }, }, rank = { 15 }, }, ["caster"] = { @@ -711,7 +711,7 @@ return { "25% increased Spell Damage", "Bonded: Break Armour on Critical Hit with Spells equal to 12% of Physical Damage dealt", statOrder = { 853, 4287 }, - tradeHashes = { 2974417149 }, + tradeHashes = { [2974417149] = { "25% increased Spell Damage" }, }, rank = { 15 }, }, ["armour"] = { @@ -720,7 +720,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 840, 869, 871 }, - tradeHashes = { 3523867985 }, + tradeHashes = { [3523867985] = { "16% increased Armour, Evasion and Energy Shield" }, }, rank = { 15 }, }, }, @@ -730,7 +730,7 @@ return { "Leeches 2.5% of Physical Damage as Life", "Bonded: 5% increased maximum Life", statOrder = { 972, 870 }, - tradeHashes = { 55876295 }, + tradeHashes = { [55876295] = { "Leeches 2.5% of Physical Damage as Life" }, }, rank = { 15 }, }, ["caster"] = { @@ -738,7 +738,7 @@ return { "+30 to maximum Energy Shield", "Bonded: 5% increased maximum Life", statOrder = { 867, 870 }, - tradeHashes = { 3489782002 }, + tradeHashes = { [3489782002] = { "+30 to maximum Energy Shield" }, }, rank = { 15 }, }, ["armour"] = { @@ -747,7 +747,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 869, 869, 871 }, - tradeHashes = { 3299347043 }, + tradeHashes = { [3299347043] = { "+30 to maximum Life" }, }, rank = { 15 }, }, }, @@ -757,7 +757,7 @@ return { "Leeches 2% of Physical Damage as Mana", "Bonded: 5% increased maximum Mana", statOrder = { 978, 872 }, - tradeHashes = { 669069897 }, + tradeHashes = { [669069897] = { "Leeches 2% of Physical Damage as Mana" }, }, rank = { 15 }, }, ["caster"] = { @@ -765,7 +765,7 @@ return { "+40 to maximum Mana", "Bonded: 5% increased maximum Mana", statOrder = { 871, 872 }, - tradeHashes = { 1050105434 }, + tradeHashes = { [1050105434] = { "+40 to maximum Mana" }, }, rank = { 15 }, }, ["armour"] = { @@ -774,7 +774,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 871, 869, 871 }, - tradeHashes = { 1050105434 }, + tradeHashes = { [1050105434] = { "+25 to maximum Mana" }, }, rank = { 15 }, }, }, @@ -784,7 +784,7 @@ return { "Gain 20 Life per enemy killed", "Bonded: Regenerate 0.4% of maximum Life per second", statOrder = { 975, 1617 }, - tradeHashes = { 3695891184 }, + tradeHashes = { [3695891184] = { "Gain 20 Life per enemy killed" }, }, rank = { 15 }, }, ["caster"] = { @@ -792,7 +792,7 @@ return { "15% increased Energy Shield Recharge Rate", "Bonded: 8% of Damage taken Recouped as Life", statOrder = { 966, 970 }, - tradeHashes = { 2339757871 }, + tradeHashes = { [2339757871] = { "15% increased Energy Shield Recharge Rate" }, }, rank = { 15 }, }, ["armour"] = { @@ -801,7 +801,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 1617, 869, 871 }, - tradeHashes = { 836936635 }, + tradeHashes = { [836936635] = { "Regenerate 0.3% of maximum Life per second" }, }, rank = { 15 }, }, }, @@ -811,7 +811,7 @@ return { "Gain 16 Mana per enemy killed", "Bonded: 12% of Skill Mana Costs Converted to Life Costs", statOrder = { 980, 4605 }, - tradeHashes = { 1368271171 }, + tradeHashes = { [1368271171] = { "Gain 16 Mana per enemy killed" }, }, rank = { 15 }, }, ["caster"] = { @@ -819,7 +819,7 @@ return { "20% increased Mana Regeneration Rate", "Bonded: 16% increased Mana Cost Efficiency", statOrder = { 976, 4582 }, - tradeHashes = { 789117908 }, + tradeHashes = { [789117908] = { "20% increased Mana Regeneration Rate" }, }, rank = { 15 }, }, ["armour"] = { @@ -828,7 +828,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 976, 869, 871 }, - tradeHashes = { 789117908 }, + tradeHashes = { [789117908] = { "15% increased Mana Regeneration Rate" }, }, rank = { 15 }, }, }, @@ -838,7 +838,7 @@ return { "Causes 25% increased Stun Buildup", "Bonded: 40% increased Damage against Immobilised Enemies", statOrder = { 985, 5564 }, - tradeHashes = { 791928121 }, + tradeHashes = { [791928121] = { "Causes 25% increased Stun Buildup" }, }, rank = { 15 }, }, ["caster"] = { @@ -846,7 +846,7 @@ return { "Gain additional Stun Threshold equal to 12% of maximum Energy Shield", "Bonded: 30% increased Immobilisation buildup", statOrder = { 9531, 6748 }, - tradeHashes = { 416040624 }, + tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to 12% of maximum Energy Shield" }, }, rank = { 15 }, }, ["armour"] = { @@ -855,7 +855,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 994, 869, 871 }, - tradeHashes = { 915769802 }, + tradeHashes = { [915769802] = { "+60 to Stun Threshold" }, }, rank = { 15 }, }, }, @@ -865,7 +865,7 @@ return { "+80 to Accuracy Rating", "Bonded: Attacks have +1% to Critical Hit Chance", statOrder = { 826, 4335 }, - tradeHashes = { 691932474 }, + tradeHashes = { [691932474] = { "+80 to Accuracy Rating" }, }, rank = { 15 }, }, ["caster"] = { @@ -873,7 +873,7 @@ return { "20% increased Critical Hit Chance for Spells", "Bonded: 25% increased Critical Damage Bonus", statOrder = { 935, 937 }, - tradeHashes = { 737908626 }, + tradeHashes = { [737908626] = { "20% increased Critical Hit Chance for Spells" }, }, rank = { 15 }, }, ["armour"] = { @@ -882,7 +882,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 6220, 869, 871 }, - tradeHashes = { 2310741722 }, + tradeHashes = { [2310741722] = { "10% increased Life and Mana Recovery from Flasks" }, }, rank = { 15 }, }, }, @@ -892,7 +892,7 @@ return { "Adds 4 to 6 Fire Damage", "Bonded: 25% increased Ignite Magnitude", statOrder = { 823, 1009 }, - tradeHashes = { 709508406 }, + tradeHashes = { [709508406] = { "Adds 4 to 6 Fire Damage" }, }, rank = { 0 }, }, ["caster"] = { @@ -900,7 +900,7 @@ return { "Gain 6% of Damage as Extra Fire Damage", "Bonded: 25% increased Ignite Magnitude", statOrder = { 847, 1009 }, - tradeHashes = { 3015669065 }, + tradeHashes = { [3015669065] = { "Gain 6% of Damage as Extra Fire Damage" }, }, rank = { 0 }, }, ["armour"] = { @@ -909,7 +909,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 958, 869, 871 }, - tradeHashes = { 3372524247 }, + tradeHashes = { [3372524247] = { "+10% to Fire Resistance" }, }, rank = { 0 }, }, }, @@ -919,7 +919,7 @@ return { "Adds 3 to 5 Cold Damage", "Bonded: 30% increased Freeze Buildup", statOrder = { 824, 990 }, - tradeHashes = { 1037193709 }, + tradeHashes = { [1037193709] = { "Adds 3 to 5 Cold Damage" }, }, rank = { 0 }, }, ["caster"] = { @@ -927,7 +927,7 @@ return { "Gain 6% of Damage as Extra Cold Damage", "Bonded: 30% increased Freeze Buildup", statOrder = { 849, 990 }, - tradeHashes = { 2505884597 }, + tradeHashes = { [2505884597] = { "Gain 6% of Damage as Extra Cold Damage" }, }, rank = { 0 }, }, ["armour"] = { @@ -936,7 +936,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 959, 869, 871 }, - tradeHashes = { 4220027924 }, + tradeHashes = { [4220027924] = { "+10% to Cold Resistance" }, }, rank = { 0 }, }, }, @@ -946,7 +946,7 @@ return { "Adds 1 to 10 Lightning Damage", "Bonded: 30% increased Magnitude of Shock you inflict", statOrder = { 825, 9248 }, - tradeHashes = { 3336890334 }, + tradeHashes = { [3336890334] = { "Adds 1 to 10 Lightning Damage" }, }, rank = { 0 }, }, ["caster"] = { @@ -954,7 +954,7 @@ return { "Gain 6% of Damage as Extra Lightning Damage", "Bonded: 30% increased Magnitude of Shock you inflict", statOrder = { 851, 9248 }, - tradeHashes = { 3278136794 }, + tradeHashes = { [3278136794] = { "Gain 6% of Damage as Extra Lightning Damage" }, }, rank = { 0 }, }, ["armour"] = { @@ -963,7 +963,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 960, 869, 871 }, - tradeHashes = { 1671376347 }, + tradeHashes = { [1671376347] = { "+10% to Lightning Resistance" }, }, rank = { 0 }, }, }, @@ -973,7 +973,7 @@ return { "14% increased Physical Damage", "Bonded: 20% increased effect of Fully Broken Armour", statOrder = { 821, 4868 }, - tradeHashes = { 1805374733 }, + tradeHashes = { [1805374733] = { "14% increased Physical Damage" }, }, rank = { 0 }, }, ["caster"] = { @@ -981,7 +981,7 @@ return { "20% increased Spell Damage", "Bonded: Break Armour on Critical Hit with Spells equal to 12% of Physical Damage dealt", statOrder = { 853, 4287 }, - tradeHashes = { 2974417149 }, + tradeHashes = { [2974417149] = { "20% increased Spell Damage" }, }, rank = { 0 }, }, ["armour"] = { @@ -990,7 +990,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 840, 869, 871 }, - tradeHashes = { 3523867985 }, + tradeHashes = { [3523867985] = { "14% increased Armour, Evasion and Energy Shield" }, }, rank = { 0 }, }, }, @@ -1000,7 +1000,7 @@ return { "Leeches 2% of Physical Damage as Life", "Bonded: 5% increased maximum Life", statOrder = { 972, 870 }, - tradeHashes = { 55876295 }, + tradeHashes = { [55876295] = { "Leeches 2% of Physical Damage as Life" }, }, rank = { 0 }, }, ["caster"] = { @@ -1008,7 +1008,7 @@ return { "+25 to maximum Energy Shield", "Bonded: 5% increased maximum Life", statOrder = { 867, 870 }, - tradeHashes = { 3489782002 }, + tradeHashes = { [3489782002] = { "+25 to maximum Energy Shield" }, }, rank = { 0 }, }, ["armour"] = { @@ -1017,7 +1017,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 869, 869, 871 }, - tradeHashes = { 3299347043 }, + tradeHashes = { [3299347043] = { "+20 to maximum Life" }, }, rank = { 0 }, }, }, @@ -1027,7 +1027,7 @@ return { "Leeches 1.5% of Physical Damage as Mana", "Bonded: 5% increased maximum Mana", statOrder = { 978, 872 }, - tradeHashes = { 669069897 }, + tradeHashes = { [669069897] = { "Leeches 1.5% of Physical Damage as Mana" }, }, rank = { 0 }, }, ["caster"] = { @@ -1035,7 +1035,7 @@ return { "+30 to maximum Mana", "Bonded: 5% increased maximum Mana", statOrder = { 871, 872 }, - tradeHashes = { 1050105434 }, + tradeHashes = { [1050105434] = { "+30 to maximum Mana" }, }, rank = { 0 }, }, ["armour"] = { @@ -1044,7 +1044,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 871, 869, 871 }, - tradeHashes = { 1050105434 }, + tradeHashes = { [1050105434] = { "+15 to maximum Mana" }, }, rank = { 0 }, }, }, @@ -1054,7 +1054,7 @@ return { "Gain 10 Life per enemy killed", "Bonded: Regenerate 0.4% of maximum Life per second", statOrder = { 975, 1617 }, - tradeHashes = { 3695891184 }, + tradeHashes = { [3695891184] = { "Gain 10 Life per enemy killed" }, }, rank = { 0 }, }, ["caster"] = { @@ -1062,7 +1062,7 @@ return { "12% increased Energy Shield Recharge Rate", "Bonded: 8% of Damage taken Recouped as Life", statOrder = { 966, 970 }, - tradeHashes = { 2339757871 }, + tradeHashes = { [2339757871] = { "12% increased Energy Shield Recharge Rate" }, }, rank = { 0 }, }, ["armour"] = { @@ -1071,7 +1071,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 1617, 869, 871 }, - tradeHashes = { 836936635 }, + tradeHashes = { [836936635] = { "Regenerate 0.25% of maximum Life per second" }, }, rank = { 0 }, }, }, @@ -1081,7 +1081,7 @@ return { "Gain 8 Mana per enemy killed", "Bonded: 12% of Skill Mana Costs Converted to Life Costs", statOrder = { 980, 4605 }, - tradeHashes = { 1368271171 }, + tradeHashes = { [1368271171] = { "Gain 8 Mana per enemy killed" }, }, rank = { 0 }, }, ["caster"] = { @@ -1089,7 +1089,7 @@ return { "16% increased Mana Regeneration Rate", "Bonded: 16% increased Mana Cost Efficiency", statOrder = { 976, 4582 }, - tradeHashes = { 789117908 }, + tradeHashes = { [789117908] = { "16% increased Mana Regeneration Rate" }, }, rank = { 0 }, }, ["armour"] = { @@ -1098,7 +1098,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 976, 869, 871 }, - tradeHashes = { 789117908 }, + tradeHashes = { [789117908] = { "12% increased Mana Regeneration Rate" }, }, rank = { 0 }, }, }, @@ -1108,7 +1108,7 @@ return { "Causes 20% increased Stun Buildup", "Bonded: 40% increased Damage against Immobilised Enemies", statOrder = { 985, 5564 }, - tradeHashes = { 791928121 }, + tradeHashes = { [791928121] = { "Causes 20% increased Stun Buildup" }, }, rank = { 0 }, }, ["caster"] = { @@ -1116,7 +1116,7 @@ return { "Gain additional Stun Threshold equal to 10% of maximum Energy Shield", "Bonded: 30% increased Immobilisation buildup", statOrder = { 9531, 6748 }, - tradeHashes = { 416040624 }, + tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to 10% of maximum Energy Shield" }, }, rank = { 0 }, }, ["armour"] = { @@ -1125,7 +1125,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 994, 869, 871 }, - tradeHashes = { 915769802 }, + tradeHashes = { [915769802] = { "+40 to Stun Threshold" }, }, rank = { 0 }, }, }, @@ -1135,7 +1135,7 @@ return { "+50 to Accuracy Rating", "Bonded: Attacks have +1% to Critical Hit Chance", statOrder = { 826, 4335 }, - tradeHashes = { 691932474 }, + tradeHashes = { [691932474] = { "+50 to Accuracy Rating" }, }, rank = { 0 }, }, ["caster"] = { @@ -1143,7 +1143,7 @@ return { "16% increased Critical Hit Chance for Spells", "Bonded: 25% increased Critical Damage Bonus", statOrder = { 935, 937 }, - tradeHashes = { 737908626 }, + tradeHashes = { [737908626] = { "16% increased Critical Hit Chance for Spells" }, }, rank = { 0 }, }, ["armour"] = { @@ -1152,7 +1152,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 6220, 869, 871 }, - tradeHashes = { 2310741722 }, + tradeHashes = { [2310741722] = { "8% increased Life and Mana Recovery from Flasks" }, }, rank = { 0 }, }, }, @@ -1162,7 +1162,7 @@ return { "Adds 13 to 16 Fire Damage", "Bonded: 25% increased Ignite Magnitude", statOrder = { 823, 1009 }, - tradeHashes = { 709508406 }, + tradeHashes = { [709508406] = { "Adds 13 to 16 Fire Damage" }, }, rank = { 30 }, }, ["caster"] = { @@ -1170,7 +1170,7 @@ return { "Gain 10% of Damage as Extra Fire Damage", "Bonded: 25% increased Ignite Magnitude", statOrder = { 847, 1009 }, - tradeHashes = { 3015669065 }, + tradeHashes = { [3015669065] = { "Gain 10% of Damage as Extra Fire Damage" }, }, rank = { 30 }, }, ["armour"] = { @@ -1179,7 +1179,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 958, 869, 871 }, - tradeHashes = { 3372524247 }, + tradeHashes = { [3372524247] = { "+14% to Fire Resistance" }, }, rank = { 30 }, }, }, @@ -1189,7 +1189,7 @@ return { "Adds 9 to 15 Cold Damage", "Bonded: 30% increased Freeze Buildup", statOrder = { 824, 990 }, - tradeHashes = { 1037193709 }, + tradeHashes = { [1037193709] = { "Adds 9 to 15 Cold Damage" }, }, rank = { 30 }, }, ["caster"] = { @@ -1197,7 +1197,7 @@ return { "Gain 10% of Damage as Extra Cold Damage", "Bonded: 30% increased Freeze Buildup", statOrder = { 849, 990 }, - tradeHashes = { 2505884597 }, + tradeHashes = { [2505884597] = { "Gain 10% of Damage as Extra Cold Damage" }, }, rank = { 30 }, }, ["armour"] = { @@ -1206,7 +1206,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 959, 869, 871 }, - tradeHashes = { 4220027924 }, + tradeHashes = { [4220027924] = { "+14% to Cold Resistance" }, }, rank = { 30 }, }, }, @@ -1216,7 +1216,7 @@ return { "Adds 1 to 30 Lightning Damage", "Bonded: 30% increased Magnitude of Shock you inflict", statOrder = { 825, 9248 }, - tradeHashes = { 3336890334 }, + tradeHashes = { [3336890334] = { "Adds 1 to 30 Lightning Damage" }, }, rank = { 30 }, }, ["caster"] = { @@ -1224,7 +1224,7 @@ return { "Gain 10% of Damage as Extra Lightning Damage", "Bonded: 30% increased Magnitude of Shock you inflict", statOrder = { 851, 9248 }, - tradeHashes = { 3278136794 }, + tradeHashes = { [3278136794] = { "Gain 10% of Damage as Extra Lightning Damage" }, }, rank = { 30 }, }, ["armour"] = { @@ -1233,7 +1233,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 960, 869, 871 }, - tradeHashes = { 1671376347 }, + tradeHashes = { [1671376347] = { "+14% to Lightning Resistance" }, }, rank = { 30 }, }, }, @@ -1243,7 +1243,7 @@ return { "18% increased Physical Damage", "Bonded: 20% increased effect of Fully Broken Armour", statOrder = { 821, 4868 }, - tradeHashes = { 1805374733 }, + tradeHashes = { [1805374733] = { "18% increased Physical Damage" }, }, rank = { 30 }, }, ["caster"] = { @@ -1251,7 +1251,7 @@ return { "30% increased Spell Damage", "Bonded: Break Armour on Critical Hit with Spells equal to 12% of Physical Damage dealt", statOrder = { 853, 4287 }, - tradeHashes = { 2974417149 }, + tradeHashes = { [2974417149] = { "30% increased Spell Damage" }, }, rank = { 30 }, }, ["armour"] = { @@ -1260,7 +1260,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 840, 869, 871 }, - tradeHashes = { 3523867985 }, + tradeHashes = { [3523867985] = { "18% increased Armour, Evasion and Energy Shield" }, }, rank = { 30 }, }, }, @@ -1270,7 +1270,7 @@ return { "Leeches 3% of Physical Damage as Life", "Bonded: 5% increased maximum Life", statOrder = { 972, 870 }, - tradeHashes = { 55876295 }, + tradeHashes = { [55876295] = { "Leeches 3% of Physical Damage as Life" }, }, rank = { 30 }, }, ["caster"] = { @@ -1278,7 +1278,7 @@ return { "+35 to maximum Energy Shield", "Bonded: 5% increased maximum Life", statOrder = { 867, 870 }, - tradeHashes = { 3489782002 }, + tradeHashes = { [3489782002] = { "+35 to maximum Energy Shield" }, }, rank = { 30 }, }, ["armour"] = { @@ -1287,7 +1287,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 869, 869, 871 }, - tradeHashes = { 3299347043 }, + tradeHashes = { [3299347043] = { "+40 to maximum Life" }, }, rank = { 30 }, }, }, @@ -1297,7 +1297,7 @@ return { "Leeches 2.5% of Physical Damage as Mana", "Bonded: 5% increased maximum Mana", statOrder = { 978, 872 }, - tradeHashes = { 669069897 }, + tradeHashes = { [669069897] = { "Leeches 2.5% of Physical Damage as Mana" }, }, rank = { 30 }, }, ["caster"] = { @@ -1305,7 +1305,7 @@ return { "+50 to maximum Mana", "Bonded: 5% increased maximum Mana", statOrder = { 871, 872 }, - tradeHashes = { 1050105434 }, + tradeHashes = { [1050105434] = { "+50 to maximum Mana" }, }, rank = { 30 }, }, ["armour"] = { @@ -1314,7 +1314,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 871, 869, 871 }, - tradeHashes = { 1050105434 }, + tradeHashes = { [1050105434] = { "+35 to maximum Mana" }, }, rank = { 30 }, }, }, @@ -1324,7 +1324,7 @@ return { "Gain 30 Life per enemy killed", "Bonded: Regenerate 0.4% of maximum Life per second", statOrder = { 975, 1617 }, - tradeHashes = { 3695891184 }, + tradeHashes = { [3695891184] = { "Gain 30 Life per enemy killed" }, }, rank = { 30 }, }, ["caster"] = { @@ -1332,7 +1332,7 @@ return { "18% increased Energy Shield Recharge Rate", "Bonded: 8% of Damage taken Recouped as Life", statOrder = { 966, 970 }, - tradeHashes = { 2339757871 }, + tradeHashes = { [2339757871] = { "18% increased Energy Shield Recharge Rate" }, }, rank = { 30 }, }, ["armour"] = { @@ -1341,7 +1341,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 1617, 869, 871 }, - tradeHashes = { 836936635 }, + tradeHashes = { [836936635] = { "Regenerate 0.35% of maximum Life per second" }, }, rank = { 30 }, }, }, @@ -1351,7 +1351,7 @@ return { "Gain 24 Mana per enemy killed", "Bonded: 12% of Skill Mana Costs Converted to Life Costs", statOrder = { 980, 4605 }, - tradeHashes = { 1368271171 }, + tradeHashes = { [1368271171] = { "Gain 24 Mana per enemy killed" }, }, rank = { 30 }, }, ["caster"] = { @@ -1359,7 +1359,7 @@ return { "24% increased Mana Regeneration Rate", "Bonded: 16% increased Mana Cost Efficiency", statOrder = { 976, 4582 }, - tradeHashes = { 789117908 }, + tradeHashes = { [789117908] = { "24% increased Mana Regeneration Rate" }, }, rank = { 30 }, }, ["armour"] = { @@ -1368,7 +1368,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 976, 869, 871 }, - tradeHashes = { 789117908 }, + tradeHashes = { [789117908] = { "18% increased Mana Regeneration Rate" }, }, rank = { 30 }, }, }, @@ -1378,7 +1378,7 @@ return { "Causes 30% increased Stun Buildup", "Bonded: 40% increased Damage against Immobilised Enemies", statOrder = { 985, 5564 }, - tradeHashes = { 791928121 }, + tradeHashes = { [791928121] = { "Causes 30% increased Stun Buildup" }, }, rank = { 30 }, }, ["caster"] = { @@ -1386,7 +1386,7 @@ return { "Gain additional Stun Threshold equal to 14% of maximum Energy Shield", "Bonded: 30% increased Immobilisation buildup", statOrder = { 9531, 6748 }, - tradeHashes = { 416040624 }, + tradeHashes = { [416040624] = { "Gain additional Stun Threshold equal to 14% of maximum Energy Shield" }, }, rank = { 30 }, }, ["armour"] = { @@ -1395,7 +1395,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 994, 869, 871 }, - tradeHashes = { 915769802 }, + tradeHashes = { [915769802] = { "+80 to Stun Threshold" }, }, rank = { 30 }, }, }, @@ -1405,7 +1405,7 @@ return { "+110 to Accuracy Rating", "Bonded: Attacks have +1% to Critical Hit Chance", statOrder = { 826, 4335 }, - tradeHashes = { 691932474 }, + tradeHashes = { [691932474] = { "+110 to Accuracy Rating" }, }, rank = { 30 }, }, ["caster"] = { @@ -1413,7 +1413,7 @@ return { "24% increased Critical Hit Chance for Spells", "Bonded: 25% increased Critical Damage Bonus", statOrder = { 935, 937 }, - tradeHashes = { 737908626 }, + tradeHashes = { [737908626] = { "24% increased Critical Hit Chance for Spells" }, }, rank = { 30 }, }, ["armour"] = { @@ -1422,7 +1422,7 @@ return { "Bonded: +10 to maximum Life", "Bonded: +10 to maximum Mana", statOrder = { 6220, 869, 871 }, - tradeHashes = { 2310741722 }, + tradeHashes = { [2310741722] = { "12% increased Life and Mana Recovery from Flasks" }, }, rank = { 30 }, }, }, @@ -1431,21 +1431,21 @@ return { type = "Rune", "+6 to Strength", statOrder = { 947 }, - tradeHashes = { 4080418644 }, + tradeHashes = { [4080418644] = { "+6 to Strength" }, }, rank = { 0 }, }, ["armour"] = { type = "Rune", "+6 to Strength", statOrder = { 947 }, - tradeHashes = { 4080418644 }, + tradeHashes = { [4080418644] = { "+6 to Strength" }, }, rank = { 0 }, }, ["caster"] = { type = "Rune", "+6 to Strength", statOrder = { 947 }, - tradeHashes = { 4080418644 }, + tradeHashes = { [4080418644] = { "+6 to Strength" }, }, rank = { 0 }, }, }, @@ -1454,21 +1454,21 @@ return { type = "Rune", "+8 to Strength", statOrder = { 947 }, - tradeHashes = { 4080418644 }, + tradeHashes = { [4080418644] = { "+8 to Strength" }, }, rank = { 15 }, }, ["armour"] = { type = "Rune", "+8 to Strength", statOrder = { 947 }, - tradeHashes = { 4080418644 }, + tradeHashes = { [4080418644] = { "+8 to Strength" }, }, rank = { 15 }, }, ["caster"] = { type = "Rune", "+8 to Strength", statOrder = { 947 }, - tradeHashes = { 4080418644 }, + tradeHashes = { [4080418644] = { "+8 to Strength" }, }, rank = { 15 }, }, }, @@ -1477,21 +1477,21 @@ return { type = "Rune", "+10 to Strength", statOrder = { 947 }, - tradeHashes = { 4080418644 }, + tradeHashes = { [4080418644] = { "+10 to Strength" }, }, rank = { 30 }, }, ["armour"] = { type = "Rune", "+10 to Strength", statOrder = { 947 }, - tradeHashes = { 4080418644 }, + tradeHashes = { [4080418644] = { "+10 to Strength" }, }, rank = { 30 }, }, ["caster"] = { type = "Rune", "+10 to Strength", statOrder = { 947 }, - tradeHashes = { 4080418644 }, + tradeHashes = { [4080418644] = { "+10 to Strength" }, }, rank = { 30 }, }, }, @@ -1500,21 +1500,21 @@ return { type = "Rune", "+6 to Dexterity", statOrder = { 948 }, - tradeHashes = { 3261801346 }, + tradeHashes = { [3261801346] = { "+6 to Dexterity" }, }, rank = { 0 }, }, ["armour"] = { type = "Rune", "+6 to Dexterity", statOrder = { 948 }, - tradeHashes = { 3261801346 }, + tradeHashes = { [3261801346] = { "+6 to Dexterity" }, }, rank = { 0 }, }, ["caster"] = { type = "Rune", "+6 to Dexterity", statOrder = { 948 }, - tradeHashes = { 3261801346 }, + tradeHashes = { [3261801346] = { "+6 to Dexterity" }, }, rank = { 0 }, }, }, @@ -1523,21 +1523,21 @@ return { type = "Rune", "+8 to Dexterity", statOrder = { 948 }, - tradeHashes = { 3261801346 }, + tradeHashes = { [3261801346] = { "+8 to Dexterity" }, }, rank = { 15 }, }, ["armour"] = { type = "Rune", "+8 to Dexterity", statOrder = { 948 }, - tradeHashes = { 3261801346 }, + tradeHashes = { [3261801346] = { "+8 to Dexterity" }, }, rank = { 15 }, }, ["caster"] = { type = "Rune", "+8 to Dexterity", statOrder = { 948 }, - tradeHashes = { 3261801346 }, + tradeHashes = { [3261801346] = { "+8 to Dexterity" }, }, rank = { 15 }, }, }, @@ -1546,21 +1546,21 @@ return { type = "Rune", "+10 to Dexterity", statOrder = { 948 }, - tradeHashes = { 3261801346 }, + tradeHashes = { [3261801346] = { "+10 to Dexterity" }, }, rank = { 30 }, }, ["armour"] = { type = "Rune", "+10 to Dexterity", statOrder = { 948 }, - tradeHashes = { 3261801346 }, + tradeHashes = { [3261801346] = { "+10 to Dexterity" }, }, rank = { 30 }, }, ["caster"] = { type = "Rune", "+10 to Dexterity", statOrder = { 948 }, - tradeHashes = { 3261801346 }, + tradeHashes = { [3261801346] = { "+10 to Dexterity" }, }, rank = { 30 }, }, }, @@ -1569,21 +1569,21 @@ return { type = "Rune", "+6 to Intelligence", statOrder = { 949 }, - tradeHashes = { 328541901 }, + tradeHashes = { [328541901] = { "+6 to Intelligence" }, }, rank = { 0 }, }, ["armour"] = { type = "Rune", "+6 to Intelligence", statOrder = { 949 }, - tradeHashes = { 328541901 }, + tradeHashes = { [328541901] = { "+6 to Intelligence" }, }, rank = { 0 }, }, ["caster"] = { type = "Rune", "+6 to Intelligence", statOrder = { 949 }, - tradeHashes = { 328541901 }, + tradeHashes = { [328541901] = { "+6 to Intelligence" }, }, rank = { 0 }, }, }, @@ -1592,21 +1592,21 @@ return { type = "Rune", "+8 to Intelligence", statOrder = { 949 }, - tradeHashes = { 328541901 }, + tradeHashes = { [328541901] = { "+8 to Intelligence" }, }, rank = { 15 }, }, ["armour"] = { type = "Rune", "+8 to Intelligence", statOrder = { 949 }, - tradeHashes = { 328541901 }, + tradeHashes = { [328541901] = { "+8 to Intelligence" }, }, rank = { 15 }, }, ["caster"] = { type = "Rune", "+8 to Intelligence", statOrder = { 949 }, - tradeHashes = { 328541901 }, + tradeHashes = { [328541901] = { "+8 to Intelligence" }, }, rank = { 15 }, }, }, @@ -1615,21 +1615,21 @@ return { type = "Rune", "+10 to Intelligence", statOrder = { 949 }, - tradeHashes = { 328541901 }, + tradeHashes = { [328541901] = { "+10 to Intelligence" }, }, rank = { 30 }, }, ["armour"] = { type = "Rune", "+10 to Intelligence", statOrder = { 949 }, - tradeHashes = { 328541901 }, + tradeHashes = { [328541901] = { "+10 to Intelligence" }, }, rank = { 30 }, }, ["caster"] = { type = "Rune", "+10 to Intelligence", statOrder = { 949 }, - tradeHashes = { 328541901 }, + tradeHashes = { [328541901] = { "+10 to Intelligence" }, }, rank = { 30 }, }, }, @@ -1638,14 +1638,14 @@ return { type = "Rune", "Adds 3 to 4 Physical Damage", statOrder = { 822 }, - tradeHashes = { 1940865751 }, + tradeHashes = { [1940865751] = { "Adds 3 to 4 Physical Damage" }, }, rank = { 0 }, }, ["armour"] = { type = "Rune", "6 to 9 Physical Thorns damage", statOrder = { 9653 }, - tradeHashes = { 2881298780 }, + tradeHashes = { [2881298780] = { "6 to 9 Physical Thorns damage" }, }, rank = { 0 }, }, }, @@ -1654,14 +1654,14 @@ return { type = "Rune", "Adds 6 to 9 Physical Damage", statOrder = { 822 }, - tradeHashes = { 1940865751 }, + tradeHashes = { [1940865751] = { "Adds 6 to 9 Physical Damage" }, }, rank = { 15 }, }, ["armour"] = { type = "Rune", "14 to 21 Physical Thorns damage", statOrder = { 9653 }, - tradeHashes = { 2881298780 }, + tradeHashes = { [2881298780] = { "14 to 21 Physical Thorns damage" }, }, rank = { 15 }, }, }, @@ -1670,14 +1670,14 @@ return { type = "Rune", "Adds 9 to 12 Physical Damage", statOrder = { 822 }, - tradeHashes = { 1940865751 }, + tradeHashes = { [1940865751] = { "Adds 9 to 12 Physical Damage" }, }, rank = { 30 }, }, ["armour"] = { type = "Rune", "31 to 52 Physical Thorns damage", statOrder = { 9653 }, - tradeHashes = { 2881298780 }, + tradeHashes = { [2881298780] = { "31 to 52 Physical Thorns damage" }, }, rank = { 30 }, }, }, @@ -1687,7 +1687,7 @@ return { "Minions gain 10% of their Physical Damage as Extra Lightning Damage", "Bonded: Minions deal 20% increased Damage", statOrder = { 8518, 1646 }, - tradeHashes = { 1433756169 }, + tradeHashes = { [1433756169] = { "Minions gain 10% of their Physical Damage as Extra Lightning Damage" }, }, rank = { 0 }, }, ["armour"] = { @@ -1695,7 +1695,7 @@ return { "Minions take 10% of Physical Damage as Lightning Damage", "Bonded: Minions have +10% to all Elemental Resistances", statOrder = { 8519, 2558 }, - tradeHashes = { 889552744 }, + tradeHashes = { [889552744] = { "Minions take 10% of Physical Damage as Lightning Damage" }, }, rank = { 0 }, }, }, @@ -1705,7 +1705,7 @@ return { "Meta Skills gain 10% increased Energy", "Bonded: Invocated Spells have 25% chance to consume half as much Energy", statOrder = { 5987, 6924 }, - tradeHashes = { 4236566306 }, + tradeHashes = { [4236566306] = { "Meta Skills gain 10% increased Energy" }, }, rank = { 0 }, }, ["armour"] = { @@ -1713,7 +1713,7 @@ return { "1 to 100 Lightning Thorns damage", "Bonded: 15% increased Thorns damage", statOrder = { 9652, 9646 }, - tradeHashes = { 757050353 }, + tradeHashes = { [757050353] = { "1 to 100 Lightning Thorns damage" }, }, rank = { 0 }, }, }, @@ -1723,7 +1723,7 @@ return { "8% increased Skill Speed", "Bonded: 15% increased Reservation Efficiency of Herald Skills", statOrder = { 828, 9179 }, - tradeHashes = { 970213192 }, + tradeHashes = { [970213192] = { "8% increased Skill Speed" }, }, rank = { 0 }, }, ["armour"] = { @@ -1731,7 +1731,7 @@ return { "Debuffs on you expire 8% faster", "Bonded: 15% increased Elemental Ailment Threshold", statOrder = { 5703, 4147 }, - tradeHashes = { 1238227257 }, + tradeHashes = { [1238227257] = { "Debuffs on you expire 8% faster" }, }, rank = { 0 }, }, }, @@ -1741,7 +1741,7 @@ return { "Attacks with this Weapon have 10% chance to inflict Exposure", "Bonded: 20% increased Exposure Effect", statOrder = { 7269, 6106 }, - tradeHashes = { 3678845069 }, + tradeHashes = { [3678845069] = { "Attacks with this Weapon have 10% chance to inflict Exposure" }, }, rank = { 0 }, }, ["armour"] = { @@ -1749,7 +1749,7 @@ return { "10% reduced effect of Shock on you", "Bonded: 10% reduced Shock duration on you", statOrder = { 9261, 999 }, - tradeHashes = { 3801067695 }, + tradeHashes = { [3801067695] = { "10% reduced effect of Shock on you" }, }, rank = { 0 }, }, }, @@ -1759,7 +1759,7 @@ return { "+1 to Level of all Spell Skills", "Bonded: Archon recovery period expires 30% faster", statOrder = { 922, 4221 }, - tradeHashes = { 124131830 }, + tradeHashes = { [124131830] = { "+1 to Level of all Spell Skills" }, }, rank = { 50 }, }, }, @@ -1769,7 +1769,7 @@ return { "Gain 5% of Damage as Extra Damage of all Elements", "Bonded: 8% chance to gain an additional random Charge when you gain a Charge", statOrder = { 8691, 5146 }, - tradeHashes = { 731403740 }, + tradeHashes = { [731403740] = { "Gain 5% of Damage as Extra Damage of all Elements" }, }, rank = { 50 }, }, ["caster"] = { @@ -1778,7 +1778,7 @@ return { "Bonded: 12% chance when collecting an Elemental Infusion to gain an", "Bonded: additional Elemental Infusion of the same type", statOrder = { 8691, 4077, 4077.1 }, - tradeHashes = { 731403740 }, + tradeHashes = { [731403740] = { "Gain 5% of Damage as Extra Damage of all Elements" }, }, rank = { 50 }, }, }, @@ -1788,7 +1788,7 @@ return { "Gain 13% of Damage as Extra Chaos Damage", "Bonded: Gain 8% of Damage as Extra Physical Damage", statOrder = { 1602, 1601 }, - tradeHashes = { 3398787959 }, + tradeHashes = { [3398787959] = { "Gain 13% of Damage as Extra Chaos Damage" }, }, rank = { 50 }, }, ["caster"] = { @@ -1796,7 +1796,7 @@ return { "Gain 13% of Damage as Extra Chaos Damage", "Bonded: Gain 8% of Damage as Extra Physical Damage", statOrder = { 1602, 1601 }, - tradeHashes = { 3398787959 }, + tradeHashes = { [3398787959] = { "Gain 13% of Damage as Extra Chaos Damage" }, }, rank = { 50 }, }, }, @@ -1806,7 +1806,7 @@ return { "8% increased Deflection Rating while moving", "Bonded: Prevent +3% of Damage from Deflected Hits", statOrder = { 5722, 4541 }, - tradeHashes = { 1382805233 }, + tradeHashes = { [1382805233] = { "8% increased Deflection Rating while moving" }, }, rank = { 50 }, }, }, @@ -1816,7 +1816,7 @@ return { "5% increased Movement Speed", "Bonded: 10% increased Cooldown Recovery Rate", statOrder = { 827, 4539 }, - tradeHashes = { 2250533757 }, + tradeHashes = { [2250533757] = { "5% increased Movement Speed" }, }, rank = { 50 }, }, }, @@ -1826,7 +1826,7 @@ return { "50% reduced effect of Curses on you", "Bonded: 8% increased Curse Magnitudes", statOrder = { 1835, 2266 }, - tradeHashes = { 3407849389 }, + tradeHashes = { [3407849389] = { "50% reduced effect of Curses on you" }, }, rank = { 50 }, }, }, @@ -1836,7 +1836,7 @@ return { "2% increased Experience gain", "Bonded: +10% to all Elemental Resistances", statOrder = { 1397, 957 }, - tradeHashes = { 3666934677 }, + tradeHashes = { [3666934677] = { "2% increased Experience gain" }, }, rank = { 50 }, }, }, @@ -1846,7 +1846,7 @@ return { "25% increased Exposure Effect", "Bonded: 15% increased Magnitude of Non-Damaging Ailments you inflict", statOrder = { 6106, 8659 }, - tradeHashes = { 2074866941 }, + tradeHashes = { [2074866941] = { "25% increased Exposure Effect" }, }, rank = { 50 }, }, }, @@ -1856,7 +1856,7 @@ return { "50% increased Attack Damage against Rare or Unique Enemies", "Bonded: +1 to Level of all Attack Skills", statOrder = { 4382, 929 }, - tradeHashes = { 2077615515 }, + tradeHashes = { [2077615515] = { "50% increased Attack Damage against Rare or Unique Enemies" }, }, rank = { 50 }, }, }, @@ -1866,7 +1866,7 @@ return { "50% increased Energy Shield Recharge Rate", "Bonded: 20% faster start of Energy Shield Recharge", statOrder = { 966, 967 }, - tradeHashes = { 2339757871 }, + tradeHashes = { [2339757871] = { "50% increased Energy Shield Recharge Rate" }, }, rank = { 50 }, }, }, @@ -1876,7 +1876,7 @@ return { "20% increased Magnitude of Damaging Ailments you inflict", "Bonded: 15% increased Duration of Damaging Ailments on Enemies", statOrder = { 5670, 5668 }, - tradeHashes = { 1381474422 }, + tradeHashes = { [1381474422] = { "20% increased Magnitude of Damaging Ailments you inflict" }, }, rank = { 50 }, }, }, @@ -1886,7 +1886,7 @@ return { "30% increased Magnitude of Non-Damaging Ailments you inflict", "Bonded: 15% increased Duration of Elemental Ailments on Enemies", statOrder = { 8659, 1544 }, - tradeHashes = { 782230869 }, + tradeHashes = { [782230869] = { "30% increased Magnitude of Non-Damaging Ailments you inflict" }, }, rank = { 50 }, }, }, @@ -1896,7 +1896,7 @@ return { "8% increased Cast Speed", "Bonded: 20% increased Mana Cost Efficiency while on Low Mana", statOrder = { 942, 4586 }, - tradeHashes = { 2891184298 }, + tradeHashes = { [2891184298] = { "8% increased Cast Speed" }, }, rank = { 50 }, }, }, @@ -1906,7 +1906,7 @@ return { "Bow Attacks fire an additional Arrow", "Bonded: 20% increased Projectile Speed", statOrder = { 945, 875 }, - tradeHashes = { 3885405204 }, + tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, }, rank = { 50 }, }, }, @@ -1916,7 +1916,7 @@ return { "25% chance for Spell Skills to fire 2 additional Projectiles", "Bonded: Every Rage also grants 1% increased Spell Damage", statOrder = { 9431, 9405 }, - tradeHashes = { 2910761524 }, + tradeHashes = { [2910761524] = { "25% chance for Spell Skills to fire 2 additional Projectiles" }, }, rank = { 50 }, }, }, @@ -1926,7 +1926,7 @@ return { "20% increased Withered Magnitude", "Bonded: +7% to Chaos Resistance", statOrder = { 9915, 961 }, - tradeHashes = { 3973629633 }, + tradeHashes = { [3973629633] = { "20% increased Withered Magnitude" }, }, rank = { 50 }, }, }, @@ -1936,7 +1936,7 @@ return { "Adds 23 to 34 Fire Damage", "Bonded: +2% to Maximum Fire Resistance", statOrder = { 823, 953 }, - tradeHashes = { 709508406 }, + tradeHashes = { [709508406] = { "Adds 23 to 34 Fire Damage" }, }, rank = { 50 }, }, }, @@ -1946,7 +1946,7 @@ return { "Adds 19 to 28 Cold Damage", "Bonded: +2% to Maximum Cold Resistance", statOrder = { 824, 954 }, - tradeHashes = { 1037193709 }, + tradeHashes = { [1037193709] = { "Adds 19 to 28 Cold Damage" }, }, rank = { 50 }, }, }, @@ -1956,7 +1956,7 @@ return { "Adds 1 to 60 Lightning Damage", "Bonded: +2% to Maximum Lightning Resistance", statOrder = { 825, 955 }, - tradeHashes = { 3336890334 }, + tradeHashes = { [3336890334] = { "Adds 1 to 60 Lightning Damage" }, }, rank = { 50 }, }, }, @@ -1966,7 +1966,7 @@ return { "Adds 5 to 12 Physical Damage to Attacks", "Bonded: Fissure Skills have +2 to Limit", statOrder = { 843, 6192 }, - tradeHashes = { 3032590688 }, + tradeHashes = { [3032590688] = { "Adds 5 to 12 Physical Damage to Attacks" }, }, rank = { 50 }, }, }, @@ -1976,7 +1976,7 @@ return { "15% of Damage is taken from Mana before Life", "Bonded: 8% of Maximum Life Converted to Energy Shield", statOrder = { 2362, 8332 }, - tradeHashes = { 458438597 }, + tradeHashes = { [458438597] = { "15% of Damage is taken from Mana before Life" }, }, rank = { 50 }, }, }, @@ -1986,7 +1986,7 @@ return { "8% increased Attack Speed", "Bonded: 15% reduced Slowing Potency of Debuffs on You", statOrder = { 941, 4608 }, - tradeHashes = { 681332047 }, + tradeHashes = { [681332047] = { "8% increased Attack Speed" }, }, rank = { 50 }, }, }, @@ -1997,7 +1997,7 @@ return { "Targets can be affected by +1 of your Poisons at the same time", "Bonded: Gain 13% of Elemental Damage as Extra Chaos Damage", statOrder = { 2786, 8749, 1614 }, - tradeHashes = { 1755296234, 2011656677, 1755296234, 2011656677 }, + tradeHashes = { [1755296234] = { "Targets can be affected by +1 of your Poisons at the same time" }, [2011656677] = { "25% reduced Poison Duration" }, }, rank = { 50 }, }, }, @@ -2007,7 +2007,7 @@ return { "20% increased total Power counted by Warcries", "Bonded: 20% increased Glory generation", statOrder = { 9889, 6473 }, - tradeHashes = { 2663359259 }, + tradeHashes = { [2663359259] = { "20% increased total Power counted by Warcries" }, }, rank = { 50 }, }, }, @@ -2017,7 +2017,7 @@ return { "12% increased Cost Efficiency", "Bonded: Meta Skills have 12% increased Reservation Efficiency", statOrder = { 4604, 9180 }, - tradeHashes = { 263495202 }, + tradeHashes = { [263495202] = { "12% increased Cost Efficiency" }, }, rank = { 50 }, }, }, @@ -2027,7 +2027,7 @@ return { "Enemies you Curse take 6% increased Damage", "Bonded: 20% increased Area of Effect of Curses", statOrder = { 3327, 1875 }, - tradeHashes = { 1984310483 }, + tradeHashes = { [1984310483] = { "Enemies you Curse take 6% increased Damage" }, }, rank = { 50 }, }, }, @@ -2037,7 +2037,7 @@ return { "+1 Charm Slot", "Bonded: Storm Skills have +1 to Limit", statOrder = { 8739, 9505 }, - tradeHashes = { 554899692 }, + tradeHashes = { [554899692] = { "+1 Charm Slot" }, }, rank = { 50 }, }, }, @@ -2047,7 +2047,7 @@ return { "8% increased Reservation Efficiency of Minion Skills", "Bonded: Minions Revive 8% faster", statOrder = { 8524, 8529 }, - tradeHashes = { 1805633363 }, + tradeHashes = { [1805633363] = { "8% increased Reservation Efficiency of Minion Skills" }, }, rank = { 50 }, }, }, @@ -2057,7 +2057,7 @@ return { "5% increased Curse Magnitudes", "Bonded: Remnants have 10% increased effect", statOrder = { 2266, 9151 }, - tradeHashes = { 2353576063 }, + tradeHashes = { [2353576063] = { "5% increased Curse Magnitudes" }, }, rank = { 0 }, }, ["sceptre"] = { @@ -2065,7 +2065,7 @@ return { "Allies in your Presence have 8% increased Attack Speed", "Bonded: 10% increased Skill Speed while Shapeshifted", statOrder = { 893, 9317 }, - tradeHashes = { 1998951374 }, + tradeHashes = { [1998951374] = { "Allies in your Presence have 8% increased Attack Speed" }, }, rank = { 0 }, }, }, @@ -2075,7 +2075,7 @@ return { "Minions have 12% increased maximum Life", "Bonded: Remnants can be collected from 20% further away", statOrder = { 962, 9153 }, - tradeHashes = { 770672621 }, + tradeHashes = { [770672621] = { "Minions have 12% increased maximum Life" }, }, rank = { 0 }, }, ["sceptre"] = { @@ -2083,7 +2083,7 @@ return { "Allies in your Presence deal 30% increased Damage", "Bonded: 40% increased Damage while Shapeshifted", statOrder = { 881, 5567 }, - tradeHashes = { 1798257884 }, + tradeHashes = { [1798257884] = { "Allies in your Presence deal 30% increased Damage" }, }, rank = { 0 }, }, }, @@ -2093,7 +2093,7 @@ return { "10% increased Cooldown Recovery Rate", "Bonded: 15% increased effect of Archon Buffs on you", statOrder = { 4539, 4223 }, - tradeHashes = { 1004011302 }, + tradeHashes = { [1004011302] = { "10% increased Cooldown Recovery Rate" }, }, rank = { 0 }, }, ["sceptre"] = { @@ -2101,7 +2101,7 @@ return { "Allies in your Presence have 8% increased Cast Speed", "Bonded: 10% increased Skill Speed while Shapeshifted", statOrder = { 894, 9317 }, - tradeHashes = { 289128254 }, + tradeHashes = { [289128254] = { "Allies in your Presence have 8% increased Cast Speed" }, }, rank = { 0 }, }, }, @@ -2111,7 +2111,7 @@ return { "15% increased Accuracy Rating", "Bonded: 20% increased Charm Charges gained", statOrder = { 1268, 5227 }, - tradeHashes = { 624954515 }, + tradeHashes = { [624954515] = { "15% increased Accuracy Rating" }, }, rank = { 0 }, }, ["sceptre"] = { @@ -2119,7 +2119,7 @@ return { "Allies in your Presence have 14% increased Critical Hit Chance", "Bonded: 25% increased Critical Hit Chance while Shapeshifted", statOrder = { 891, 5440 }, - tradeHashes = { 1250712710 }, + tradeHashes = { [1250712710] = { "Allies in your Presence have 14% increased Critical Hit Chance" }, }, rank = { 0 }, }, }, @@ -2129,7 +2129,7 @@ return { "10% increased Magnitude of Bleeding you inflict", "Bonded: 15% reduced Magnitude of Bleeding on You", statOrder = { 4662, 4523 }, - tradeHashes = { 3166958180 }, + tradeHashes = { [3166958180] = { "10% increased Magnitude of Bleeding you inflict" }, }, rank = { 0 }, }, ["sceptre"] = { @@ -2137,7 +2137,7 @@ return { "Allies in your Presence have 14% increased Critical Damage Bonus", "Bonded: 25% increased Critical Hit Chance while Shapeshifted", statOrder = { 892, 5440 }, - tradeHashes = { 3057012405 }, + tradeHashes = { [3057012405] = { "Allies in your Presence have 14% increased Critical Damage Bonus" }, }, rank = { 0 }, }, }, @@ -2147,7 +2147,7 @@ return { "50% increased Thorns Critical Hit Chance", "Bonded: Thorns Damage has 40% chance to ignore Enemy Armour", statOrder = { 9642, 9645 }, - tradeHashes = { 915264788 }, + tradeHashes = { [915264788] = { "50% increased Thorns Critical Hit Chance" }, }, rank = { 0 }, }, ["sceptre"] = { @@ -2155,7 +2155,7 @@ return { "Allies in your Presence deal 1 to 40 added Attack Lightning Damage", "Bonded: 40% increased Attack Damage while Shapeshifted", statOrder = { 885, 4387 }, - tradeHashes = { 2854751904 }, + tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to 40 added Attack Lightning Damage" }, }, rank = { 0 }, }, }, @@ -2165,7 +2165,7 @@ return { "Gain 1 Rage on Melee Hit", "Bonded: 15% increased Warcry Cooldown Recovery Rate", statOrder = { 6431, 2929 }, - tradeHashes = { 2709367754 }, + tradeHashes = { [2709367754] = { "Gain 1 Rage on Melee Hit" }, }, rank = { 0 }, }, ["sceptre"] = { @@ -2173,7 +2173,7 @@ return { "Allies in your Presence Regenerate 8 Life per second", "Bonded: 25% increased Life Regeneration rate while Shapeshifted", statOrder = { 896, 7037 }, - tradeHashes = { 4010677958 }, + tradeHashes = { [4010677958] = { "Allies in your Presence Regenerate 8 Life per second" }, }, rank = { 0 }, }, }, @@ -2183,7 +2183,7 @@ return { "8% increased Area of Effect", "Bonded: 10% increased Reservation Efficiency of Companion Skills", statOrder = { 1557, 9178 }, - tradeHashes = { 280731498 }, + tradeHashes = { [280731498] = { "8% increased Area of Effect" }, }, rank = { 0 }, }, ["sceptre"] = { @@ -2191,7 +2191,7 @@ return { "Allies in your Presence deal 12 to 18 added Attack Physical Damage", "Bonded: 40% increased Attack Damage while Shapeshifted", statOrder = { 882, 4387 }, - tradeHashes = { 1574590649 }, + tradeHashes = { [1574590649] = { "Allies in your Presence deal 12 to 18 added Attack Physical Damage" }, }, rank = { 0 }, }, }, @@ -2201,7 +2201,7 @@ return { "10% increased Block chance", "Bonded: 10% chance for Damage of Enemies Hitting you to be Unlucky", statOrder = { 830, 5981 }, - tradeHashes = { 2481353198 }, + tradeHashes = { [2481353198] = { "10% increased Block chance" }, }, rank = { 0 }, }, ["sceptre"] = { @@ -2209,7 +2209,7 @@ return { "Allies in your Presence have +8% to all Elemental Resistances", "Bonded: +20% of Armour also applies to Elemental Damage while Shapeshifted", statOrder = { 895, 9922 }, - tradeHashes = { 3850614073 }, + tradeHashes = { [3850614073] = { "Allies in your Presence have +8% to all Elemental Resistances" }, }, rank = { 0 }, }, }, @@ -2219,7 +2219,7 @@ return { "5% increased Rarity of Items found", "Bonded: 5% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 916, 6476 }, - tradeHashes = { 3917489142 }, + tradeHashes = { [3917489142] = { "5% increased Rarity of Items found" }, }, rank = { 0 }, }, ["sceptre"] = { @@ -2227,7 +2227,7 @@ return { "10% increased Spirit", "Bonded: Minions have 30% increased Cooldown Recovery Rate for Command Skills", statOrder = { 842, 8471 }, - tradeHashes = { 3984865854 }, + tradeHashes = { [3984865854] = { "10% increased Spirit" }, }, rank = { 0 }, }, }, @@ -2237,7 +2237,7 @@ return { "+2% to Quality of all Skills", "Bonded: +4 to all Attributes", statOrder = { 4167, 946 }, - tradeHashes = { 3655769732 }, + tradeHashes = { [3655769732] = { "+2% to Quality of all Skills" }, }, rank = { 0 }, }, ["sceptre"] = { @@ -2245,7 +2245,7 @@ return { "30% increased Presence Area of Effect", "Bonded: Minions have 20% increased Area of Effect", statOrder = { 1002, 2649 }, - tradeHashes = { 101878827 }, + tradeHashes = { [101878827] = { "30% increased Presence Area of Effect" }, }, rank = { 0 }, }, }, diff --git a/src/Data/ModVeiled.lua b/src/Data/ModVeiled.lua index dc75b4347a..95ca603e74 100644 --- a/src/Data/ModVeiled.lua +++ b/src/Data/ModVeiled.lua @@ -351,353 +351,4 @@ return { ["UniqueKulemakSpiritAndSpiritReservationEfficiency_1"] = { type = "Prefix", affix = "", "+(40-60) to Spirit", "(6-10)% increased Spirit Reservation Efficiency of Skills", statOrder = { 873, 4613 }, level = 1, group = "UniqueSpiritAndSpiritReservationEfficiency", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHashes = { [2704225257] = { "+(40-60) to Spirit" }, [53386210] = { "(6-10)% increased Spirit Reservation Efficiency of Skills" }, } }, ["UniqueKulemakElementalDamageEleAilmentDuration_1"] = { type = "Prefix", affix = "", "(10-20)% increased Duration of Elemental Ailments on Enemies", "(100-160)% increased Elemental Damage", statOrder = { 1544, 1651 }, level = 1, group = "UniqueElementalDamageAndDurationOfEleAilments", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "elemental" }, tradeHashes = { [2604619892] = { "(10-20)% increased Duration of Elemental Ailments on Enemies" }, [3141070085] = { "(100-160)% increased Elemental Damage" }, } }, ["AbyssModBootsUlamanSuffixLifeRegenMoving"] = { type = "Suffix", affix = "of Ulaman", "(40-50)% increased Life Regeneration Rate while moving", statOrder = { 7061 }, level = 65, group = "LifeRegenerationPlusPercentWhileMoving", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHashes = { [2116424886] = { "(40-50)% increased Life Regeneration Rate while moving" }, } }, - ["HistoricAbyssJewelAttributesGrantExtraTribute"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-5) to Tribute", statOrder = { 7247 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraTribute", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHash = 1119086588, }, - ["HistoricAbyssJewelAttributesGrantExtraStrength"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Strength", statOrder = { 7246 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraStrength", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHash = 3871530702, }, - ["HistoricAbyssJewelAttributesGrantExtraDexterity"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Dexterity", statOrder = { 7244 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraDexterity", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHash = 1938221597, }, - ["HistoricAbyssJewelAttributesGrantExtraIntelligence"] = { affix = "", "Conquered Attribute Passive Skills also grant +(4-8) to Intelligence", statOrder = { 7245 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraIntelligence", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHash = 3116427713, }, - ["HistoricAbyssJewelAttributesGrantExtraAllAttributes"] = { affix = "", "Conquered Attribute Passive Skills also grant +(2-3) to all Attributes", statOrder = { 7243 }, level = 1, group = "HistoricAbyssJewelAttributesGrantExtraAllAttributes", weightKey = { "historic_abyss_jewel_1", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_1" }, tradeHash = 2552484522, }, - ["HistoricAbyssJewelSmallGrantEvasionRatingIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Evasion Rating", statOrder = { 7254 }, level = 1, group = "HistoricAbyssJewelSmallGrantEvasionRatingIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 468694293, }, - ["HistoricAbyssJewelSmallGrantArmourIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Armour", statOrder = { 7249 }, level = 1, group = "HistoricAbyssJewelSmallGrantArmourIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 970480050, }, - ["HistoricAbyssJewelSmallGrantEnergyShieldIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-4)% increased Energy Shield", statOrder = { 7253 }, level = 1, group = "HistoricAbyssJewelSmallGrantEnergyShieldIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 2780670304, }, - ["HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Mana Regeneration rate", statOrder = { 7256 }, level = 1, group = "HistoricAbyssJewelSmallGrantManaRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 1818915622, }, - ["HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (2-3)% increased Life Regeneration rate", statOrder = { 7255 }, level = 1, group = "HistoricAbyssJewelSmallGrantLifeRegenerationRateIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 4264952559, }, - ["HistoricAbyssJewelSmallGrantSpellDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Spell damage", statOrder = { 7259 }, level = 1, group = "HistoricAbyssJewelSmallGrantSpellDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 3038857426, }, - ["HistoricAbyssJewelSmallGrantAttackDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Attack damage", statOrder = { 7250 }, level = 1, group = "HistoricAbyssJewelSmallGrantAttackDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 8816597, }, - ["HistoricAbyssJewelSmallGrantElementalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Elemental Damage", statOrder = { 7252 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 4240116297, }, - ["HistoricAbyssJewelSmallGrantPhysicalDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Physical damage", statOrder = { 7258 }, level = 1, group = "HistoricAbyssJewelSmallGrantPhysicalDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 1829333149, }, - ["HistoricAbyssJewelSmallGrantChaosDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-5)% increased Chaos damage", statOrder = { 7251 }, level = 1, group = "HistoricAbyssJewelSmallGrantChaosDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 2601021356, }, - ["HistoricAbyssJewelSmallGrantMinionDamageIncrease"] = { affix = "", "Conquered Small Passive Skills also grant Minions deal (3-5)% increased damage", statOrder = { 7257 }, level = 1, group = "HistoricAbyssJewelSmallGrantMinionDamageIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 3343033032, }, - ["HistoricAbyssJewelSmallGrantStunThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Stun Threshold", statOrder = { 7260 }, level = 1, group = "HistoricAbyssJewelSmallGrantStunThresholdIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 2475870935, }, - ["HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease"] = { affix = "", "Conquered Small Passive Skills also grant (3-6)% increased Elemental Ailment Threshold", statOrder = { 7248 }, level = 1, group = "HistoricAbyssJewelSmallGrantElementalAilmentThresholdIncrease", weightKey = { "historic_abyss_jewel_2", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "historic_abyss_jewel_2" }, tradeHash = 1283490138, }, - ["UniqueHeartPrefixDamageGainedAsFire"] = { affix = "", "Gain (9-15)% of Damage as Extra Fire Damage", statOrder = { 847 }, level = 1, group = "DamageGainedAsFire", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "fire" }, tradeHash = 3015669065, }, - ["UniqueHeartPrefixDamageGainedAsCold"] = { affix = "", "Gain (7-13)% of Damage as Extra Chaos Damage", statOrder = { 1602 }, level = 1, group = "DamageGainedAsChaos", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "chaos" }, tradeHash = 3398787959, }, - ["UniqueHeartPrefixDamageGainedAsLightning"] = { affix = "", "Gain (9-15)% of Damage as Extra Cold Damage", statOrder = { 849 }, level = 1, group = "DamageGainedAsCold", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "cold" }, tradeHash = 2505884597, }, - ["UniqueHeartPrefixDamageGainedAsChaos"] = { affix = "", "Gain (9-15)% of Damage as Extra Lightning Damage", statOrder = { 851 }, level = 1, group = "DamageGainedAsLightning", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "heart_unique_jewel_prefix", "damage", "elemental", "lightning" }, tradeHash = 3278136794, }, - ["UniqueHeartPrefixMinionReviveSpeed"] = { affix = "", "Minions Revive (5-10)% faster", statOrder = { 8529 }, level = 1, group = "MinionReviveSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "minion" }, tradeHash = 2639966148, }, - ["UniqueHeartPrefixIncreasedSkillSpeed"] = { affix = "", "(4-8)% increased Skill Speed", statOrder = { 828 }, level = 1, group = "IncreasedSkillSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "speed" }, tradeHash = 970213192, }, - ["UniqueHeartPrefixManaCostEfficiency"] = { affix = "", "(8-16)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "ManaCostEfficiency", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHash = 4101445926, }, - ["UniqueHeartPrefixGlobalCooldownRecovery"] = { affix = "", "(10-18)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 1004011302, }, - ["UniqueHeartPrefixChanceToPierce"] = { affix = "", "(30-50)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 1, group = "ChanceToPierce", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 2321178454, }, - ["UniqueHeartPrefixSkillEffectDuration"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 3377888098, }, - ["UniqueHeartPrefixMinionLifeGainAsEnergyShield"] = { affix = "", "Minions gain (10-15)% of their maximum Life as Extra maximum Energy Shield", statOrder = { 8510 }, level = 1, group = "MinionLifeGainAsEnergyShield", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "heart_unique_jewel_prefix", "defences", "minion" }, tradeHash = 943702197, }, - ["UniqueHeartPrefixMinionLifeRegeneration"] = { affix = "", "Minions Regenerate (1-3)% of maximum Life per second", statOrder = { 2557 }, level = 1, group = "MinionLifeRegeneration", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life", "minion" }, tradeHash = 2479683456, }, - ["UniqueHeartPrefixDamageWhileInPresenceOfCompanion"] = { affix = "", "(15-25)% increased Damage while your Companion is in your Presence", statOrder = { 5566 }, level = 1, group = "DamageWhileInPresenceOfCompanion", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage" }, tradeHash = 693180608, }, - ["UniqueHeartPrefixAggravateBleedOnAttackHitChance"] = { affix = "", "(5-10)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4121 }, level = 1, group = "AggravateBleedOnAttackHitChance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "bleed", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 2705185939, }, - ["UniqueHeartPrefixLuckyLightningDamageChancePercent"] = { affix = "", "(15-25)% chance for Lightning Damage with Hits to be Lucky", statOrder = { 5029 }, level = 1, group = "LuckyLightningDamageChancePercent", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "elemental", "lightning" }, tradeHash = 2466011626, }, - ["UniqueHeartPrefixRecoverLifeOnKillingPoisonedEnemy"] = { affix = "", "Recover (2-4)% of maximum Life on Killing a Poisoned Enemy", statOrder = { 9115 }, level = 1, group = "RecoverLifeOnKillingPoisonedEnemy", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHash = 1781372024, }, - ["UniqueHeartPrefixPercentOfLeechIsInstant"] = { affix = "", "(8-15)% of Leech is Instant", statOrder = { 6962 }, level = 1, group = "PercentOfLeechIsInstant", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 3561837752, }, - ["UniqueHeartPrefixEvasionRatingFromBodyArmour"] = { affix = "", "(40-60)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4810 }, level = 1, group = "EvasionRatingFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "evasion", "unveiled_mod", "heart_unique_jewel_prefix", "defences" }, tradeHash = 3509362078, }, - ["UniqueHeartPrefixBodyArmourFromBodyArmour"] = { affix = "", "(40-60)% increased Armour from Equipped Body Armour", statOrder = { 4809 }, level = 1, group = "BodyArmourFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "armour", "unveiled_mod", "heart_unique_jewel_prefix", "defences" }, tradeHash = 1015576579, }, - ["UniqueHeartPrefixMaximumEnergyShieldFromBodyArmour"] = { affix = "", "(40-60)% increased Energy Shield from Equipped Body Armour", statOrder = { 8313 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "heart_unique_jewel_prefix", "defences" }, tradeHash = 1195319608, }, - ["UniqueHeartPrefixTriggersRefundEnergySpent"] = { affix = "", "(6-12)% chance for Trigger skills to refund half of Energy Spent", statOrder = { 9709 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 599320227, }, - ["UniqueHeartPrefixManaRegenerationRateWhileMoving"] = { affix = "", "(20-30)% increased Mana Regeneration Rate while moving", statOrder = { 7532 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHash = 1327522346, }, - ["UniqueHeartPrefixCullingStrikeThreshold"] = { affix = "", "(15-25)% increased Culling Strike Threshold", statOrder = { 5520 }, level = 1, group = "CullingStrikeThreshold", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 3563080185, }, - ["UniqueHeartPrefixPhysicalDamagePreventedRecoup"] = { affix = "", "(5-10)% of Physical Damage prevented Recouped as Life", statOrder = { 8867 }, level = 1, group = "PhysicalDamagePreventedRecoup", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "physical" }, tradeHash = 1374654984, }, - ["UniqueHeartPrefixMaximumElementalResistance"] = { affix = "", "+1% to all Maximum Elemental Resistances", statOrder = { 952 }, level = 1, group = "MaximumElementalResistance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "elemental", "resistance" }, tradeHash = 1978899297, }, - ["UniqueHeartPrefixIceCrystalMaximumLife"] = { affix = "", "(40-60)% increased Ice Crystal Life", statOrder = { 6792 }, level = 1, group = "IceCrystalMaximumLife", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 3274422940, }, - ["UniqueHeartPrefixRecoupSpeed"] = { affix = "", "(8-14)% increased speed of Recoup Effects", statOrder = { 9084 }, level = 1, group = "RecoupSpeed", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 2363593824, }, - ["UniqueHeartPrefixFlaskLifeRegenForXSeconds"] = { affix = "", "Regenerate (1-1.5)% of maximum Life per Second if you've used a Life Flask in the past 10 seconds", statOrder = { 7049 }, level = 1, group = "FlaskLifeRegenForXSeconds", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "life" }, tradeHash = 3161573445, }, - ["UniqueHeartPrefixCharmRecoverManaOnUse"] = { affix = "", "Recover (5-10)% of maximum Mana when a Charm is used", statOrder = { 9117 }, level = 1, group = "CharmRecoverManaOnUse", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "resource", "unveiled_mod", "heart_unique_jewel_prefix", "mana" }, tradeHash = 4121454694, }, - ["UniqueHeartPrefixCharmChanceToUseOtherCharm"] = { affix = "", "(10-15)% chance when a Charm is used to use another Charm without consuming Charges", statOrder = { 5255 }, level = 1, group = "CharmChanceToUseOtherCharm", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 1949851472, }, - ["UniqueHeartPrefixCharmEffect"] = { affix = "", "Charms applied to you have (15-25)% increased Effect", statOrder = { 5234 }, level = 1, group = "CharmEffect", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "charm", "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 3480095574, }, - ["UniqueHeartPrefixThornsCriticalStrikeChance"] = { affix = "", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4616 }, level = 1, group = "ThornsCriticalStrikeChance", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 2715190555, }, - ["UniqueHeartPrefixThornsFromPercentBodyArmour"] = { affix = "", "Gain Physical Thorns damage equal to (4-6)% of Item Armour on Equipped Body Armour", statOrder = { 4526 }, level = 1, group = "ThornsFromPercentBodyArmour", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "damage" }, tradeHash = 1793740180, }, - ["UniqueHeartPrefixAttackSpeedPercentIfRareOrUniqueEnemyNearby"] = { affix = "", "(5-8)% increased Attack Speed while a Rare or Unique Enemy is in your Presence", statOrder = { 4434 }, level = 1, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix", "attack", "speed" }, tradeHash = 314741699, }, - ["UniqueHeartPrefixElementalExposureEffect"] = { affix = "", "(15-25)% increased Exposure Effect", statOrder = { 6106 }, level = 1, group = "ElementalExposureEffect", weightKey = { "heart_unique_jewel_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_prefix" }, tradeHash = 2074866941, }, - ["UniqueHeartSuffixMaximumFireResist"] = { affix = "", "+1% to Maximum Fire Resistance", statOrder = { 953 }, level = 1, group = "MaximumFireResist", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "fire", "resistance" }, tradeHash = 4095671657, }, - ["UniqueHeartSuffixMaximumColdResist"] = { affix = "", "+1% to Maximum Cold Resistance", statOrder = { 954 }, level = 1, group = "MaximumColdResist", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "cold", "resistance" }, tradeHash = 3676141501, }, - ["UniqueHeartSuffixMaximumLightningResist"] = { affix = "", "+1% to Maximum Lightning Resistance", statOrder = { 955 }, level = 1, group = "MaximumLightningResistance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "lightning", "resistance" }, tradeHash = 1011760251, }, - ["UniqueHeartSuffixSkillEffectDuration"] = { affix = "", "(3-8)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 3377888098, }, - ["UniqueHeartSuffixLifeRegenerationRate"] = { affix = "", "(6-12)% increased Life Regeneration rate", statOrder = { 969 }, level = 1, group = "LifeRegenerationRate", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHash = 44972811, }, - ["UniqueHeartSuffixStunDamageIncrease"] = { affix = "", "(6-12)% increased Stun Buildup", statOrder = { 984 }, level = 1, group = "StunDamageIncrease", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 239367161, }, - ["UniqueHeartSuffixIncreasedStunThreshold"] = { affix = "", "(5-10)% increased Stun Threshold", statOrder = { 2878 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 680068163, }, - ["UniqueHeartSuffixRageOnHit"] = { affix = "", "Gain 1 Rage on Melee Hit", statOrder = { 6431 }, level = 1, group = "RageOnHit", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 2709367754, }, - ["UniqueHeartSuffixGainRageWhenHit"] = { affix = "", "Gain (1-2) Rage when Hit by an Enemy", statOrder = { 6433 }, level = 1, group = "GainRageWhenHit", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 3292710273, }, - ["UniqueHeartSuffixLifeCost"] = { affix = "", "(2-3)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 1, group = "LifeCost", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHash = 2480498143, }, - ["UniqueHeartSuffixAilmentChance"] = { affix = "", "(4-8)% increased chance to inflict Ailments", statOrder = { 4136 }, level = 1, group = "AilmentChance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHash = 1772247089, }, - ["UniqueHeartSuffixIncreasedAilmentThreshold"] = { affix = "", "(6-12)% increased Elemental Ailment Threshold", statOrder = { 4147 }, level = 1, group = "IncreasedAilmentThreshold", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 3544800472, }, - ["UniqueHeartSuffixIncreasedAttackSpeed"] = { affix = "", "(2-3)% increased Attack Speed", statOrder = { 941 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "attack", "speed" }, tradeHash = 681332047, }, - ["UniqueHeartSuffixGlobalCooldownRecovery"] = { affix = "", "(2-3)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 1004011302, }, - ["UniqueHeartSuffixDebuffTimePassed"] = { affix = "", "Debuffs on you expire (4-8)% faster", statOrder = { 5703 }, level = 1, group = "DebuffTimePassed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 1238227257, }, - ["UniqueHeartSuffixFasterAilmentDamageForJewel"] = { affix = "", "Damaging Ailments deal damage (2-4)% faster", statOrder = { 5671 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHash = 538241406, }, - ["UniqueHeartSuffixMovementVelocity"] = { affix = "", "(1-2)% increased Movement Speed", statOrder = { 827 }, level = 1, group = "MovementVelocity", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "speed" }, tradeHash = 2250533757, }, - ["UniqueHeartSuffixSlowPotency"] = { affix = "", "(5-10)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 1, group = "SlowPotency", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 924253255, }, - ["UniqueHeartSuffixIncreasedFlaskChargesGained"] = { affix = "", "(4-8)% increased Flask Charges gained", statOrder = { 6216 }, level = 1, group = "IncreasedFlaskChargesGained", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 1836676211, }, - ["UniqueHeartSuffixFlaskDuration"] = { affix = "", "(4-8)% increased Flask Effect Duration", statOrder = { 879 }, level = 1, group = "FlaskDuration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 3741323227, }, - ["UniqueHeartSuffixBaseChanceToPoison"] = { affix = "", "(5-10)% chance to Poison on Hit", statOrder = { 2789 }, level = 1, group = "BaseChanceToPoison", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 795138349, }, - ["UniqueHeartSuffixBaseChanceToBleed"] = { affix = "", "(5-10)% chance to inflict Bleeding on Hit", statOrder = { 4532 }, level = 1, group = "BaseChanceToBleed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 2174054121, }, - ["UniqueHeartSuffixIncreasedCastSpeedForJewel"] = { affix = "", "(2-3)% increased Cast Speed", statOrder = { 942 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "caster", "speed" }, tradeHash = 2891184298, }, - ["UniqueHeartSuffixCritChanceForJewel"] = { affix = "", "(4-8)% increased Critical Hit Chance", statOrder = { 933 }, level = 1, group = "CritChanceForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "critical" }, tradeHash = 587431675, }, - ["UniqueHeartSuffixCritMultiplierForJewel"] = { affix = "", "(6-12)% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CritMultiplierForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "damage", "critical" }, tradeHash = 3556824919, }, - ["UniqueHeartSuffixSpellCritMultiplierForJewel"] = { affix = "", "(6-12)% increased Critical Spell Damage Bonus", statOrder = { 939 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "unveiled_mod", "heart_unique_jewel_suffix", "damage", "caster", "critical" }, tradeHash = 274716455, }, - ["UniqueHeartSuffixSpellCriticalStrikeChance"] = { affix = "", "(4-8)% increased Critical Hit Chance for Spells", statOrder = { 935 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "caster", "critical" }, tradeHash = 737908626, }, - ["UniqueHeartSuffixDamageRemovedFromManaBeforeLife"] = { affix = "", "(2-3)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life", "mana" }, tradeHash = 458438597, }, - ["UniqueHeartSuffixMaximumLifeOnKillPercent"] = { affix = "", "Recover (1-2)% of maximum Life on Kill", statOrder = { 1437 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHash = 2023107756, }, - ["UniqueHeartSuffixManaGainedOnKillPercentage"] = { affix = "", "Recover (1-2)% of maximum Mana on Kill", statOrder = { 1443 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "mana" }, tradeHash = 1604736568, }, - ["UniqueHeartSuffixLifeRecoupForJewel"] = { affix = "", "(2-3)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "life" }, tradeHash = 1444556985, }, - ["UniqueHeartSuffixManaRegeneration"] = { affix = "", "(4-8)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "ManaRegeneration", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "heart_unique_jewel_suffix", "mana" }, tradeHash = 789117908, }, - ["UniqueHeartSuffixMinionPhysicalDamageReduction"] = { affix = "", "Minions have (3-12)% additional Physical Damage Reduction", statOrder = { 1946 }, level = 1, group = "MinionPhysicalDamageReduction", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "physical", "minion" }, tradeHash = 3119612865, }, - ["UniqueHeartSuffixMinionAttackSpeedAndCastSpeed"] = { affix = "", "Minions have (2-3)% increased Attack and Cast Speed", statOrder = { 8453 }, level = 1, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "attack", "caster", "speed", "minion" }, tradeHash = 3091578504, }, - ["UniqueHeartSuffixMinionCriticalStrikeChanceIncrease"] = { affix = "", "Minions have (6-12)% increased Critical Hit Chance", statOrder = { 8476 }, level = 1, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "minion", "critical" }, tradeHash = 491450213, }, - ["UniqueHeartSuffixMinionElementalResistance"] = { affix = "", "Minions have +(3-4)% to all Elemental Resistances", statOrder = { 2558 }, level = 1, group = "MinionElementalResistance", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "elemental", "resistance", "minion" }, tradeHash = 1423639565, }, - ["UniqueHeartSuffixStunThresholdfromEnergyShield"] = { affix = "", "Gain additional Stun Threshold equal to (4-10)% of maximum Energy Shield", statOrder = { 9531 }, level = 1, group = "StunThresholdfromEnergyShield", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix" }, tradeHash = 416040624, }, - ["UniqueHeartSuffixAilmentThresholdfromEnergyShield"] = { affix = "", "Gain additional Ailment Threshold equal to (4-10)% of maximum Energy Shield", statOrder = { 4146 }, level = 1, group = "AilmentThresholdfromEnergyShield", weightKey = { "heart_unique_jewel_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "heart_unique_jewel_suffix", "ailment" }, tradeHash = 3398301358, }, - ["AbyssModRadiusJewelPrefixDamageTakenRecoupLife"] = { type = "Prefix", affix = "Lightless", "1% of Damage taken Recouped as Life", statOrder = { 970 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenRecoupLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 3669820740, }, - ["AbyssModRadiusJewelPrefixDamageTakenRecoupMana"] = { type = "Prefix", affix = "Lightless", "1% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenRecoupMana", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 85367160, }, - ["AbyssModRadiusJewelPrefixPercentMaximumMana"] = { type = "Prefix", affix = "Lightless", "1% increased maximum Mana", statOrder = { 872 }, level = 1, group = "HybridAbyssModRadiusJewelPercentMaximumMana", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 2589572664, }, - ["AbyssModRadiusJewelPrefixPercentMaximumLife"] = { type = "Prefix", affix = "Lightless", "1% increased maximum Life", statOrder = { 870 }, level = 1, group = "HybridAbyssModRadiusJewelPercentMaximumLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 160888068, }, - ["AbyssModRadiusJewelPrefixGlobalDefences"] = { type = "Prefix", affix = "Lightless", "(2-3)% increased Global Defences", statOrder = { 2486 }, level = 1, group = "HybridAbyssModRadiusJewelGlobalDefences", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 3488475284, }, - ["AbyssModRadiusJewelPrefixDamageTakenFromManaBeforeLife"] = { type = "Prefix", affix = "Lightless", "1% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 1, group = "HybridAbyssModRadiusJewelDamageTakenFromManaBeforeLife", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 2709646369, }, - ["AbyssModRadiusJewelPrefixRegeneratePercentLifePerSecond"] = { type = "Suffix", affix = "Lightless", "Regenerate (0.03-0.07)% of maximum Life per second", statOrder = { 1617 }, level = 1, group = "HybridAbyssModRadiusJewelRegeneratePercentLifePerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 3566150527, }, - ["AbyssModRadiusJewelPrefixManaCostEfficiency"] = { type = "Suffix", affix = "Lightless", "(2-3)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "HybridAbyssModRadiusJewelManaCostEfficiency", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 4257790560, }, - ["AbyssModRadiusJewelPrefixReducedCriticalHitChanceAgainstYou"] = { type = "Suffix", affix = "Lightless", "Hits have (3-5)% reduced Critical Hit Chance against you", statOrder = { 2747 }, level = 1, group = "HybridAbyssModRadiusJewelReducedCriticalHitChanceAgainstYou", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 2135541924, }, - ["AbyssModRadiusJewelPrefixManaFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Mana Flasks gain 0.1 charges per Second", statOrder = { 6452 }, level = 1, group = "HybridAbyssModRadiusJewelManaFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 3939216292, }, - ["AbyssModRadiusJewelPrefixLifeFlaskChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Life Flasks gain 0.1 charges per Second", statOrder = { 6451 }, level = 1, group = "HybridAbyssModRadiusJewelLifeFlaskChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 1148433552, }, - ["AbyssModRadiusJewelPrefixCharmChargesPerSecond"] = { type = "Suffix", affix = "Lightless", "Charms gain 0.1 charges per Second", statOrder = { 6448 }, level = 1, group = "HybridAbyssModRadiusJewelCharmChargesPerSecond", weightKey = { "int_radius_jewel", "str_radius_jewel", "dex_radius_jewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, nodeType = 2, tradeHash = 1034611536, }, - ["AbyssModJewelPrefixSpellDamageArmour"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Spell Damage", "(5-10)% increased Armour", statOrder = { 853, 864 }, level = 1, group = "HybridAbyssModJewelSpellDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences", "caster" }, tradeHash = 1131747566, }, - ["AbyssModJewelPrefixSpellDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Spell Damage", "(5-10)% increased Evasion Rating", statOrder = { 853, 866 }, level = 1, group = "HybridAbyssModJewelSpellDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences", "caster" }, tradeHash = 3584035298, }, - ["AbyssModJewelPrefixSpellDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Spell Damage", "(5-10)% increased maximum Energy Shield", statOrder = { 853, 868 }, level = 1, group = "HybridAbyssModJewelSpellDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences", "caster" }, tradeHash = 1632833053, }, - ["AbyssModJewelPrefixAttackDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Attack Damage", statOrder = { 864, 1093 }, level = 1, group = "HybridAbyssModJewelAttackDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences", "attack" }, tradeHash = 4215160445, }, - ["AbyssModJewelPrefixAttackDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Attack Damage", statOrder = { 866, 1093 }, level = 1, group = "HybridAbyssModJewelAttackDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences", "attack" }, tradeHash = 1313000010, }, - ["AbyssModJewelPrefixAttackDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Attack Damage", statOrder = { 868, 1093 }, level = 1, group = "HybridAbyssModJewelAttackDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences", "attack" }, tradeHash = 2921752643, }, - ["AbyssModJewelPrefixMinionDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "Minions deal (4-8)% increased Damage", statOrder = { 864, 1646 }, level = 1, group = "HybridAbyssModJewelMinionDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences", "minion" }, tradeHash = 289988841, }, - ["AbyssModJewelPrefixMinionDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "Minions deal (4-8)% increased Damage", statOrder = { 866, 1646 }, level = 1, group = "HybridAbyssModJewelMinionDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences", "minion" }, tradeHash = 2631111329, }, - ["AbyssModJewelPrefixMinionDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "Minions deal (4-8)% increased Damage", statOrder = { 868, 1646 }, level = 1, group = "HybridAbyssModJewelMinionDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences", "minion" }, tradeHash = 262571738, }, - ["AbyssModJewelPrefixThornsDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Thorns damage", statOrder = { 864, 9646 }, level = 1, group = "HybridAbyssModJewelThornsDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences" }, tradeHash = 1886584833, }, - ["AbyssModJewelPrefixThornsDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Thorns damage", statOrder = { 866, 9646 }, level = 1, group = "HybridAbyssModJewelThornsDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences" }, tradeHash = 1139025795, }, - ["AbyssModJewelPrefixThornsDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Thorns damage", statOrder = { 868, 9646 }, level = 1, group = "HybridAbyssModJewelThornsDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences" }, tradeHash = 721193160, }, - ["AbyssModJewelPrefixTotemDamageArmour"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Armour", "(4-8)% increased Totem Damage", statOrder = { 864, 1089 }, level = 1, group = "HybridAbyssModJewelTotemDamageArmour", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences" }, tradeHash = 3834188973, }, - ["AbyssModJewelPrefixTotemDamageEvasion"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased Evasion Rating", "(4-8)% increased Totem Damage", statOrder = { 866, 1089 }, level = 1, group = "HybridAbyssModJewelTotemDamageEvasion", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "evasion", "unveiled_mod", "defences" }, tradeHash = 1129700234, }, - ["AbyssModJewelPrefixTotemDamageEnergyShield"] = { type = "Prefix", affix = "Lightless", "(5-10)% increased maximum Energy Shield", "(4-8)% increased Totem Damage", statOrder = { 868, 1089 }, level = 1, group = "HybridAbyssModJewelTotemDamageEnergyShield", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "energy_shield", "unveiled_mod", "defences" }, tradeHash = 495549257, }, - ["AbyssModJewelPrefixFireDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Fire Damage", "Damage Penetrates (4-7)% Fire Resistance", statOrder = { 855, 2613 }, level = 1, group = "HybridAbyssModJewelFireDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "fire" }, tradeHash = 1903981671, }, - ["AbyssModJewelPrefixLightningDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Lightning Damage", "Damage Penetrates (4-7)% Lightning Resistance", statOrder = { 857, 2615 }, level = 1, group = "HybridAbyssModJewelLightningDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "lightning" }, tradeHash = 4255260716, }, - ["AbyssModJewelPrefixColdDamageAndPen"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Cold Damage", "Damage Penetrates (4-7)% Cold Resistance", statOrder = { 856, 2614 }, level = 1, group = "HybridAbyssModJewelColdDamageAndPen", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "cold" }, tradeHash = 3120339385, }, - ["AbyssModJewelPrefixBleedChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to inflict Bleeding", "(5-10)% increased Magnitude of Bleeding you inflict", statOrder = { 4660, 4662 }, level = 1, group = "HybridAbyssModJewelBleedChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "bleed", "unveiled_mod", "ailment" }, tradeHash = 3930825502, }, - ["AbyssModJewelPrefixPoisonChanceAndMagnitude"] = { type = "Prefix", affix = "Lightless", "15% increased chance to Poison", "(5-10)% increased Magnitude of Poison you inflict", statOrder = { 8917, 8925 }, level = 1, group = "HybridAbyssModJewelPoisonChanceAndMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "poison", "unveiled_mod", "ailment" }, tradeHash = 1762956693, }, - ["AbyssModJewelPrefixWarcryBuffEffectAndDamage"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Warcry Buff Effect", "(5-10)% increased Damage with Warcries", statOrder = { 9883, 9886 }, level = 1, group = "HybridAbyssModJewelWarcryBuffEffectAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, tradeHash = 1025420770, }, - ["AbyssModJewelPrefixCompanionLifeAndDamage"] = { type = "Prefix", affix = "Lightless", "Companions deal (5-10)% increased Damage", "Companions have (5-10)% increased maximum Life", statOrder = { 5339, 5342 }, level = 1, group = "HybridAbyssModJewelCompanionLifeAndDamage", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "minion" }, tradeHash = 577252853, }, - ["AbyssModJewelPrefixGlobalPhysicalDamageArmourBreak"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Global Physical Damage", "Break (4-8)% increased Armour", statOrder = { 1122, 4283 }, level = 1, group = "HybridAbyssModJewelGlobalPhysicalDamageArmourBreak", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences", "physical" }, tradeHash = 622659131, }, - ["AbyssModJewelPrefixElementalDamageAilmentMagnitude"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Elemental Damage", "(4-8)% increased Magnitude of Ailments you inflict", statOrder = { 1651, 4140 }, level = 1, group = "HybridAbyssModJewelElementalDamageAilmentMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "ailment" }, tradeHash = 2415303479, }, - ["AbyssModJewelPrefixChaosDamageWitherEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Chaos Damage", "(3-6)% increased Withered Magnitude", statOrder = { 858, 9915 }, level = 1, group = "HybridAbyssModJewelChaosDamageWitherEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "chaos" }, tradeHash = 1135901605, }, - ["AbyssModJewelPrefixMinionAreaAndLife"] = { type = "Prefix", affix = "Lightless", "Minions have (4-8)% increased maximum Life", statOrder = { 962 }, level = 1, group = "HybridAbyssModJewelMinionAreaAndLife", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "minion" }, tradeHash = 2981137407, }, - ["AbyssModJewelPrefixAuraSkillEffectPresenceAreaOfEffect"] = { type = "Prefix", affix = "Lightless", "(8-15)% increased Presence Area of Effect", "Aura Skills have (2-4)% increased Magnitudes", statOrder = { 1002, 2472 }, level = 1, group = "HybridAbyssModJewelAuraSkillEffectPresenceAreaOfEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "aura" }, tradeHash = 1974943988, }, - ["AbyssModJewelPrefixElementalExposureEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Exposure Effect", statOrder = { 6106 }, level = 1, group = "HybridAbyssModJewelElementalExposureEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental" }, tradeHash = 2074866941, }, - ["AbyssModJewelPrefixAbyssalWastingEffect"] = { type = "Prefix", affix = "Lightless", "(10-20)% increased Magnitude of Abyssal Wasting you inflict", statOrder = { 4004 }, level = 1, group = "HybridAbyssModJewelAbyssalWastingEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, tradeHash = 4043376133, }, - ["AbyssModJewelSuffixIncreasedStrength"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Strength", statOrder = { 1080 }, level = 1, group = "HybridAbyssModJewelIncreasedStrength", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHash = 734614379, }, - ["AbyssModJewelSuffixIncreasedDexterity"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Dexterity", statOrder = { 1081 }, level = 1, group = "HybridAbyssModJewelIncreasedDexterity", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHash = 4139681126, }, - ["AbyssModJewelSuffixIncreasedIntelligence"] = { type = "Suffix", affix = "of the Abyss", "(1-2)% increased Intelligence", statOrder = { 1082 }, level = 1, group = "HybridAbyssModJewelIncreasedIntelligence", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "attribute" }, tradeHash = 656461285, }, - ["AbyssModArmourJewelleryUlamanSuffixLightningChaosResistance"] = { type = "Suffix", affix = "of Ulaman", "+(13-17)% to Lightning and Chaos Resistances", statOrder = { 7070 }, level = 65, group = "LightningAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "elemental", "lightning", "chaos", "resistance" }, tradeHash = 3465022881, }, - ["AbyssModArmourJewelleryUlamanSuffixStrengthAndDexterity"] = { type = "Suffix", affix = "of Ulaman", "+(9-15) to Strength and Dexterity", statOrder = { 1075 }, level = 65, group = "StrengthAndDexterity", weightKey = { "armour", "belt", "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "attribute" }, tradeHash = 538848803, }, - ["AbyssModArmourJewelleryAmanamuSuffixFireChaosResistance"] = { type = "Suffix", affix = "of Amanamu", "+(13-17)% to Fire and Chaos Resistances", statOrder = { 6127 }, level = 65, group = "FireAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "chaos", "resistance" }, tradeHash = 378817135, }, - ["AbyssModArmourJewelleryAmanamuSuffixStrengthAndIntelligence"] = { type = "Suffix", affix = "of Amanamu", "+(9-15) to Strength and Intelligence", statOrder = { 1076 }, level = 65, group = "StrengthAndIntelligence", weightKey = { "armour", "belt", "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attribute" }, tradeHash = 1535626285, }, - ["AbyssModArmourJewelleryKurgalSuffixColdChaosResistance"] = { type = "Suffix", affix = "of Kurgal", "+(13-17)% to Cold and Chaos Resistances", statOrder = { 5294 }, level = 65, group = "ColdAndChaosDamageResistance", weightKey = { "armour", "belt", "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental", "cold", "chaos", "resistance" }, tradeHash = 3393628375, }, - ["AbyssModArmourJewelleryKurgalSuffixDexterityAndIntelligence"] = { type = "Suffix", affix = "of Kurgal", "+(9-15) to Dexterity and Intelligence", statOrder = { 1077 }, level = 65, group = "DexterityAndIntelligence", weightKey = { "armour", "belt", "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attribute" }, tradeHash = 2300185227, }, - ["AbyssModFourCatKurgalSuffixManaCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(6-10)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 65, group = "ManaCostEfficiency", weightKey = { "helmet", "gloves", "focus", "quiver", "default", "kurgal_mod", }, weightVal = { 1, 1, 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 4101445926, }, - ["AbyssModHelmUlamanSuffixMarkedEnemyTakeIncreasedDamage"] = { type = "Suffix", affix = "of Ulaman", "Enemies you Mark take (4-8)% increased Damage", statOrder = { 8281 }, level = 65, group = "MarkedEnemyTakesIncreasedDamage", weightKey = { "str_armour", "int_armour", "str_int_armour", "helmet", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 2083058281, }, - ["AbyssModHelmUlamanSuffixCriticalHitDamage"] = { type = "Suffix", affix = "of Ulaman", "(13-20)% increased Critical Damage Bonus", statOrder = { 937 }, level = 65, group = "CriticalStrikeMultiplier", weightKey = { "str_armour", "int_armour", "str_int_armour", "helmet", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage", "critical" }, tradeHash = 3556824919, }, - ["AbyssModHelmUlamanSuffixLifeCostEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Life Cost Efficiency", statOrder = { 4572 }, level = 65, group = "LifeCostEfficiency", weightKey = { "helmet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHash = 310945763, }, - ["AbyssModHelmAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(4-8)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4613 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "helmet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 53386210, }, - ["AbyssModHelmAmanamuSuffixGloryGeneration"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Glory generation", statOrder = { 6473 }, level = 65, group = "GloryGeneration", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 3143918757, }, - ["AbyssModHelmAmanamuSuffixPresenceAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% increased Presence Area of Effect", statOrder = { 1002 }, level = 65, group = "PresenceRadius", weightKey = { "helmet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 101878827, }, - ["AbyssModHelmKurgalSuffixArcaneSurgeEffect"] = { type = "Suffix", affix = "of Kurgal", "(20-30)% increased effect of Arcane Surge on you", statOrder = { 2891 }, level = 65, group = "ArcaneSurgeEffect", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "helmet", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2103650854, }, - ["AbyssModGlovesUlamanSuffixAilmentMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% increased Magnitude of Ailments you inflict", statOrder = { 4140 }, level = 65, group = "AilmentEffect", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage", "ailment" }, tradeHash = 1303248024, }, - ["AbyssModGlovesUlamanSuffixPoisonChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to Poison", statOrder = { 8917 }, level = 65, group = "PoisonChanceIncrease", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3481083201, }, - ["AbyssModGlovesUlamanSuffixBleedChance"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased chance to inflict Bleeding", statOrder = { 4660 }, level = 65, group = "BleedChanceIncrease", weightKey = { "gloves", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 242637938, }, - ["AbyssModGlovesUlamanSuffixIncisionChance"] = { type = "Suffix", affix = "of Ulaman", "(15-25)% chance for Attack Hits to apply Incision", statOrder = { 5175 }, level = 65, group = "IncisionChance", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "ulaman_mod", "damage", "physical", "ailment" }, tradeHash = 300723956, }, - ["AbyssModGlovesUlamanSuffixFrenzyChargeConsumedSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(8-12)% increased Skill Speed if you've consumed a Frenzy Charge Recently", statOrder = { 9316 }, level = 65, group = "SkillSpeedIfConsumedFrenzyChargeRecently", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHash = 3313255158, }, - ["AbyssModGlovesAmanamuSuffixCurseAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% increased Area of Effect of Curses", statOrder = { 1875 }, level = 65, group = "CurseAreaOfEffect", weightKey = { "str_armour", "int_armour", "str_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHash = 153777645, }, - ["AbyssModGlovesAmanamuSuffixDazeChance"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% chance to Daze on Hit", statOrder = { 4530 }, level = 65, group = "DazeBuildup", weightKey = { "gloves", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 3146310524, }, - ["AbyssModGlovesAmanamuSuffixPercentOfLifeLeechInstant"] = { type = "Suffix", affix = "of Amanamu", "(8-15)% of Leech is Instant", statOrder = { 6962 }, level = 65, group = "PercentOfLeechIsInstant", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 3561837752, }, - ["AbyssModGlovesAmanamuSuffixImmobilisationBuildUp"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% increased Immobilisation buildup", statOrder = { 6748 }, level = 65, group = "ImmobilisationBuildup", weightKey = { "str_armour", "int_armour", "str_int_armour", "gloves", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 330530785, }, - ["AbyssModGlovesKurgalSuffixArcaneSurgeOnCriticalHit"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% chance to Gain Arcane Surge when you deal a Critical Hit", statOrder = { 6320 }, level = 65, group = "GainArcaneSurgeOnCrit", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "critical" }, tradeHash = 446027070, }, - ["AbyssModGlovesKurgalSuffixCastSpeedWhileOnFullMana"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cast Speed when on Full Life", statOrder = { 1667 }, level = 65, group = "CastSpeedOnFullLife", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "gloves", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster", "speed" }, tradeHash = 656291658, }, - ["AbyssModBootsAndBeltUlamanSuffixReducedPoisonDurationSelf"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% reduced Poison Duration on you", statOrder = { 1000 }, level = 65, group = "ReducedPoisonDuration", weightKey = { "boots", "belt", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "poison", "unveiled_mod", "ulaman_mod", "chaos", "ailment" }, tradeHash = 3301100256, }, - ["AbyssModBootsAndBeltAmanamuSuffixReducedIgniteDuration"] = { type = "Suffix", affix = "of Amanamu", "(20-30)% reduced Ignite Duration on you", statOrder = { 996 }, level = 65, group = "ReducedIgniteDurationOnSelf", weightKey = { "boots", "belt", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "ailment" }, tradeHash = 986397080, }, - ["AbyssModBootsAndBeltKurgalSuffixReducedBleedDurationSelf"] = { type = "Suffix", affix = "of Kurgal", "(20-30)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 65, group = "ReducedBleedDuration", weightKey = { "boots", "belt", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "kurgal_mod", "physical", "ailment" }, tradeHash = 1692879867, }, - ["AbyssModBootsUlamanSuffixCorruptedBloodImmunity"] = { type = "Suffix", affix = "of Ulaman", "Corrupted Blood cannot be inflicted on you", statOrder = { 4906 }, level = 65, group = "CorruptedBloodImmunity", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "bleed", "unveiled_mod", "ulaman_mod", "physical", "ailment" }, tradeHash = 1658498488, }, - ["AbyssModBootsUlamanSuffixReducedMovementPenaltyWhileSkilling"] = { type = "Suffix", affix = "of Ulaman", "(6-10)% reduced Movement Speed Penalty from using Skills while moving", statOrder = { 8594 }, level = 65, group = "MovementVelocityPenaltyWhilePerformingAction", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHash = 2590797182, }, - ["AbyssModBootsAmanamuSuffixReducedPotencyOfSlows"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% reduced Slowing Potency of Debuffs on You", statOrder = { 4608 }, level = 65, group = "SlowPotency", weightKey = { "boots", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 924253255, }, - ["AbyssModBootsAmanamuSuffixDodgeRollDistance"] = { type = "Suffix", affix = "of Amanamu", "+(0.1-0.2) metres to Dodge Roll distance", statOrder = { 5801 }, level = 65, group = "DodgeRollDistance", weightKey = { "boots", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 258119672, }, - ["AbyssModBootsKurgalSuffixManaCostEfficiencyDodgeRolledRecently"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Mana Cost Efficiency if you have Dodge Rolled Recently", statOrder = { 7482 }, level = 65, group = "ManaCostEfficiencyIfDodgeRolledRecently", weightKey = { "boots", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 3396435291, }, - ["AbyssModBootsKurgalSuffixManaRegenerationStationary"] = { type = "Suffix", affix = "of Kurgal", "(40-50)% increased Mana Regeneration Rate while stationary", statOrder = { 3883 }, level = 65, group = "ManaRegenerationWhileStationary", weightKey = { "boots", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 3308030688, }, - ["AbyssModBeltUlamanPrefixLifeFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Ulaman's", "Life Flasks gain (0.1-0.2) charges per Second", statOrder = { 6451 }, level = 65, group = "LifeFlaskChargeGeneration", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 1102738251, }, - ["AbyssModBeltUlamanPrefixChanceToNotConsumeFlaskConsumeCharges"] = { type = "Prefix", affix = "Ulaman's", "(10-18)% chance for Flasks you use to not consume Charges", statOrder = { 3782 }, level = 65, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "flask", "unveiled_mod", "ulaman_mod" }, tradeHash = 311641062, }, - ["AbyssModBeltUlamanPrefixLifeRegenRateDuringLifeFlaskEffect"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Life Regeneration rate during Effect of any Life Flask", statOrder = { 7039 }, level = 65, group = "LifeRegenerationRateDuringFlaskEffect", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "life_flask", "unveiled_mod", "ulaman_mod" }, tradeHash = 1261076060, }, - ["AbyssModBeltUlamanSuffixReducedSlowPotencySelfIfCharmedRecently"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", statOrder = { 9337 }, level = 65, group = "SlowEffectIfCharmedRecently", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "ulaman_mod" }, tradeHash = 3839676903, }, - ["AbyssModBeltAmanamuPrefixCharmsGainChargesPerSecond"] = { type = "Prefix", affix = "Amanamu's", "Charms gain (0.1-0.2) charges per Second", statOrder = { 6448 }, level = 65, group = "CharmChargeGeneration", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 185580205, }, - ["AbyssModBeltAmanamuPrefixGainFireThornsPer100MaximumLife"] = { type = "Prefix", affix = "Amanamu's", "2 to 4 Fire Thorns damage per 100 maximum Life", statOrder = { 9648 }, level = 65, group = "ThornsFirePerOneHundredLife", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire" }, tradeHash = 287294012, }, - ["AbyssModBeltAmanamuPrefixChanceToNotConsumeCharmCharges"] = { type = "Prefix", affix = "Amanamu's", "(10-18)% chance for Charms you use to not consume Charges", statOrder = { 5256 }, level = 65, group = "CharmChanceToNotConsumeCharges", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 501873429, }, - ["AbyssModBeltAmanamuSuffixThornsBaseCriticalStrikeChance"] = { type = "Suffix", affix = "of Amanamu", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4616 }, level = 65, group = "ThornsCriticalStrikeChance", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 2715190555, }, - ["AbyssModBeltKurgalPrefixManaFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Kurgal's", "Mana Flasks gain (0.1-0.2) charges per Second", statOrder = { 6452 }, level = 65, group = "ManaFlaskChargeGeneration", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2200293569, }, - ["AbyssModBeltKurgalPrefixGainArmourPercentOfMana"] = { type = "Prefix", affix = "Kurgal's", "Gain (6-12)% of Maximum Mana as Armour", statOrder = { 7481 }, level = 65, group = "GainPercentManaAsArmour", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "armour", "resource", "unveiled_mod", "kurgal_mod", "mana", "defences" }, tradeHash = 514290151, }, - ["AbyssModBeltKurgalPrefixChanceToNotConsumeFlaskConsumeCharges"] = { type = "Prefix", affix = "Kurgal's", "(10-15)% chance for Flasks you use to not consume Charges", statOrder = { 3782 }, level = 65, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "flask", "unveiled_mod", "kurgal_mod" }, tradeHash = 311641062, }, - ["AbyssModBeltKurgalSuffixManaRegenerationRate"] = { type = "Suffix", affix = "of Kurgal", "(30-40)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 65, group = "ManaRegeneration", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 789117908, }, - ["AbyssModBodyShieldUlamanSuffixHitsAgainstYouReducedCriticalDamage"] = { type = "Suffix", affix = "of Ulaman", "Hits have (17-25)% reduced Critical Hit Chance against you", statOrder = { 2747 }, level = 65, group = "ChanceToTakeCriticalStrikeUpdated", weightKey = { "body_armour", "shield", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "critical" }, tradeHash = 4270096386, }, - ["AbyssModBodyShieldAmanamuSuffixLifeRecoup"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% of Damage taken Recouped as Life", statOrder = { 970 }, level = 65, group = "DamageTakenGainedAsLife", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life" }, tradeHash = 1444556985, }, - ["AbyssModBodyShieldAmanamuSuffixReducedCursedEffectSelf"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% reduced effect of Curses on you", statOrder = { 1835 }, level = 65, group = "ReducedCurseEffect", weightKey = { "body_armour", "shield", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHash = 3407849389, }, - ["AbyssModBodyShieldKurgalSuffixManaRecoup"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 977 }, level = 65, group = "PercentDamageGoesToMana", weightKey = { "body_armour", "shield", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHash = 472520716, }, - ["AbyssModBodyShieldKurgalSuffixElementalEnergyShieldRecoup"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Elemental Damage taken Recouped as Energy Shield", statOrder = { 9080 }, level = 65, group = "ElementalDamageTakenGoesToEnergyShield", weightKey = { "str_shield", "dex_shield", "str_dex_shield", "helmet", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2896115339, }, - ["AbyssModBodyShieldKurgalSuffixArmourAppliesToChaosDamage"] = { type = "Suffix", affix = "of Kurgal", "+(23-31)% of Armour also applies to Chaos Damage", statOrder = { 4511 }, level = 65, group = "ArmourPercentAppliesToChaosDamage", weightKey = { "dex_armour", "int_armour", "dex_int_armour", "helmet", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 3972229254, }, - ["AbyssModBodyArmourUlamanSuffixDeflectDamagePrevented"] = { type = "Suffix", affix = "of Ulaman", "Prevent +(3-5)% of Damage from Deflected Hits", statOrder = { 4541 }, level = 65, group = "DeflectDamageTaken", weightKey = { "str_armour", "int_armour", "str_int_armour", "body_armour", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3552135623, }, - ["AbyssModBodyArmourUlamanSuffixCompanionReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(12-18)% increased Reservation Efficiency of Companion Skills", statOrder = { 9178 }, level = 65, group = "CompanionReservationEfficiency", weightKey = { "str_armour", "int_armour", "str_int_armour", "body_armour", "default", "ulaman_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3413635271, }, - ["AbyssModBodyArmourAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(6-12)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4613 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "body_armour", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 53386210, }, - ["AbyssModBodyArmourKurgalSuffixDamageTakenFromManaBeforeLife"] = { type = "Suffix", affix = "of Kurgal", "(10-20)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 65, group = "DamageRemovedFromManaBeforeLife", weightKey = { "str_armour", "dex_armour", "str_dex_armour", "body_armour", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHash = 458438597, }, - ["AbyssModShieldUlamanSuffixMaximumBlockChance"] = { type = "Suffix", affix = "of Ulaman", "+(1-2)% to maximum Block chance", statOrder = { 1659 }, level = 65, group = "MaximumBlockChance", weightKey = { "shield", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "unveiled_mod", "ulaman_mod" }, tradeHash = 480796730, }, - ["AbyssModShieldUlamanSuffixParryDebuffMagnitude"] = { type = "Suffix", affix = "of Ulaman", "(20-30)% increased Parried Debuff Magnitude", statOrder = { 8794 }, level = 65, group = "ParryDebuffMagnitude", weightKey = { "str_shield", "str_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 818877178, }, - ["AbyssModShieldUlamanSuffixParryDebuffDuration"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% increased Parried Debuff Duration", statOrder = { 8808 }, level = 65, group = "ParryDuration", weightKey = { "str_shield", "str_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3401186585, }, - ["AbyssModShieldUlamanSuffixLightningTakenAsPhysAndGlancingWhileActiveBlocking"] = { type = "Suffix", affix = "of Ulaman", "You take (8-15)% of damage from Blocked Hits with a raised Shield", "(30-40)% of Physical Damage taken as Lightning while your Shield is raised", statOrder = { 4795, 8898 }, level = 65, group = "PhysicalTakenAsLightningAndGlancingWhilActiveBlocking", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "ulaman_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "block", "unveiled_mod", "ulaman_mod", "physical", "elemental", "lightning" }, tradeHash = 1524959514, }, - ["AbyssModShieldAmanamuSuffixShieldSkillsFullyBreakArmourOnHeavyStun"] = { type = "Suffix", affix = "of Amanamu", "Hits with Shield Skills which Heavy Stun enemies break fully Break Armour", statOrder = { 6275 }, level = 65, group = "StunningHitsWithShieldSkillsFullyBreakArmour", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 1689748350, }, - ["AbyssModShieldAmanamuSuffixHeavyStunDecaySelf"] = { type = "Suffix", affix = "of Amanamu", "Your Heavy Stun buildup empties (30-40)% faster", statOrder = { 6543 }, level = 65, group = "HeavyStunDecayRate", weightKey = { "dex_shield", "dex_int_shield", "shield", "default", "amanamu_mod", }, weightVal = { 0, 0, 1, 0, 1 }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHash = 886088880, }, - ["AbyssModShieldAmanamuSuffixAllMaximumResistances"] = { type = "Suffix", affix = "of Amanamu", "+1% to all maximum Resistances", statOrder = { 1420 }, level = 65, group = "MaximumResistances", weightKey = { "shield", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "resistance" }, tradeHash = 569299859, }, - ["AbyssModShieldKurgalSuffixFlatManaGainedOnBlock"] = { type = "Suffix", affix = "of Kurgal", "(6-12) Mana gained when you Block", statOrder = { 1446 }, level = 65, group = "GainManaOnBlock", weightKey = { "shield", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 2122183138, }, - ["AbyssModShieldKurgalSuffixEnergyShieldRechargeRateBlockedRecently"] = { type = "Suffix", affix = "of Kurgal", "(40-50)% increased Energy Shield Recharge Rate if you've Blocked Recently", statOrder = { 6020 }, level = 65, group = "EnergyShieldRechargeBlockedRecently", weightKey = { "str_shield", "dex_shield", "str_dex_shield", "shield", "default", "kurgal_mod", }, weightVal = { 0, 0, 0, 1, 0, 1 }, modTags = { "energy_shield", "block", "unveiled_mod", "kurgal_mod", "defences" }, tradeHash = 1079292660, }, - ["AbyssModFocusUlamanPrefixMaximumSpellTotems"] = { type = "Prefix", affix = "Ulaman's", "Spell Skills have +1 to maximum number of Summoned Totems", statOrder = { 9427 }, level = 65, group = "AdditionalSpellTotem", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHash = 2474424958, }, - ["AbyssModFocusUlamanPrefixSpellDamageWhileWieldingMeleeWeapon"] = { type = "Prefix", affix = "Ulaman's", "(61-79)% increased Spell Damage while wielding a Melee Weapon", statOrder = { 9406 }, level = 65, group = "SpellDamageIfWieldingMeleeWeapon", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHash = 4136346606, }, - ["AbyssModFocusUlamanSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% of Spell Mana Cost Converted to Life Cost", statOrder = { 9436 }, level = 65, group = "SpellLifeCostPercent", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life", "caster" }, tradeHash = 3544050945, }, - ["AbyssModFocusUlamanSuffixChanceForTwoAdditionalSpellProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(10-16)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9431 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { "focus", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHash = 2910761524, }, - ["AbyssModFocusAmanamuPrefixCurseMagnitude"] = { type = "Prefix", affix = "Amanamu's", "(8-16)% increased Curse Magnitudes", statOrder = { 2266 }, level = 65, group = "CurseEffectiveness", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "curse" }, tradeHash = 2353576063, }, - ["AbyssModFocusAmanamuPrefixOfferingBuffEffect"] = { type = "Prefix", affix = "Amanamu's", "Offering Skills have (12-20)% increased Buff effect", statOrder = { 3620 }, level = 65, group = "OfferingEffect", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 3191479793, }, - ["AbyssModFocusAmanamuSuffixGlobalMinionSkillLevels"] = { type = "Suffix", affix = "of Amanamu", "+(1-2) to Level of all Minion Skills", statOrder = { 931 }, level = 65, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "minion", "gem" }, tradeHash = 2162097452, }, - ["AbyssModFocusAmanamuSuffixFasterCurseActivation"] = { type = "Suffix", affix = "of Amanamu", "(10-20)% faster Curse Activation", statOrder = { 5530 }, level = 65, group = "CurseDelay", weightKey = { "focus", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "curse" }, tradeHash = 1104825894, }, - ["AbyssModFocusKurgalPrefixInvocationSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (61-79)% increased Damage", statOrder = { 6927 }, level = 65, group = "InvocationSpellDamage", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHash = 1078309513, }, - ["AbyssModFocusKurgalPrefixSpellAreaOfEffect"] = { type = "Prefix", affix = "Kurgal's", "Spell Skills have (10-20)% increased Area of Effect", statOrder = { 9390 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 1967040409, }, - ["AbyssModFocusKurgalSuffixChanceForAdditionalInfusion"] = { type = "Suffix", affix = "of Kurgal", "(15-25)% chance when collecting an Elemental Infusion to gain an", "additional Elemental Infusion of the same type", statOrder = { 4077, 4077.1 }, level = 65, group = "ChanceToGainAdditionalInfusion", weightKey = { "focus", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 3927679277, }, - ["AbyssModQuiverUlamanPrefixIncreasesToProjectileSpeedApplyToDamage"] = { type = "Prefix", affix = "Ulaman's", "Increases and Reductions to Projectile Speed also apply to Damage with Bows", statOrder = { 4312 }, level = 65, group = "IncreasesToProjectileDamageApplyToBowDamage", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 414821772, }, - ["AbyssModQuiverUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (8-12)% chance to fire two additional Projectiles while moving", statOrder = { 8968 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3932115504, }, - ["AbyssModQuiverUlamanSuffixAttackCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Ulaman", "(10-14)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 65, group = "LifeCost", weightKey = { "quiver", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHash = 2480498143, }, - ["AbyssModQuiverAmanamuPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Amanamu's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies within 2m", statOrder = { 8975 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { "quiver", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHash = 2468595624, }, - ["AbyssModQuiverAmanamuSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Amanamu", "Projectiles have (18-26)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5423 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { "quiver", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 2573406169, }, - ["AbyssModQuiverKurgalPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (20-30)% increased Damage with Hits against Enemies further than 6m", statOrder = { 8974 }, level = 65, group = "ProjectileDamageFar", weightKey = { "quiver", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2825946427, }, - ["AbyssModQuiverKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (18-26)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5436 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { "quiver", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2706625504, }, - ["AbyssModRingAmuletUlamanPrefixAttackDamageWhileLowLife"] = { type = "Prefix", affix = "Ulaman's", "(15-25)% increased Attack Damage while on Low Life", statOrder = { 4397 }, level = 65, group = "AttackDamageOnLowLife", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 4246007234, }, - ["AbyssModRingAmuletUlamanSuffixSkillSpeed"] = { type = "Suffix", affix = "of Ulaman", "(3-6)% increased Skill Speed", statOrder = { 828 }, level = 65, group = "IncreasedSkillSpeed", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHash = 970213192, }, - ["AbyssModRingAmuletUlamanSuffixRecoverPercentMaxLifeOnKill"] = { type = "Suffix", affix = "of Ulaman", "Recover (2-3)% of maximum Life on Kill", statOrder = { 1437 }, level = 65, group = "RecoverPercentMaxLifeOnKill", weightKey = { "ring", "amulet", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHash = 2023107756, }, - ["AbyssModRingAmuletAmanamuPrefixRemnantEffect"] = { type = "Prefix", affix = "Amanamu's", "Remnants have (8-15)% increased effect", statOrder = { 9151 }, level = 65, group = "RemnantEffect", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 1999910726, }, - ["AbyssModRingAmuletAmanamuPrefixMinionDamageIfYou'veHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (15-25)% increased Damage if you've Hit Recently", statOrder = { 8484 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage", "minion" }, tradeHash = 2337295272, }, - ["AbyssModRingAmuletAmanamuSuffixSkillEffectDuration"] = { type = "Suffix", affix = "of Amanamu", "(8-12)% increased Skill Effect Duration", statOrder = { 1572 }, level = 65, group = "SkillEffectDuration", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 3377888098, }, - ["AbyssModRingAmuletAmanamuSuffixRemnantCollectionRange"] = { type = "Suffix", affix = "of Amanamu", "Remnants can be collected from (20-30)% further away", statOrder = { 9153 }, level = 65, group = "RemnantPickupRadiusIncrease", weightKey = { "ring", "amulet", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 3482326075, }, - ["AbyssModRingAmuletKurgalPrefixSpellDamageWhileEnergyShieldFull"] = { type = "Prefix", affix = "Kurgal's", "(15-25)% increased Spell Damage while on Full Energy Shield", statOrder = { 2700 }, level = 65, group = "IncreasedSpellDamageOnFullEnergyShield", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "caster_damage", "unveiled_mod", "kurgal_mod", "damage", "caster" }, tradeHash = 3176481473, }, - ["AbyssModRingAmuletKurgalSuffixExposureEffect"] = { type = "Suffix", affix = "of Kurgal", "(10-15)% increased Exposure Effect", statOrder = { 6106 }, level = 65, group = "ElementalExposureEffect", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2074866941, }, - ["AbyssModRingAmuletKurgalSuffixCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 65, group = "GlobalCooldownRecovery", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 1004011302, }, - ["AbyssModRingAmuletKurgalSuffixRecoverPercentMaxManaOnKill"] = { type = "Suffix", affix = "of Kurgal", "Recover (2-3)% of maximum Mana on Kill", statOrder = { 1443 }, level = 65, group = "ManaGainedOnKillPercentage", weightKey = { "ring", "amulet", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 1604736568, }, - ["AbyssModRingUlamanPrefixShockMagnitudeIfConsumedFrenzyCharge"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Magnitude of Shock if you've consumed a Frenzy Charge Recently", statOrder = { 9249 }, level = 65, group = "ShockMagnitudeIfConsumedFrenzyChargeRecently", weightKey = { "ring", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "frenzy_charge", "unveiled_mod", "ulaman_mod", "ailment" }, tradeHash = 324210709, }, - ["AbyssModRingAmanamuPrefixIgniteMagnitudeIfConsumedEnduranceCharge"] = { type = "Prefix", affix = "Amanamu's", "(20-30)% increased Magnitude of Ignite if you've consumed an Endurance Charge Recently", statOrder = { 6816 }, level = 65, group = "IgniteMagnitudeIfConsumedEnduranceChargeRecently", weightKey = { "ring", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "endurance_charge", "unveiled_mod", "amanamu_mod", "ailment" }, tradeHash = 916833363, }, - ["AbyssModRingAmanamuSuffixLifeLeechAmount"] = { type = "Suffix", affix = "of Amanamu", "(12-20)% increased amount of Life Leeched", statOrder = { 1820 }, level = 65, group = "LifeLeechAmount", weightKey = { "ring", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 2112395885, }, - ["AbyssModRingKurgalPrefixFreezeBuildupIfConsumedPowerCharge"] = { type = "Prefix", affix = "Kurgal's", "(20-30)% increased Freeze Buildup if you've consumed an Power Charge Recently", statOrder = { 6747 }, level = 65, group = "FreezeBuildupIfConsumedPowerChargeRecently", weightKey = { "ring", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "power_charge", "unveiled_mod", "kurgal_mod", "ailment" }, tradeHash = 232701452, }, - ["AbyssModRingKurgalSuffixManaLeechAmount"] = { type = "Suffix", affix = "of Kurgal", "(12-20)% increased amount of Mana Leeched", statOrder = { 1822 }, level = 65, group = "ManaLeechAmount", weightKey = { "ring", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 2839066308, }, - ["AbyssModAmuletUlamanPrefixEvasionRatingFromEquippedBody"] = { type = "Prefix", affix = "Ulaman's", "(35-50)% increased Evasion Rating from Equipped Body Armour", statOrder = { 4810 }, level = 65, group = "EvasionRatingFromBodyArmour", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "evasion", "unveiled_mod", "ulaman_mod", "defences" }, tradeHash = 3509362078, }, - ["AbyssModAmuletUlamanPrefixGlobalDeflectionRating"] = { type = "Prefix", affix = "Ulaman's", "(10-20)% increased Deflection Rating", statOrder = { 5721 }, level = 65, group = "GlobalDeflectionRating", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "evasion", "unveiled_mod", "ulaman_mod", "defences" }, tradeHash = 3040571529, }, - ["AbyssModAmuletUlamanPrefixChanceToNotConsumeGlory"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% chance for Skills to retain 40% of Glory on use", statOrder = { 5190 }, level = 65, group = "ChanceToRefund40PercentGlory", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 2749595652, }, - ["AbyssModAmuletUlamanSuffixHeraldReservationEfficiency"] = { type = "Suffix", affix = "of Ulaman", "(10-20)% increased Reservation Efficiency of Herald Skills", statOrder = { 9179 }, level = 65, group = "HeraldReservationEfficiency", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 1697191405, }, - ["AbyssModAmuletUlamanSuffixGlobalLevelOfSkillGems"] = { type = "Suffix", affix = "of Ulaman", "+1 to Level of all Skills", statOrder = { 4166 }, level = 65, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "gem" }, tradeHash = 4283407333, }, - ["AbyssModAmuletAmanamuPrefixArmourFromEquippedBody"] = { type = "Prefix", affix = "Amanamu's", "(35-50)% increased Armour from Equipped Body Armour", statOrder = { 4809 }, level = 65, group = "BodyArmourFromBodyArmour", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "armour", "unveiled_mod", "amanamu_mod", "defences" }, tradeHash = 1015576579, }, - ["AbyssModAmuletAmanamuPrefixGlobalDefences"] = { type = "Prefix", affix = "Amanamu's", "(15-25)% increased Global Defences", statOrder = { 2486 }, level = 65, group = "AllDefences", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "defences" }, tradeHash = 1389153006, }, - ["AbyssModAmuletAmanamuSuffixReducedRequirementEquipmentAndSkill"] = { type = "Suffix", affix = "of Amanamu", "Equipment and Skill Gems have (10-15)% reduced Attribute Requirements", statOrder = { 2224 }, level = 65, group = "GlobalItemAttributeRequirements", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 752930724, }, - ["AbyssModAmuletAmanamuSuffixAuraMagnitude"] = { type = "Suffix", affix = "of Amanamu", "Aura Skills have (8-16)% increased Magnitudes", statOrder = { 2472 }, level = 65, group = "AuraMagnitude", weightKey = { "amulet", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 315791320, }, - ["AbyssModAmuletKurgalPrefixEnergyShieldFromEquippedBody"] = { type = "Prefix", affix = "Kurgal's", "(35-50)% increased Energy Shield from Equipped Body Armour", statOrder = { 8313 }, level = 65, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "energy_shield", "unveiled_mod", "kurgal_mod", "defences" }, tradeHash = 1195319608, }, - ["AbyssModAmuletKurgalPrefixChanceInvocatedSpellsConsumeHalfEnergy"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells have (10-20)% chance to consume half as much Energy", statOrder = { 6924 }, level = 65, group = "InvocatedSpellHalfEnergyChance", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHash = 3711973554, }, - ["AbyssModAmuletKurgalSuffixCooldownRecoveryRateCommandSkills"] = { type = "Suffix", affix = "of Kurgal", "Minions have (12-20)% increased Cooldown Recovery Rate", statOrder = { 8475 }, level = 65, group = "MinionCooldownRecoveryRate", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "minion" }, tradeHash = 1691403182, }, - ["AbyssModAmuletKurgalSuffixDamageFromManaBeforeLife"] = { type = "Suffix", affix = "of Kurgal", "(8-16)% of Damage is taken from Mana before Life", statOrder = { 2362 }, level = 65, group = "DamageRemovedFromManaBeforeLife", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "life", "mana" }, tradeHash = 458438597, }, - ["AbyssModAmuletKurgalSuffixQualityofAllSkills"] = { type = "Suffix", affix = "of Kurgal", "+(3-5)% to Quality of all Skills", statOrder = { 4167 }, level = 65, group = "GlobalSkillGemQuality", weightKey = { "amulet", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "gem" }, tradeHash = 3655769732, }, - ["AbyssModStaffUlamanPrefixSpellDamagePer100MaximumLife"] = { type = "Prefix", affix = "Ulaman's", "(4-5)% increased Spell Damage per 100 Maximum Life", statOrder = { 9411 }, level = 65, group = "SpellDamagePer100Life", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_damage", "resource", "unveiled_mod", "ulaman_mod", "life", "damage", "caster" }, tradeHash = 3491815140, }, - ["AbyssModStaffUlamanPrefixMagnitudeOfDamagingAilments"] = { type = "Prefix", affix = "Ulaman's", "(40-64)% increased Magnitude of Damaging Ailments you inflict", statOrder = { 5670 }, level = 65, group = "DamagingAilmentEffect", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "ailment" }, tradeHash = 1381474422, }, - ["AbyssModStaffUlamanSuffixCastSpeedWhileLowLife"] = { type = "Suffix", affix = "of Ulaman", "(30-40)% increased Cast Speed when on Low Life", statOrder = { 1666 }, level = 65, group = "CastSpeedOnLowLife", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster", "speed" }, tradeHash = 1136768410, }, - ["AbyssModStaffUlamanSuffixChanceForSpellsToFireTwoAdditionalProjectiles"] = { type = "Suffix", affix = "of Ulaman", "(25-35)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9431 }, level = 65, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { "staff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster" }, tradeHash = 2910761524, }, - ["AbyssModStaffAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(148-178)% increased Spell Damage with Spells that cost Life", statOrder = { 9407 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 1373860425, }, - ["AbyssModStaffAmanamuPrefixFlatSpirit"] = { type = "Prefix", affix = "Amanamu's", "+(35-50) to Spirit", statOrder = { 874 }, level = 65, group = "BaseSpirit", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 3981240776, }, - ["AbyssModStaffAmanamuSuffixSpellManaCostConvertedToLifeCost"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% of Spell Mana Cost Converted to Life Cost", statOrder = { 9436 }, level = 65, group = "SpellLifeCostPercent", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHash = 3544050945, }, - ["AbyssModStaffAmanamuSuffixArchonDuration"] = { type = "Suffix", affix = "of Amanamu", "(25-35)% increased Archon Buff duration", statOrder = { 4222 }, level = 65, group = "ArchonDuration", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 2158617060, }, - ["AbyssModStaffAmanamuSuffixBlockChance"] = { type = "Suffix", affix = "of Amanamu", "+(12-16)% to Block chance", statOrder = { 2130 }, level = 65, group = "AdditionalBlock", weightKey = { "staff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "block", "unveiled_mod", "amanamu_mod" }, tradeHash = 1702195217, }, - ["AbyssModStaffKurgalPrefixSpellDamagePer100MaximumMana"] = { type = "Prefix", affix = "Kurgal's", "(4-5)% increased Spell Damage per 100 maximum Mana", statOrder = { 9413 }, level = 65, group = "SpellDamagePer100Mana", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "caster_damage", "resource", "unveiled_mod", "kurgal_mod", "mana", "damage", "caster" }, tradeHash = 1850249186, }, - ["AbyssModStaffKurgalPrefixMaximumInfusions"] = { type = "Prefix", affix = "Kurgal's", "+(1-2) to maximum number of Elemental Infusions", statOrder = { 8324 }, level = 65, group = "MaximumElementalInfusion", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental" }, tradeHash = 4097212302, }, - ["AbyssModStaffKurgalSuffixArchonCooldownRecovery"] = { type = "Suffix", affix = "of Kurgal", "Archon recovery period expires (25-35)% faster", statOrder = { 4221 }, level = 65, group = "ArchonDelayRecovery", weightKey = { "staff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2586152168, }, - ["AbyssModStaffKurgalSuffixCastSpeedWhileFullMana"] = { type = "Suffix", affix = "of Kurgal", "(26-36)% increased Cast Speed while on Full Mana", statOrder = { 4976 }, level = 65, group = "CastSpeedOnFullMana", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana", "caster", "speed" }, tradeHash = 1914226331, }, - ["AbyssModWandUlamanPrefixDamageAsExtraPhysical"] = { type = "Prefix", affix = "Ulaman's", "Gain (21-25)% of Damage as Extra Physical Damage", statOrder = { 1601 }, level = 65, group = "DamageasExtraPhysical", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "ulaman_mod", "damage", "physical" }, tradeHash = 4019237939, }, - ["AbyssModWandUlamanPrefixBleedMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(27-38)% increased Magnitude of Bleeding you inflict", statOrder = { 4662 }, level = 65, group = "BleedDotMultiplier", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "ulaman_mod", "damage", "physical", "attack", "ailment" }, tradeHash = 3166958180, }, - ["AbyssModWandUlamanSuffixArmourBreakAmount"] = { type = "Suffix", affix = "of Ulaman", "Break (31-39)% increased Armour", statOrder = { 4283 }, level = 65, group = "ArmourBreak", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 1776411443, }, - ["AbyssModWandUlamanSuffixBreakArmourSpellCrits"] = { type = "Suffix", affix = "of Ulaman", "Break Armour on Critical Hit with Spells equal to (11-18)% of Physical Damage dealt", statOrder = { 4287 }, level = 65, group = "ArmourBreakPercentOnSpellCrit", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "caster", "critical" }, tradeHash = 1286199571, }, - ["AbyssModWandUlamanSuffixHinderedEnemiesTakeIncreasedPhysical"] = { type = "Suffix", affix = "of Ulaman", "Enemies Hindered by you take (4-7)% increased Physical Damage", statOrder = { 6741 }, level = 65, group = "HinderedEnemiesTakeIncreasedPhysicalDamage", weightKey = { "wand", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 359357545, }, - ["AbyssModWandAmanamuPrefixIncreasedElementalDamage"] = { type = "Prefix", affix = "Amanamu's", "(74-89)% increased Elemental Damage", statOrder = { 1651 }, level = 65, group = "CasterElementalDamagePercent", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "amanamu_mod", "damage", "elemental" }, tradeHash = 3141070085, }, - ["AbyssModWandAmanamuPrefixHybridSpellAndMinionDamage"] = { type = "Prefix", affix = "Amanamu's", "(55-64)% increased Spell Damage", "Minions deal (55-64)% increased Damage", statOrder = { 853, 1646 }, level = 65, group = "MinionAndSpellDamageHybrid", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "caster", "minion" }, tradeHash = 835637773, }, - ["AbyssModWandAmanamuPrefixSpellDamageWithSpellsThatCostLife"] = { type = "Prefix", affix = "Amanamu's", "(74-89)% increased Spell Damage with Spells that cost Life", statOrder = { 9407 }, level = 65, group = "SpellDamageForSpellsCostingLife", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 1373860425, }, - ["AbyssModWandAmanamuSuffixSpellAreaOfEffect"] = { type = "Suffix", affix = "of Amanamu", "Spell Skills have (8-16)% increased Area of Effect", statOrder = { 9390 }, level = 65, group = "SpellAreaOfEffectPercent", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 1967040409, }, - ["AbyssModWandAmanamuSuffixSpellManaCostConvertedToLifeSkillEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Cost Efficiency", "(15-25)% of Spell Mana Cost Converted to Life Cost", statOrder = { 4604, 9436 }, level = 65, group = "SpellLifeCostPercentAndSkillCostEfficiency", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "amanamu_mod", "life", "caster" }, tradeHash = 1817305991, }, - ["AbyssModWandAmanamuSuffixHinderedEnemiesTakeIncreasedElemental"] = { type = "Suffix", affix = "of Amanamu", "Enemies Hindered by you take (4-7)% increased Elemental Damage", statOrder = { 6740 }, level = 65, group = "HinderedEnemiesTakeIncreasedElementalDamage", weightKey = { "wand", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 212649958, }, - ["AbyssModWandKurgalPrefixInvocatedSpellDamage"] = { type = "Prefix", affix = "Kurgal's", "Invocated Spells deal (75-89)% increased Damage", statOrder = { 6927 }, level = 65, group = "InvocationSpellDamage", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "caster" }, tradeHash = 1078309513, }, - ["AbyssModWandKurgalSuffixCastSpeedPerDifferentSpellCastRecently"] = { type = "Suffix", affix = "of Kurgal", "(3-5)% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", statOrder = { 4965 }, level = 65, group = "CastSpeedPerDifferentSpellCastRecently", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 1518586897, }, - ["AbyssModWandKurgalSuffixHinderedEnemiesTakeIncreasedChaos"] = { type = "Suffix", affix = "of Kurgal", "Enemies Hindered by you take (4-7)% increased Chaos Damage", statOrder = { 6739 }, level = 65, group = "HinderedEnemiesTakeIncreasedChaosDamage", weightKey = { "wand", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 1746561819, }, - ["AbyssModGenWeaponUlamanPrefixLightningPenetration"] = { type = "Prefix", affix = "Ulaman's", "Attacks with this Weapon Penetrate (15-25)% Lightning Resistance", statOrder = { 3333 }, level = 65, group = "LocalLightningPenetration", weightKey = { "weapon", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "ulaman_mod", "damage", "elemental", "lightning", "attack" }, tradeHash = 2387539034, }, - ["AbyssModGenWeaponUlamanSuffixSkillCostConvertedToLife"] = { type = "Suffix", affix = "of Ulaman", "(15-20)% of Skill Mana Costs Converted to Life Costs", statOrder = { 4605 }, level = 65, group = "LifeCost", weightKey = { "weapon", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHash = 2480498143, }, - ["AbyssModGenWeaponAmanamuPrefixFirePenetration"] = { type = "Prefix", affix = "Amanamu's", "Attacks with this Weapon Penetrate (15-25)% Fire Resistance", statOrder = { 3331 }, level = 65, group = "LocalFirePenetration", weightKey = { "weapon", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "amanamu_mod", "damage", "elemental", "fire", "attack" }, tradeHash = 3398283493, }, - ["AbyssModGenWeaponAmanamuSuffixSpiritReservationEfficiency"] = { type = "Suffix", affix = "of Amanamu", "(5-10)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4613 }, level = 65, group = "SpiritReservationEfficiency", weightKey = { "weapon", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 53386210, }, - ["AbyssModGenWeaponKurgalPrefixColdPenetration"] = { type = "Prefix", affix = "Kurgal's", "Attacks with this Weapon Penetrate (15-25)% Cold Resistance", statOrder = { 3332 }, level = 65, group = "LocalColdPenetration", weightKey = { "weapon", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "kurgal_mod", "damage", "elemental", "cold", "attack" }, tradeHash = 1740229525, }, - ["AbyssModGenWeaponKurgalSuffixAttackCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4519 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { "weapon", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHash = 3350279336, }, - ["AbyssModAllMacesUlamanPrefixMaximumMeleeAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "Melee Attack Skills have +1 to maximum number of Summoned Totems", statOrder = { 8361 }, level = 65, group = "AdditionalMeleeTotem", weightKey = { "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 2013356568, }, - ["AbyssModAllMacesKurgalPrefixIncreasedPhysicalDamageReducedAttackSpeed"] = { type = "Prefix", affix = "Kurgal's", "(110-154)% increased Physical Damage", "15% reduced Attack Speed", statOrder = { 821, 919 }, level = 65, group = "LocalIncreasedPhysicalDamageAttackSpeedHybrid", weightKey = { "mace", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "physical", "attack", "speed" }, tradeHash = 235192658, }, - ["AbyssModAllMacesKurgalSuffixCostEfficiencyOfAttackSkills"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4519 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { "mace", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHash = 3350279336, }, - ["AbyssMod1HMaceUlamanPrefixDamageWhileActiveTotem"] = { type = "Prefix", affix = "Ulaman's", "(41-59)% increased Damage while you have a Totem", statOrder = { 2818 }, level = 65, group = "IncreasedDamageWhileTotemActive", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage" }, tradeHash = 2543331226, }, - ["AbyssMod1HMaceUlamanSuffixTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% increased Totem Placement speed", statOrder = { 2250 }, level = 65, group = "SummonTotemCastSpeed", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHash = 3374165039, }, - ["AbyssMod1HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(41-59)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5553 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHash = 2301718443, }, - ["AbyssMod1HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { type = "Suffix", affix = "of Amanamu", "Break Armour equal to (2-4)% of Physical Damage dealt", statOrder = { 4290 }, level = 65, group = "ArmourPenetration", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "amanamu_mod", "damage", "physical" }, tradeHash = 1103616075, }, - ["AbyssMod1HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Skills which create Fissures have a (15-25)% chance to create an additional Fissure", statOrder = { 9296 }, level = 65, group = "AdditionalFissureChance", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHash = 2544540062, }, - ["AbyssMod1HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(10-16)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 9975 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHash = 3950000557, }, - ["AbyssMod1HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (41-59)% increased Damage", statOrder = { 5912 }, level = 65, group = "ExertedAttackDamage", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHash = 1569101201, }, - ["AbyssMod1HMaceKurgalSuffixWarcryCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(17-25)% increased Warcry Cooldown Recovery Rate", statOrder = { 2929 }, level = 65, group = "WarcryCooldownSpeed", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 4159248054, }, - ["AbyssMod2HMaceUlamanPrefixDamageWhileActiveTotem"] = { type = "Prefix", affix = "Ulaman's", "(86-99)% increased Damage while you have a Totem", statOrder = { 2818 }, level = 65, group = "IncreasedDamageWhileTotemActive", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage" }, tradeHash = 2543331226, }, - ["AbyssMod2HMaceUlamanSuffixTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ulaman", "(25-31)% increased Totem Placement speed", statOrder = { 2250 }, level = 65, group = "SummonTotemCastSpeed", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHash = 3374165039, }, - ["AbyssMod2HMaceAmanamuPrefixDamageAgainstFullyArmourBrokenEnemies"] = { type = "Prefix", affix = "Amanamu's", "(86-99)% increased Damage against Enemies with Fully Broken Armour", statOrder = { 5553 }, level = 65, group = "DamagevsArmourBrokenEnemies", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHash = 2301718443, }, - ["AbyssMod2HMaceAmanamuSuffixBreakPercentArmourPhysicalDamage"] = { type = "Suffix", affix = "of Amanamu", "Break Armour equal to (4-7)% of Physical Damage dealt", statOrder = { 4290 }, level = 65, group = "ArmourPenetration", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "physical_damage", "unveiled_mod", "amanamu_mod", "damage", "physical" }, tradeHash = 1103616075, }, - ["AbyssMod2HMaceAmanamuSuffixAdditionalFissureChance"] = { type = "Suffix", affix = "of Amanamu", "Skills which create Fissures have a (25-31)% chance to create an additional Fissure", statOrder = { 9296 }, level = 65, group = "AdditionalFissureChance", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHash = 2544540062, }, - ["AbyssMod2HMaceAmanamuSuffixChanceSlamSkillsCauseAftershocks"] = { type = "Suffix", affix = "of Amanamu", "(16-23)% chance for Mace Slam Skills you use yourself to cause an additional Aftershock", statOrder = { 9975 }, level = 65, group = "MaceSkillSlamAftershockChance", weightKey = { "one_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHash = 3950000557, }, - ["AbyssMod2HMaceKurgalPrefixEmpoweredAttackDamage"] = { type = "Prefix", affix = "Kurgal's", "Empowered Attacks deal (86-99)% increased Damage", statOrder = { 5912 }, level = 65, group = "ExertedAttackDamage", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage", "attack" }, tradeHash = 1569101201, }, - ["AbyssMod2HMaceKurgalSuffixWarcryCooldownRecoveryRate"] = { type = "Suffix", affix = "of Kurgal", "(25-31)% increased Warcry Cooldown Recovery Rate", statOrder = { 2929 }, level = 65, group = "WarcryCooldownSpeed", weightKey = { "one_hand_weapon", "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 0, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 4159248054, }, - ["AbyssModQuarterstaffUlamanPrefixLightningDamageShockMagnitude"] = { type = "Prefix", affix = "Ulaman's", "(86-99)% increased Lightning Damage", "(14-23)% increased Magnitude of Shock you inflict", statOrder = { 857, 9248 }, level = 65, group = "LightningDamageShockMagnitudeHybrid", weightKey = { "warstaff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "elemental", "lightning", "ailment" }, tradeHash = 4224952984, }, - ["AbyssModQuarterstaffUlamanSuffixRecoverLifeWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Ulaman", "Recover (6-12)% of Maximum Life when you expend at least 10 Combo", statOrder = { 9116 }, level = 65, group = "SkillUseRecoverPercentLifeOnExpendingTenCombo", weightKey = { "warstaff", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHash = 4033618138, }, - ["AbyssModQuarterstaffAmanamuPrefixFireDamageIgniteMagnitude"] = { type = "Prefix", affix = "Amanamu's", "(86-99)% increased Fire Damage", "(14-23)% increased Ignite Magnitude", statOrder = { 855, 1009 }, level = 65, group = "FireDamageIgniteMagnitudeHybrid", weightKey = { "warstaff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire", "ailment" }, tradeHash = 3899332927, }, - ["AbyssModQuarterstaffAmanamuSuffixChanceToGenerateAdditionalCombo"] = { type = "Suffix", affix = "of Amanamu", "(25-40)% chance to build an additional Combo on Hit", statOrder = { 4068 }, level = 65, group = "ChanceToGenerateAdditionalCombo", weightKey = { "warstaff", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 4258524206, }, - ["AbyssModQuarterstaffKurgalPrefixColdDamageFreezeBuildup"] = { type = "Prefix", affix = "Kurgal's", "(86-99)% increased Cold Damage", "(14-23)% increased Freeze Buildup", statOrder = { 856, 990 }, level = 65, group = "ColdDamageFreezeBuildupHybrid", weightKey = { "warstaff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "elemental", "cold", "ailment" }, tradeHash = 849707263, }, - ["AbyssModQuarterstaffKurgalSuffixRecoverManaWhenExpendingTenCombo"] = { type = "Suffix", affix = "of Kurgal", "Recover (4-6)% of Maximum Mana when you expend at least 10 Combo", statOrder = { 9119 }, level = 65, group = "SkillUseRecoverPercentManaOnExpendingTenCombo", weightKey = { "warstaff", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "kurgal_mod", "mana" }, tradeHash = 2991045011, }, - ["AbyssModCrossbowUlamanPrefixMaximumRangedAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "+1 to maximum number of Summoned Ballista Totems", statOrder = { 4058 }, level = 65, group = "AdditionalBallistaTotem", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 1823942939, }, - ["AbyssModCrossbowUlamanSuffixAttacksChainAdditionalTime"] = { type = "Suffix", affix = "of Ulaman", "Attacks Chain an additional time", statOrder = { 3684 }, level = 65, group = "AttacksChainAdditionalTimes", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3868118796, }, - ["AbyssModCrossbowUlamanSuffixProjectileCriticalHitDamageCloseRange"] = { type = "Suffix", affix = "of Ulaman", "Projectiles have (27-38)% increased Critical Damage Bonus against Enemies within 2m", statOrder = { 5423 }, level = 65, group = "ProjectileCriticalDamageCloseRange", weightKey = { "crossbow", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 2573406169, }, - ["AbyssModCrossbowAmanamuPrefixGrenadeAdditionalCooldown"] = { type = "Prefix", affix = "Amanamu's", "Grenade Skills have +1 Cooldown Use", statOrder = { 6497 }, level = 65, group = "GrenadeCooldownUse", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 2250681686, }, - ["AbyssModCrossbowAmanamuPrefixGrenadeDamageAndDuration"] = { type = "Prefix", affix = "Amanamu's", "(101-121)% increased Grenade Damage", "(20-30)% increased Grenade Duration", statOrder = { 6499, 6500 }, level = 65, group = "GrenadeDamageLongFuse", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage" }, tradeHash = 1566806250, }, - ["AbyssModCrossbowAmanamuSuffixAdditionalGrenadeTriggerChance"] = { type = "Suffix", affix = "of Amanamu", "Grenades have (15-25)% chance to activate a second time", statOrder = { 6495 }, level = 65, group = "GrenadeAdditionalTriggerChance", weightKey = { "crossbow", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 538981065, }, - ["AbyssModCrossbowKurgalPrefixProjectileDamageCloseRange"] = { type = "Prefix", affix = "Kurgal's", "Projectiles deal (85-109)% increased Damage with Hits against Enemies within 2m", statOrder = { 8975 }, level = 65, group = "ProjectileDamageCloseRange", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "damage" }, tradeHash = 2468595624, }, - ["AbyssModCrossbowKurgalSuffixReloadSpeed"] = { type = "Suffix", affix = "of Kurgal", "(17-25)% increased Reload Speed", statOrder = { 920 }, level = 65, group = "LocalReloadSpeed", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack", "speed" }, tradeHash = 710476746, }, - ["AbyssModCrossbowKurgalSuffixChanceForInstantReload"] = { type = "Suffix", affix = "of Kurgal", "(15-20)% chance when you Reload a Crossbow to be immediate", statOrder = { 2 }, level = 65, group = "ChanceForInstantReload", weightKey = { "crossbow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2760344900, }, - ["AbyssModBowSpearUlamanPrefixProjectileDamageFar"] = { type = "Prefix", affix = "Ulaman's", "Projectiles deal (60-79)% increased Damage with Hits against Enemies further than 6m", statOrder = { 8974 }, level = 65, group = "ProjectileDamageFar", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 2825946427, }, - ["AbyssModBowSpearUlamanSuffixChanceForExtraProjectilesWhileMoving"] = { type = "Suffix", affix = "of Ulaman", "Projectile Attacks have a (10-18)% chance to fire two additional Projectiles while moving", statOrder = { 8968 }, level = 65, group = "ChanceAttackFiresAdditionalProjectilesWhileMoving", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3932115504, }, - ["AbyssModBowSpearUlamanSuffixAttackSpeedLocalAndWithCompanion"] = { type = "Suffix", affix = "of Ulaman", "(8-13)% increased Attack Speed", "(8-13)% increased Attack Speed while your Companion is in your Presence", statOrder = { 919, 4422 }, level = 65, group = "LocalAttackSpeedAndAttackSpeedWithCompanion", weightKey = { "bow", "spear", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHash = 3821569985, }, - ["AbyssModBowSpearAmanamuPrefixCompanionDamageAndDamageWithCompanion"] = { type = "Prefix", affix = "Amanamu's", "Companions deal (40-59)% increased Damage", "(40-59)% increased Damage while your Companion is in your Presence", statOrder = { 5339, 5566 }, level = 65, group = "CompanionDamageAndDamageWithCompanion", weightKey = { "bow", "spear", "talisman", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 1131423929, }, - ["AbyssModBowSpearAmanamuPrefixAttackSkillAreaOfEffect"] = { type = "Prefix", affix = "Amanamu's", "(12-23)% increased Area of Effect for Attacks", statOrder = { 4363 }, level = 65, group = "IncreasedAttackAreaOfEffect", weightKey = { "bow", "spear", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "attack" }, tradeHash = 1840985759, }, - ["AbyssModBowSpearAmanamuSuffixCompanionAndLocalAttackSpeed"] = { type = "Suffix", affix = "of Amanamu", "(12-18)% increased Attack Speed", "Companions have (12-18)% increased Attack Speed", statOrder = { 919, 5335 }, level = 65, group = "CompanionAndLocalAttackSpeed", weightKey = { "bow", "spear", "talisman", "default", "amanamu_mod", }, weightVal = { 1, 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 244271083, }, - ["AbyssModBowSpearAmanamuSuffixChancePierceAdditionalTime"] = { type = "Suffix", affix = "of Amanamu", "(40-60)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 65, group = "ChanceToPierce", weightKey = { "bow", "spear", "default", "amanamu_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHash = 2321178454, }, - ["AbyssModBowSpearKurgalPrefixChanceChainFromTerrain"] = { type = "Prefix", affix = "Kurgal's", "Projectiles have (25-35)% chance to Chain an additional time from terrain", statOrder = { 8970 }, level = 65, group = "ChainFromTerrain", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 4081947835, }, - ["AbyssModBowSpearKurgalSuffixProjectileCriticalHitChanceFar"] = { type = "Suffix", affix = "of Kurgal", "Projectiles have (25-34)% increased Critical Hit Chance against Enemies further than 6m", statOrder = { 5436 }, level = 65, group = "ProjectileCriticalHitChanceFar", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2706625504, }, - ["AbyssModBowSpearKurgalSuffixImmobilisationBuildup"] = { type = "Suffix", affix = "of Kurgal", "(25-34)% increased Immobilisation buildup", statOrder = { 6748 }, level = 65, group = "ImmobilisationBuildup", weightKey = { "bow", "spear", "default", "kurgal_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 330530785, }, - ["AbyssModBowKurgalPrefixIncreasedQuiverStats"] = { type = "Prefix", affix = "Kurgal's", "(30-40)% increased bonuses gained from Equipped Quiver", statOrder = { 9028 }, level = 65, group = "QuiverModifierEffect", weightKey = { "bow", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 1200678966, }, - ["AbyssModSpearKurgalPrefixMeleeDamageIfProjectileAttackHitEightSeconds"] = { type = "Prefix", affix = "Kurgal's", "(60-79)% increased Melee Damage if you've dealt a Projectile Attack Hit in the past eight seconds", statOrder = { 8364 }, level = 65, group = "MeleeDamageIfProjectileAttackHitRecently", weightKey = { "spear", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 3028809864, }, - ["AbyssModTalismanUlamanSuffixGainXRageOnMeleeHit"] = { type = "Suffix", affix = "of Ulaman", "Gain (3-6) Rage on Melee Hit", statOrder = { 6431 }, level = 65, group = "RageOnHit", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHash = 2709367754, }, - ["AbyssModTalismanAmanamuPrefixMinionsDealIncreasedDamageIfYouHitRecently"] = { type = "Prefix", affix = "Amanamu's", "Minions deal (60-79)% increased Damage if you've Hit Recently", statOrder = { 8484 }, level = 65, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { "talisman", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "damage", "minion" }, tradeHash = 2337295272, }, - ["AbyssModTalismanKurgalPrefixWarcriesEmpowerXAdditionalAttacks"] = { type = "Prefix", affix = "Kurgal's", "Warcries Empower an additional Attack", statOrder = { 9887 }, level = 65, group = "WarcriesExertAnAdditionalAttack", weightKey = { "talisman", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHash = 1434716233, }, - ["AbyssModTalismanKurgalSuffixCriticalHitChanceAgainstMarkedTargets"] = { type = "Suffix", affix = "of Kurgal", "(39-51)% increased Critical Hit Chance against Marked Enemies", statOrder = { 5439 }, level = 65, group = "CriticalHitChanceAgainstMarkedEnemies", weightKey = { "talisman", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "critical" }, tradeHash = 1045789614, }, - ["UniqueWatcherVeiledSpiritReservationEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Spirit Reservation Efficiency of Skills", statOrder = { 4613 }, level = 1, group = "UniqueSpiritReservationEfficiency", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix" }, tradeHash = 53386210, }, - ["UniqueWatcherVeiledManaCostEfficiency"] = { type = "Suffix", affix = "", "(12-16)% increased Mana Cost Efficiency", statOrder = { 4582 }, level = 1, group = "UniqueManaCostEfficiency", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "mana" }, tradeHash = 4101445926, }, - ["UniqueWatcherVeiledCurseAreaOfEffect"] = { type = "Suffix", affix = "", "(11-21)% increased Area of Effect of Curses", statOrder = { 1875 }, level = 1, group = "UniqueCurseAreaOfEffect", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "curse" }, tradeHash = 153777645, }, - ["UniqueWatcherVeiledEffectOfCurses"] = { type = "Suffix", affix = "", "(11-18)% increased Curse Magnitudes", statOrder = { 2266 }, level = 1, group = "UniqueEffectOfCurses", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "curse" }, tradeHash = 2353576063, }, - ["UniqueWatcherVeiledMinionLife"] = { type = "Suffix", affix = "", "Minions have (41-50)% increased maximum Life", statOrder = { 962 }, level = 1, group = "UniqueMinionLife", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "life", "minion" }, tradeHash = 770672621, }, - ["UniqueWatcherVeiledPresenceAreaOfEffect"] = { type = "Suffix", affix = "", "(46-55)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "UniquePresenceAreaOfEffect", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "aura" }, tradeHash = 101878827, }, - ["UniqueWatcherVeiledManaRegeneration"] = { type = "Suffix", affix = "", "(68-91)% increased Mana Regeneration Rate", statOrder = { 976 }, level = 1, group = "UniqueManaRegeneration", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "mana" }, tradeHash = 789117908, }, - ["UniqueWatcherVeiledAlliesInPresenceCastSpeed"] = { type = "Suffix", affix = "", "Allies in your Presence have (8-15)% increased Cast Speed", statOrder = { 894 }, level = 1, group = "UniqueAlliesInPresenceCastSpeed", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "caster", "aura" }, tradeHash = 289128254, }, - ["UniqueWatcherVeiledAlliesInPresenceAllElementalResistance"] = { type = "Suffix", affix = "", "Allies in your Presence have +(11-18)% to all Elemental Resistances", statOrder = { 895 }, level = 1, group = "UniqueAlliesInPresenceAllElementalResistance", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "elemental", "resistance", "aura" }, tradeHash = 3850614073, }, - ["UniqueWatcherVeiledAlliesInPresenceFlatLifeRegen"] = { type = "Suffix", affix = "", "Allies in your Presence Regenerate (29.1-33) Life per second", statOrder = { 896 }, level = 1, group = "UniqueAlliesInPresenceFlatLifeRegen", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "unveiled_mod", "watcher_abyss_suffix", "life", "aura" }, tradeHash = 4010677958, }, - ["UniqueWatcherVeiledAlliesInPresenceCriticalHitChance"] = { type = "Suffix", affix = "", "Allies in your Presence have (26-41)% increased Critical Hit Chance", statOrder = { 891 }, level = 1, group = "UniqueAlliesInPresenceCriticalHitChance", weightKey = { "watcher_abyss_suffix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "watcher_abyss_suffix", "critical", "aura" }, tradeHash = 1250712710, }, - ["UniqueKulemakUnholyMightAndMagnitude_1"] = { type = "Prefix", affix = "", "(28-56)% increased Magnitude of Unholy Might buffs you grant", "You have Unholy Might", statOrder = { 4620, 6533 }, level = 1, group = "UniqueUnholyMightAndMagnitude", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHash = 3662638480, }, - ["UniqueKulemakChaosDamageAndExplosion_1"] = { type = "Prefix", affix = "", "(100-160)% increased Chaos Damage", "Enemies you kill have a (5-10)% chance to explode, dealing a quarter of their maximum Life as Chaos damage", statOrder = { 858, 2906 }, level = 1, group = "UniqueChaosDamageAndExplosion", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "chaos" }, tradeHash = 3097696978, }, - ["UniqueKulemakSpellPhysicalDamageBleedChance_1"] = { type = "Prefix", affix = "", "(100-160)% increased Spell Physical Damage", "(20-30)% chance to inflict Bleeding on Hit", statOrder = { 860, 4532 }, level = 1, group = "UniqueSpellPhysicalAndBleedChance", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "physical" }, tradeHash = 2866075484, }, - ["UniqueKulemakChaosDamageCurseLowersChaosRes_1"] = { type = "Prefix", affix = "", "(100-160)% increased Chaos Damage", "Enemies you Curse have -(8-5)% to Chaos Resistance", statOrder = { 858, 3617 }, level = 1, group = "UniqueChaosDamageAndCurseLowersChaosRes", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "chaos_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "chaos" }, tradeHash = 2171087599, }, - ["UniqueKulemakSpiritAndSpiritReservationEfficiency_1"] = { type = "Prefix", affix = "", "+(40-60) to Spirit", "(6-10)% increased Spirit Reservation Efficiency of Skills", statOrder = { 873, 4613 }, level = 1, group = "UniqueSpiritAndSpiritReservationEfficiency", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "unveiled_mod", "kulemak_abyss_special_prefix" }, tradeHash = 3748685373, }, - ["UniqueKulemakElementalDamageEleAilmentDuration_1"] = { type = "Prefix", affix = "", "(10-20)% increased Duration of Elemental Ailments on Enemies", "(100-160)% increased Elemental Damage", statOrder = { 1544, 1651 }, level = 1, group = "UniqueElementalDamageAndDurationOfEleAilments", weightKey = { "kulemak_abyss_special_prefix", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "unveiled_mod", "kulemak_abyss_special_prefix", "damage", "elemental" }, tradeHash = 3369599297, }, - ["AbyssModBootsUlamanSuffixLifeRegenMoving"] = { type = "Suffix", affix = "of Ulaman", "(40-50)% increased Life Regeneration Rate while moving", statOrder = { 7061 }, level = 65, group = "LifeRegenerationPlusPercentWhileMoving", weightKey = { "boots", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "resource", "unveiled_mod", "ulaman_mod", "life" }, tradeHash = 2116424886, }, } \ No newline at end of file diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index 6c18e6b96c..61f8e95033 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -1,6 +1,12 @@ -- This file is automatically generated, do not edit! -- Stat data (c) Grinding Gear Games +-- This file contains categories of stats, mapped from trade hash to details +-- relevant for generating search weights Note that the trade site requires a +-- prefix of e.g. explicit.stat_{hash}. See +-- https://www.pathofexile.com/api/trade2/data/stats for a list of all trade +-- site stats. + return { ["AllocatesXEnchant"] = { ["10029"] = { @@ -9664,14 +9670,6 @@ return { }, }, ["1007380041"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -9728,14 +9726,6 @@ return { }, }, ["1022759479"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -9794,14 +9784,6 @@ return { }, }, ["1039268420"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -9833,7 +9815,7 @@ return { }, ["Focus"] = { ["max"] = 164, - ["min"] = 10, + ["min"] = 6, }, ["Gloves"] = { ["max"] = 124, @@ -9841,7 +9823,7 @@ return { }, ["Helmet"] = { ["max"] = 149, - ["min"] = 10, + ["min"] = 6, }, ["Ring"] = { ["max"] = 179, @@ -9888,23 +9870,23 @@ return { ["1062208444"] = { ["Boots"] = { ["max"] = 100, - ["min"] = 15, + ["min"] = 6, }, ["Chest"] = { ["max"] = 110, - ["min"] = 15, + ["min"] = 6, }, ["Gloves"] = { ["max"] = 100, - ["min"] = 15, + ["min"] = 6, }, ["Helmet"] = { ["max"] = 100, - ["min"] = 15, + ["min"] = 6, }, ["Shield"] = { ["max"] = 110, - ["min"] = 15, + ["min"] = 6, }, ["specialCaseData"] = { }, @@ -9932,14 +9914,6 @@ return { }, }, ["1087108135"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -9949,14 +9923,6 @@ return { }, }, ["1087531620"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -9983,14 +9949,6 @@ return { }, }, ["111835965"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10039,14 +9997,6 @@ return { }, }, ["1137305356"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10056,14 +10006,6 @@ return { }, }, ["1145481685"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10073,14 +10015,6 @@ return { }, }, ["1160637284"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10107,14 +10041,6 @@ return { }, }, ["1166140625"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10159,14 +10085,6 @@ return { ["usePositiveSign"] = true, }, ["1185341308"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10297,23 +10215,23 @@ return { ["124859000"] = { ["Boots"] = { ["max"] = 100, - ["min"] = 15, + ["min"] = 6, }, ["Chest"] = { ["max"] = 110, - ["min"] = 15, + ["min"] = 6, }, ["Gloves"] = { ["max"] = 100, - ["min"] = 15, + ["min"] = 6, }, ["Helmet"] = { ["max"] = 100, - ["min"] = 15, + ["min"] = 6, }, ["Shield"] = { ["max"] = 110, - ["min"] = 15, + ["min"] = 6, }, ["specialCaseData"] = { }, @@ -10340,32 +10258,98 @@ return { ["type"] = "explicit", }, }, - ["1266413530"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, + ["1261982764"] = { + ["LifeFlask"] = { + ["max"] = 100, + ["min"] = 61, }, ["specialCaseData"] = { }, ["tradeMod"] = { - ["id"] = "explicit.stat_1266413530", - ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", + ["id"] = "explicit.stat_1261982764", + ["text"] = "#% increased Life Recovered", ["type"] = "explicit", }, }, - ["127081978"] = { - ["AnyJewel"] = { - ["max"] = 10, + ["1263695895"] = { + ["1HMace"] = { + ["max"] = 15, ["min"] = 5, }, - ["RadiusJewel"] = { - ["max"] = 10, + ["1HWeapon"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["2HMace"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["2HWeapon"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Bow"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Crossbow"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Flail"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Helmet"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Quarterstaff"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Ring"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Sceptre"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Spear"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Staff"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Talisman"] = { + ["max"] = 15, + ["min"] = 5, + }, + ["Wand"] = { + ["max"] = 15, ["min"] = 5, }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1263695895", + ["text"] = "#% increased Light Radius", + ["type"] = "explicit", + }, + }, + ["1266413530"] = { + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1266413530", + ["text"] = "Notable Passive Skills in Radius also grant #% increased Attack Speed with Spears", + ["type"] = "explicit", + }, + }, + ["127081978"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10375,14 +10359,6 @@ return { }, }, ["1285594161"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10423,14 +10399,6 @@ return { }, }, ["1309799717"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10491,14 +10459,6 @@ return { }, }, ["1320662475"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10508,14 +10468,6 @@ return { }, }, ["1321104829"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10525,14 +10477,6 @@ return { }, }, ["1323216174"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10542,14 +10486,6 @@ return { }, }, ["1337740333"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10559,15 +10495,7 @@ return { }, }, ["1352561456"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["specialCaseData"] = { + ["specialCaseData"] = { }, ["tradeMod"] = { ["id"] = "explicit.stat_1352561456", @@ -10672,14 +10600,6 @@ return { ["usePositiveSign"] = true, }, ["138421180"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10723,14 +10643,6 @@ return { }, }, ["139889694"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10770,14 +10682,6 @@ return { }, }, ["1417267954"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10805,14 +10709,6 @@ return { ["usePositiveSign"] = true, }, ["1426522529"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10822,14 +10718,6 @@ return { }, }, ["1432756708"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10894,14 +10782,6 @@ return { }, }, ["147764878"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10911,14 +10791,6 @@ return { }, }, ["1494950893"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10928,14 +10800,6 @@ return { }, }, ["1495814176"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10945,14 +10809,6 @@ return { }, }, ["1505023559"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10962,14 +10818,6 @@ return { }, }, ["1514844108"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -10978,6 +10826,23 @@ return { ["type"] = "explicit", }, }, + ["1526933524"] = { + ["LifeFlask"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["ManaFlask"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1526933524", + ["text"] = "Instant Recovery", + ["type"] = "explicit", + }, + }, ["153777645"] = { ["AnyJewel"] = { ["max"] = 12, @@ -11022,14 +10887,6 @@ return { ["usePositiveSign"] = true, }, ["1552666713"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11167,14 +11024,6 @@ return { }, }, ["1590846356"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11227,14 +11076,6 @@ return { ["usePositiveSign"] = true, }, ["1602294220"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11261,14 +11102,6 @@ return { }, }, ["1653682082"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11466,14 +11299,6 @@ return { }, }, ["1756380435"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11481,7 +11306,6 @@ return { ["text"] = "Small Passive Skills in Radius also grant Minions have #% to Chaos Resistance", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, ["1772247089"] = { ["AnyJewel"] = { @@ -11501,14 +11325,6 @@ return { }, }, ["1773308808"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11535,14 +11351,6 @@ return { }, }, ["1777421941"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11577,14 +11385,6 @@ return { }, }, ["179541474"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11611,14 +11411,6 @@ return { }, }, ["1800303440"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11644,6 +11436,19 @@ return { ["type"] = "explicit", }, }, + ["1811130680"] = { + ["ManaFlask"] = { + ["max"] = 100, + ["min"] = 61, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1811130680", + ["text"] = "#% increased Mana Recovered", + ["type"] = "explicit", + }, + }, ["1829102168"] = { ["AnyJewel"] = { ["max"] = 10, @@ -11662,14 +11467,6 @@ return { }, }, ["1834658952"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11717,14 +11514,6 @@ return { }, }, ["1846980580"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11732,17 +11521,8 @@ return { ["text"] = "Notable Passive Skills in Radius also grant # to Maximum Rage", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, ["1852184471"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11886,14 +11666,6 @@ return { }, }, ["1892122971"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11903,14 +11675,6 @@ return { }, }, ["1896066427"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -11986,14 +11750,6 @@ return { }, }, ["1944020877"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12017,14 +11773,6 @@ return { ["usePositiveSign"] = true, }, ["1994296038"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12053,19 +11801,19 @@ return { ["1999113824"] = { ["Boots"] = { ["max"] = 100, - ["min"] = 15, + ["min"] = 6, }, ["Chest"] = { ["max"] = 110, - ["min"] = 15, + ["min"] = 6, }, ["Gloves"] = { ["max"] = 100, - ["min"] = 15, + ["min"] = 6, }, ["Helmet"] = { ["max"] = 100, - ["min"] = 15, + ["min"] = 6, }, ["Shield"] = { ["max"] = 110, @@ -12114,14 +11862,6 @@ return { }, }, ["2056107438"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12131,14 +11871,6 @@ return { }, }, ["2066964205"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12148,14 +11880,6 @@ return { }, }, ["2077117738"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12261,14 +11985,6 @@ return { }, }, ["2107703111"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12278,14 +11994,6 @@ return { }, }, ["2108821127"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12338,14 +12046,6 @@ return { }, }, ["2131720304"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12369,14 +12069,6 @@ return { ["usePositiveSign"] = true, }, ["2149603090"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12463,14 +12155,6 @@ return { }, }, ["2202308025"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12480,14 +12164,6 @@ return { }, }, ["221701169"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12611,14 +12287,6 @@ return { ["usePositiveSign"] = true, }, ["2256120736"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12628,14 +12296,6 @@ return { }, }, ["2272980012"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12662,14 +12322,6 @@ return { }, }, ["2320654813"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12700,14 +12352,6 @@ return { }, }, ["2334956771"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12805,14 +12449,6 @@ return { }, }, ["2359002191"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12835,14 +12471,6 @@ return { }, }, ["2374711847"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12852,14 +12480,6 @@ return { }, }, ["2392824305"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12899,14 +12519,6 @@ return { }, }, ["2421151933"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12933,14 +12545,6 @@ return { }, }, ["2442527254"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -12952,23 +12556,23 @@ return { ["2451402625"] = { ["Boots"] = { ["max"] = 100, - ["min"] = 15, + ["min"] = 6, }, ["Chest"] = { ["max"] = 110, - ["min"] = 15, + ["min"] = 6, }, ["Gloves"] = { ["max"] = 100, - ["min"] = 15, + ["min"] = 6, }, ["Helmet"] = { ["max"] = 100, - ["min"] = 15, + ["min"] = 6, }, ["Shield"] = { ["max"] = 110, - ["min"] = 15, + ["min"] = 6, }, ["specialCaseData"] = { }, @@ -13014,14 +12618,6 @@ return { ["usePositiveSign"] = true, }, ["2466785537"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13227,14 +12823,6 @@ return { }, }, ["2534359663"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13244,14 +12832,6 @@ return { }, }, ["253641217"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13291,14 +12871,6 @@ return { }, }, ["255840549"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13308,15 +12880,6 @@ return { }, }, ["2580617872"] = { - ["AnyJewel"] = { - ["max"] = -2, - ["min"] = -5, - }, - ["RadiusJewel"] = { - ["max"] = -2, - ["min"] = -5, - }, - ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13354,14 +12917,6 @@ return { }, }, ["2610562860"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13388,14 +12943,6 @@ return { }, }, ["2638756573"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13431,14 +12978,6 @@ return { }, }, ["266564538"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13479,14 +13018,6 @@ return { }, }, ["2690740379"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13563,14 +13094,6 @@ return { }, }, ["2704905000"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13597,14 +13120,6 @@ return { }, }, ["2709646369"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13631,14 +13146,6 @@ return { }, }, ["2726713579"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13731,14 +13238,6 @@ return { }, }, ["2768899959"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13748,14 +13247,6 @@ return { }, }, ["2770044702"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13795,14 +13286,6 @@ return { }, }, ["2809428780"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13812,14 +13295,6 @@ return { }, }, ["2822644689"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13846,14 +13321,6 @@ return { }, }, ["2840989393"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13880,14 +13347,6 @@ return { }, }, ["2849546516"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -13956,14 +13415,6 @@ return { }, }, ["288364275"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14057,14 +13508,6 @@ return { ["usePositiveSign"] = true, }, ["2907381231"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14074,14 +13517,6 @@ return { }, }, ["2912416697"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14170,14 +13605,6 @@ return { }, }, ["2954360902"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14237,14 +13664,6 @@ return { }, }, ["2969557004"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14269,11 +13688,11 @@ return { ["2974417149"] = { ["1HWeapon"] = { ["max"] = 119, - ["min"] = 25, + ["min"] = 15, }, ["2HWeapon"] = { ["max"] = 238, - ["min"] = 50, + ["min"] = 30, }, ["Amulet"] = { ["max"] = 30, @@ -14293,11 +13712,11 @@ return { }, ["Staff"] = { ["max"] = 238, - ["min"] = 50, + ["min"] = 30, }, ["Wand"] = { ["max"] = 119, - ["min"] = 25, + ["min"] = 15, }, ["specialCaseData"] = { }, @@ -14308,14 +13727,6 @@ return { }, }, ["2976476845"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14574,14 +13985,6 @@ return { }, }, ["30438393"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14608,14 +14011,6 @@ return { }, }, ["3065378291"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14642,14 +14037,6 @@ return { }, }, ["3088348485"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14676,14 +14063,6 @@ return { }, }, ["3106718406"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14693,14 +14072,6 @@ return { }, }, ["3113764475"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14799,16 +14170,8 @@ return { ["type"] = "explicit", }, ["usePositiveSign"] = true, - }, - ["3171212276"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, + }, + ["3171212276"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14818,14 +14181,6 @@ return { }, }, ["3173882956"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14925,14 +14280,6 @@ return { }, }, ["3222402650"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14942,14 +14289,6 @@ return { }, }, ["3225608889"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -14957,7 +14296,6 @@ return { ["text"] = "Small Passive Skills in Radius also grant Minions have #% to all Elemental Resistances", ["type"] = "explicit", }, - ["usePositiveSign"] = true, }, ["3233599707"] = { ["specialCaseData"] = { @@ -14978,14 +14316,6 @@ return { }, }, ["3256879910"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15314,15 +14644,15 @@ return { }, ["Chest"] = { ["max"] = 214, - ["min"] = 10, + ["min"] = 7, }, ["Gloves"] = { ["max"] = 149, - ["min"] = 10, + ["min"] = 7, }, ["Helmet"] = { ["max"] = 174, - ["min"] = 10, + ["min"] = 7, }, ["Ring"] = { ["max"] = 119, @@ -15358,23 +14688,23 @@ return { ["3321629045"] = { ["Boots"] = { ["max"] = 100, - ["min"] = 15, + ["min"] = 6, }, ["Chest"] = { ["max"] = 110, - ["min"] = 15, + ["min"] = 6, }, ["Gloves"] = { ["max"] = 100, - ["min"] = 15, + ["min"] = 6, }, ["Helmet"] = { ["max"] = 100, - ["min"] = 15, + ["min"] = 6, }, ["Shield"] = { ["max"] = 110, - ["min"] = 15, + ["min"] = 6, }, ["specialCaseData"] = { }, @@ -15586,14 +14916,6 @@ return { }, }, ["3386297724"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15603,14 +14925,6 @@ return { }, }, ["3391917254"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15620,14 +14934,6 @@ return { }, }, ["3394832998"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15637,14 +14943,6 @@ return { }, }, ["3395186672"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15688,14 +14986,6 @@ return { }, }, ["3409275777"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15722,14 +15012,6 @@ return { }, }, ["3419203492"] = { - ["AnyJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, - ["RadiusJewel"] = { - ["max"] = 25, - ["min"] = 15, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15758,23 +15040,23 @@ return { ["3484657501"] = { ["Boots"] = { ["max"] = 160, - ["min"] = 16, + ["min"] = 8, }, ["Chest"] = { ["max"] = 276, - ["min"] = 16, + ["min"] = 4, }, ["Gloves"] = { ["max"] = 160, - ["min"] = 16, + ["min"] = 8, }, ["Helmet"] = { ["max"] = 202, - ["min"] = 16, + ["min"] = 8, }, ["Shield"] = { ["max"] = 256, - ["min"] = 16, + ["min"] = 8, }, ["specialCaseData"] = { }, @@ -15817,14 +15099,6 @@ return { ["usePositiveSign"] = true, }, ["3513818125"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15901,14 +15175,6 @@ return { }, }, ["3579898587"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -15973,14 +15239,6 @@ return { }, }, ["3628935286"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16076,14 +15334,6 @@ return { }, }, ["3641543553"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16093,14 +15343,6 @@ return { }, }, ["3665922113"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16110,14 +15352,6 @@ return { }, }, ["3666476747"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16144,14 +15378,6 @@ return { }, }, ["3669820740"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16265,14 +15491,6 @@ return { }, }, ["3700202631"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16329,14 +15547,6 @@ return { }, }, ["3752589831"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16397,14 +15607,6 @@ return { }, }, ["3774951878"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16448,14 +15650,6 @@ return { }, }, ["378796798"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16499,14 +15693,6 @@ return { }, }, ["3821543413"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16612,14 +15798,6 @@ return { }, }, ["3856744003"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16629,14 +15807,6 @@ return { }, }, ["3858398337"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16646,14 +15816,6 @@ return { }, }, ["3859848445"] = { - ["AnyJewel"] = { - ["max"] = 6, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 6, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16663,14 +15825,6 @@ return { }, }, ["3865605585"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16727,26 +15881,35 @@ return { ["text"] = "#% increased Elemental Damage with Attacks", ["type"] = "explicit", }, - }, - ["3885405204"] = { + }, + ["3885405204"] = { + ["specialCaseData"] = { + ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_3885405204", + ["text"] = "Bow Attacks fire # additional Arrows", + ["type"] = "explicit", + }, + }, + ["3891355829"] = { + ["AnyJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["RadiusJewel"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { - ["overrideModLineSingular"] = "Bow Attacks fire an additional Arrow", }, ["tradeMod"] = { - ["id"] = "explicit.stat_3885405204", - ["text"] = "Bow Attacks fire # additional Arrows", + ["id"] = "explicit.stat_3891355829|1", + ["text"] = "Upgrades Radius to Medium", ["type"] = "explicit", }, }, ["391602279"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16785,14 +15948,6 @@ return { }, }, ["3936121440"] = { - ["AnyJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 5, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16802,14 +15957,6 @@ return { }, }, ["394473632"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -16897,11 +16044,11 @@ return { ["3984865854"] = { ["1HWeapon"] = { ["max"] = 65, - ["min"] = 27, + ["min"] = 10, }, ["Sceptre"] = { ["max"] = 65, - ["min"] = 27, + ["min"] = 10, }, ["specialCaseData"] = { }, @@ -16948,23 +16095,23 @@ return { ["4015621042"] = { ["Boots"] = { ["max"] = 100, - ["min"] = 15, + ["min"] = 6, }, ["Chest"] = { ["max"] = 110, - ["min"] = 15, + ["min"] = 6, }, ["Focus"] = { ["max"] = 100, - ["min"] = 15, + ["min"] = 6, }, ["Gloves"] = { ["max"] = 100, - ["min"] = 15, + ["min"] = 6, }, ["Helmet"] = { ["max"] = 100, - ["min"] = 15, + ["min"] = 6, }, ["Shield"] = { ["max"] = 110, @@ -17040,14 +16187,6 @@ return { }, }, ["4032352472"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 8, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17076,11 +16215,11 @@ return { ["4052037485"] = { ["Boots"] = { ["max"] = 60, - ["min"] = 10, + ["min"] = 5, }, ["Chest"] = { ["max"] = 96, - ["min"] = 10, + ["min"] = 2, }, ["Focus"] = { ["max"] = 90, @@ -17088,11 +16227,15 @@ return { }, ["Gloves"] = { ["max"] = 60, - ["min"] = 10, + ["min"] = 5, }, ["Helmet"] = { ["max"] = 73, - ["min"] = 10, + ["min"] = 5, + }, + ["Shield"] = { + ["max"] = 42, + ["min"] = 5, }, ["specialCaseData"] = { }, @@ -17220,14 +16363,6 @@ return { }, }, ["4089835882"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17237,14 +16372,6 @@ return { }, }, ["4092130601"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17297,14 +16424,6 @@ return { }, }, ["412709880"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17340,14 +16459,6 @@ return { }, }, ["4142814612"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17408,14 +16519,6 @@ return { }, }, ["4162678661"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17425,14 +16528,6 @@ return { }, }, ["4173554949"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17442,14 +16537,6 @@ return { }, }, ["4180952808"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17617,14 +16704,6 @@ return { }, }, ["4258720395"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17685,14 +16764,6 @@ return { }, }, ["442393998"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17719,14 +16790,6 @@ return { }, }, ["455816363"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17753,14 +16816,6 @@ return { }, }, ["462424929"] = { - ["AnyJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, - ["RadiusJewel"] = { - ["max"] = 7, - ["min"] = 3, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17816,14 +16871,6 @@ return { }, }, ["473917671"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17833,14 +16880,6 @@ return { }, }, ["484792219"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17867,14 +16906,6 @@ return { }, }, ["504915064"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17884,14 +16915,6 @@ return { }, }, ["517664839"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17964,14 +16987,6 @@ return { }, }, ["525523040"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -17983,23 +16998,23 @@ return { ["53045048"] = { ["Boots"] = { ["max"] = 142, - ["min"] = 11, + ["min"] = 6, }, ["Chest"] = { ["max"] = 251, - ["min"] = 11, + ["min"] = 3, }, ["Gloves"] = { ["max"] = 142, - ["min"] = 11, + ["min"] = 6, }, ["Helmet"] = { ["max"] = 181, - ["min"] = 11, + ["min"] = 6, }, ["Shield"] = { ["max"] = 232, - ["min"] = 11, + ["min"] = 6, }, ["specialCaseData"] = { }, @@ -18011,14 +17026,6 @@ return { ["usePositiveSign"] = true, }, ["533892981"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -18162,14 +17169,6 @@ return { ["usePositiveSign"] = true, }, ["593241812"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -18179,14 +17178,6 @@ return { }, }, ["61644361"] = { - ["AnyJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, - ["RadiusJewel"] = { - ["max"] = 12, - ["min"] = 6, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -18242,15 +17233,20 @@ return { ["type"] = "explicit", }, }, - ["654207792"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["648019518"] = { + ["LifeFlask"] = { + ["max"] = 15, + ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_648019518", + ["text"] = "Removes #% of Life Recovered from Mana when used", + ["type"] = "explicit", }, + }, + ["654207792"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -18392,43 +17388,43 @@ return { ["691932474"] = { ["1HMace"] = { ["max"] = 550, - ["min"] = 11, + ["min"] = 10, }, ["1HWeapon"] = { ["max"] = 550, - ["min"] = 11, + ["min"] = 10, }, ["2HMace"] = { ["max"] = 550, - ["min"] = 11, + ["min"] = 10, }, ["2HWeapon"] = { ["max"] = 650, - ["min"] = 11, + ["min"] = 10, }, ["Bow"] = { ["max"] = 650, - ["min"] = 11, + ["min"] = 10, }, ["Crossbow"] = { ["max"] = 650, - ["min"] = 11, + ["min"] = 10, }, ["Flail"] = { ["max"] = 550, - ["min"] = 11, + ["min"] = 10, }, ["Quarterstaff"] = { ["max"] = 550, - ["min"] = 11, + ["min"] = 10, }, ["Spear"] = { ["max"] = 550, - ["min"] = 11, + ["min"] = 10, }, ["Talisman"] = { ["max"] = 550, - ["min"] = 11, + ["min"] = 10, }, ["specialCaseData"] = { }, @@ -18440,14 +17436,6 @@ return { ["usePositiveSign"] = true, }, ["693237939"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -18459,12 +17447,13 @@ return { ["700317374"] = { ["LifeFlask"] = { ["max"] = 80, - ["min"] = 41, + ["min"] = -50, }, ["ManaFlask"] = { ["max"] = 80, - ["min"] = 41, + ["min"] = -50, }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -18557,14 +17546,6 @@ return { }, }, ["713216632"] = { - ["AnyJewel"] = { - ["max"] = 15, - ["min"] = 8, - }, - ["RadiusJewel"] = { - ["max"] = 15, - ["min"] = 8, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -18574,14 +17555,6 @@ return { }, }, ["715957346"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -18750,11 +17723,11 @@ return { ["789117908"] = { ["1HWeapon"] = { ["max"] = 69, - ["min"] = 10, + ["min"] = 8, }, ["2HWeapon"] = { ["max"] = 104, - ["min"] = 15, + ["min"] = 8, }, ["Amulet"] = { ["max"] = 69, @@ -18774,19 +17747,19 @@ return { }, ["Ring"] = { ["max"] = 69, - ["min"] = 10, + ["min"] = 8, }, ["Sceptre"] = { ["max"] = 69, - ["min"] = 10, + ["min"] = 8, }, ["Staff"] = { ["max"] = 104, - ["min"] = 15, + ["min"] = 8, }, ["Wand"] = { ["max"] = 69, - ["min"] = 10, + ["min"] = 8, }, ["specialCaseData"] = { }, @@ -18874,7 +17847,7 @@ return { }, ["Helmet"] = { ["max"] = 550, - ["min"] = 11, + ["min"] = 10, }, ["Quiver"] = { ["max"] = 550, @@ -18991,14 +17964,6 @@ return { }, }, ["821948283"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -19017,14 +17982,6 @@ return { }, }, ["830345042"] = { - ["AnyJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 4, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -19034,14 +17991,6 @@ return { }, }, ["844449513"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -19068,14 +18017,6 @@ return { }, }, ["868556494"] = { - ["AnyJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 2, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -19226,14 +18167,6 @@ return { }, }, ["942519401"] = { - ["AnyJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, - ["RadiusJewel"] = { - ["max"] = 10, - ["min"] = 5, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -19243,14 +18176,6 @@ return { }, }, ["944643028"] = { - ["AnyJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, - ["RadiusJewel"] = { - ["max"] = 1, - ["min"] = 1, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -19260,14 +18185,6 @@ return { }, }, ["945774314"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -19276,15 +18193,20 @@ return { ["type"] = "explicit", }, }, - ["980177976"] = { - ["AnyJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["959641748"] = { + ["ManaFlask"] = { + ["max"] = 15, + ["min"] = 15, }, - ["RadiusJewel"] = { - ["max"] = 3, - ["min"] = 2, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_959641748", + ["text"] = "Removes #% of Mana Recovered from Life when used", + ["type"] = "explicit", }, + }, + ["980177976"] = { ["specialCaseData"] = { }, ["tradeMod"] = { @@ -19860,6 +18782,23 @@ return { }, ["usePositiveSign"] = true, }, + ["2527686725"] = { + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2527686725", + ["text"] = "#% increased Magnitude of Shock you inflict", + ["type"] = "implicit", + }, + }, ["2646093132"] = { ["Ring"] = { ["max"] = 1, @@ -20020,6 +18959,23 @@ return { ["type"] = "implicit", }, }, + ["2968503605"] = { + ["2HWeapon"] = { + ["max"] = 80, + ["min"] = 50, + }, + ["Talisman"] = { + ["max"] = 80, + ["min"] = 50, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2968503605", + ["text"] = "#% increased Flammability Magnitude", + ["type"] = "implicit", + }, + }, ["2994271459"] = { ["Charm"] = { ["max"] = 1, @@ -20050,6 +19006,24 @@ return { ["type"] = "implicit", }, }, + ["3182714256"] = { + ["Amulet"] = { + ["max"] = 2, + ["min"] = -2, + }, + ["Ring"] = { + ["max"] = 2, + ["min"] = -2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3182714256", + ["text"] = "# Prefix Modifier allowed", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["3261801346"] = { ["Amulet"] = { ["max"] = 15, @@ -20485,6 +19459,24 @@ return { ["type"] = "implicit", }, }, + ["718638445"] = { + ["Amulet"] = { + ["max"] = 2, + ["min"] = -2, + }, + ["Ring"] = { + ["max"] = 2, + ["min"] = -2, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_718638445", + ["text"] = "# Suffix Modifier allowed", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["731781020"] = { ["Belt"] = { ["max"] = 0.17, @@ -21399,6 +20391,50 @@ return { ["usePositiveSign"] = true, }, ["1755296234"] = { + ["1HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["1HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HMace"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Bow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Claw"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Flail"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Quarterstaff"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Spear"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Talisman"] = { + ["max"] = 1, + ["min"] = 1, + }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -21406,6 +20442,7 @@ return { ["text"] = "Targets can be affected by # of your Poisons at the same time", ["type"] = "augment", }, + ["usePositiveSign"] = true, }, ["1772929282"] = { ["Helmet"] = { @@ -21518,53 +20555,54 @@ return { }, ["2011656677"] = { ["1HMace"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = -25, + ["min"] = -25, }, ["1HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = -25, + ["min"] = -25, }, ["2HMace"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = -25, + ["min"] = -25, }, ["2HWeapon"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = -25, + ["min"] = -25, }, ["Boots"] = { ["max"] = 15, ["min"] = 15, }, ["Bow"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = -25, + ["min"] = -25, }, ["Claw"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = -25, + ["min"] = -25, }, ["Crossbow"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = -25, + ["min"] = -25, }, ["Flail"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = -25, + ["min"] = -25, }, ["Quarterstaff"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = -25, + ["min"] = -25, }, ["Spear"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = -25, + ["min"] = -25, }, ["Talisman"] = { - ["max"] = 1, - ["min"] = 1, + ["max"] = -25, + ["min"] = -25, }, + ["invertOnNegative"] = true, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -21572,7 +20610,6 @@ return { ["text"] = "#% increased Poison Duration", ["type"] = "augment", }, - ["usePositiveSign"] = true, }, ["2023107756"] = { ["1HMace"] = { @@ -21960,7 +20997,7 @@ return { }, }, ["2481353198"] = { - ["Gloves"] = { + ["Chest"] = { ["max"] = 10, ["min"] = 10, }, @@ -23372,7 +22409,7 @@ return { }, }, ["3759663284"] = { - ["2HWeapon"] = { + ["Bow"] = { ["max"] = 20, ["min"] = 20, }, @@ -23449,10 +22486,6 @@ return { ["max"] = 20, ["min"] = 20, }, - ["Gloves"] = { - ["max"] = 20, - ["min"] = 20, - }, ["specialCaseData"] = { }, ["tradeMod"] = { @@ -23515,7 +22548,7 @@ return { }, }, ["3885405204"] = { - ["2HWeapon"] = { + ["Bow"] = { ["max"] = 1, ["min"] = 1, }, diff --git a/src/Export/Scripts/soulcores.lua b/src/Export/Scripts/soulcores.lua index e543d31a26..ca5a66c321 100644 --- a/src/Export/Scripts/soulcores.lua +++ b/src/Export/Scripts/soulcores.lua @@ -50,7 +50,12 @@ directiveTable.base = function(state, args, out) out:write('\t\t\t\t"'..table.concat(modLine.label, '",\n\t\t\t\t"')..'",\n') local statOrder = modLine.statOrder or {} out:write('\t\t\t\tstatOrder = { '..table.concat(statOrder, ', ')..' },\n') - out:write('\t\t\t\ttradeHashes = { '..table.concat(modLine.tradeHashes, ', ')..' },\n') + out:write('\t\t\t\ttradeHashes = { ') + for hash, desc in pairs(modLine.tradeHashes) do + local descriptionLines = '"'..table.concat(desc, '", "')..'"' + out:write(string.format('[%d] = { %s }, ', hash, descriptionLines)) + end + out:write(' },\n') end out:write('\t\t\t\trank = { '..(modLine.rank or 0)..' },\n') out:write('\t\t},\n') @@ -92,24 +97,31 @@ directiveTable.base = function(state, args, out) table.insert(orders, order) end if #orders > 0 then - local tradeHashes = {} - -- -- stat hashes might be multiple different modifiers, or - -- -- they can be the minimum and maximum of a single modifier - for _, stat in ipairs(stats) do - if stat:find("^Bonded:") then - -- continue - -- range stat: output a single trade hash - elseif stat:find("%d+ to %d+") then - local tradeHash = murmurHash2(table.concat(statHashes), 0x02312233) - table.insert(tradeHashes, tradeHash) - -- otherwise output separate trade hashes - else - for _, statHash in ipairs(statHashes) do - local tradeHash = murmurHash2(statHash, 0x02312233) - table.insert(tradeHashes, tradeHash) - end + local modIdx = 1 + local tradeHashes = {} + while soulCoreStat.Stats[modIdx] do + local currentStats = {} + local stat = soulCoreStat.Stats[modIdx] + currentStats[stat.Id] = { + min = soulCoreStat.StatValue[modIdx], max = soulCoreStat.StatValue[modIdx] + } + local bytes = intToBytes(stat.Hash) + -- # to # stats consist of two different stats as the min and max have different ranges + if stat.Id:match("minimum") then + local nextStat = soulCoreStat.Stats[modIdx + 1] + if nextStat and nextStat.Id:match("maximum") then + modIdx = modIdx + 1 + bytes = bytes .. intToBytes(nextStat.Hash) + currentStats[nextStat.Id] = { + min = soulCoreStat.StatValue[modIdx], max = soulCoreStat.StatValue[modIdx] + } end end + + local description, _, _ = describeStats(currentStats) + tradeHashes[murmurHash2(bytes, 0x02312233)] = description + modIdx = modIdx + 1 + end local out = { type = "Rune", slotType = class, From 7d77f33018e4f16ad10b433393aab93a88c89011 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Thu, 14 May 2026 04:51:17 +0300 Subject: [PATCH 31/42] Add note about trade hashes --- src/Export/Scripts/mods.lua | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/src/Export/Scripts/mods.lua b/src/Export/Scripts/mods.lua index bbe2cc5db3..91b598a920 100644 --- a/src/Export/Scripts/mods.lua +++ b/src/Export/Scripts/mods.lua @@ -110,24 +110,31 @@ local function writeMods(outName, condFunc) out:write('nodeType = ', mod.NodeType, ', ') end + -- Note that some of the resulting hashes might not be correct. + -- Some of the tradehashes are also associated with another + -- value. For example the "only affects passives in # ring" is + -- correct here, but has a variant value appended to it like: + -- explicit.stat_3642528642|7. Some stats may also be handled in + -- a way similar to radius jewels that this script doesn't do. local modIdx = 1 local tradeHashes = {} while mod["Stat" .. modIdx] do local currentStats = {} - currentStats[mod["Stat" .. modIdx].Id] = { + local stat = mod["Stat" .. modIdx] + currentStats[stat.Id] = { min = mod["Stat" .. modIdx .. "Value"][1], max = mod["Stat" .. modIdx .. "Value"][2] } if modIdx == 6 then break end - local bytes = intToBytes(mod["Stat" .. modIdx].Hash) + local bytes = intToBytes(stat.Hash) -- # to # stats consist of two different stats as the min and max have different ranges - if mod["Stat" .. modIdx].Id:match("minimum") then + if stat.Id:match("minimum") then local nextStat = mod["Stat" .. (modIdx + 1)] if nextStat and nextStat.Id:match("maximum") then modIdx = modIdx + 1 - bytes = bytes .. intToBytes(mod["Stat" .. modIdx].Hash) - currentStats[mod["Stat" .. modIdx].Id] = { + bytes = bytes .. intToBytes(nextStat.Hash) + currentStats[nextStat.Id] = { min = mod["Stat" .. modIdx .. "Value"][1], max = mod["Stat" .. modIdx .. "Value"][2] } end From 46744111ed0e9aa94e1526dc7c1d93f37bba450c Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Thu, 14 May 2026 20:51:33 +0300 Subject: [PATCH 32/42] Fix curse querymod.lua test --- spec/System/TestTradeQueryGenerator_spec.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spec/System/TestTradeQueryGenerator_spec.lua b/spec/System/TestTradeQueryGenerator_spec.lua index befb96a657..fd4173b49d 100644 --- a/spec/System/TestTradeQueryGenerator_spec.lua +++ b/spec/System/TestTradeQueryGenerator_spec.lua @@ -5,8 +5,8 @@ describe("TradeQueryGenerator", function() -- Pass: Mod line maps correctly to trade stat entry without error -- Fail: Mapping fails (e.g., no match found), indicating incomplete stat parsing for curse mods, potentially missing curse-enabling items in queries it("handles special curse case", function() - local mod = { "You can apply an additional Curse" } - local tradeStatsParsed = { result = { [2] = { entries = { { text = "You can apply # additional Curses", id = "id" } } } } } + local mod = { tradeHashes = {[30642521] = {"You can apply an additional Curse"}} } + local tradeStatsParsed = { result = { [2] = { entries = { { text = "You can apply # additional Curses", id = "explicit.stat_30642521" } } } } } mock_queryGen.modData = { Explicit = true } mock_queryGen:ProcessMod(mod, tradeStatsParsed, 1) -- Simplified assertion; in full impl, check modData From fe2fcbff39fff218f05c2113c31d95663cc3e815 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Sat, 16 May 2026 00:07:12 +0300 Subject: [PATCH 33/42] Clear authorization on 403 to fix outdated scope in trader --- src/Classes/PoEAPI.lua | 9 +++++++++ src/Classes/TradeQuery.lua | 5 +++++ 2 files changed, 14 insertions(+) diff --git a/src/Classes/PoEAPI.lua b/src/Classes/PoEAPI.lua index b6d5b376ef..2c62b3f745 100644 --- a/src/Classes/PoEAPI.lua +++ b/src/Classes/PoEAPI.lua @@ -66,6 +66,15 @@ function PoEAPIClass:ResetDetails() self.authToken = nil self.refreshToken = nil self.tokenExpiry = nil + self:UpdateMain() +end + +--- updates main so that API details are saved across restarts +function PoEAPIClass:UpdateMain() + main.lastToken = self.authToken + main.lastRefreshToken = self.refreshToken + main.tokenExpiry = self.tokenExpiry + main:SaveSettings() end --- @param callback fun(response: table?, errCode: string?, updateSettings: boolean) diff --git a/src/Classes/TradeQuery.lua b/src/Classes/TradeQuery.lua index 2995c910f0..b991800d9b 100644 --- a/src/Classes/TradeQuery.lua +++ b/src/Classes/TradeQuery.lua @@ -1213,6 +1213,11 @@ function TradeQueryClass:UpdateRealms() -- perform a generic search to make sure the authorization is valid. self.tradeQueryRequests:PerformSearch("poe2", "Standard", [[{"query":{"status":{"option":"online"},"stats":[{"type":"and","filters":[]}]},"sort":{"price":"asc"}}]], function(response, errMsg) if errMsg then + -- a 403 here likely means that the user has an outdated scope + if errMsg == "Response code: 403" then + main.api:ResetDetails() + errMsg = errMsg.."\nPlease re-authenticate" + end self:SetNotice(self.controls.pbNotice, "Error: " .. tostring(errMsg)) end end) From 16a8629c05239d5fbfadd1435c62a499658afeb4 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Sun, 17 May 2026 10:23:32 +0300 Subject: [PATCH 34/42] Use enum in mods.lua and format it --- src/Export/Scripts/mods.lua | 94 +++++++++++++++++++++++-------------- 1 file changed, 59 insertions(+), 35 deletions(-) diff --git a/src/Export/Scripts/mods.lua b/src/Export/Scripts/mods.lua index 91b598a920..38b8bfd2f0 100644 --- a/src/Export/Scripts/mods.lua +++ b/src/Export/Scripts/mods.lua @@ -3,13 +3,32 @@ if not loadStatFile then end loadStatFile("stat_descriptions.csd") +-- not comprehensive. see moddomains table in export tool and enums.lua +local Domains = { + GenericMod = 1, + FlaskCharm = 2, + Jewel = 11, + UniqueJewel = 22, + Veiled = 28, + -- not actually present on the table, but still referenced by mods + IncursionLimb = 37, +} + +local GenTypes = { + Prefix = 1, + Suffix = 2, + -- includes both implicit mods and unique explicit mods + Intrinsic = 3, + Corruption = 5, +} + function table.containsId(table, element) - for _, value in pairs(table) do - if value.Id == element then - return true - end - end - return false + for _, value in pairs(table) do + if value.Id == element then + return true + end + end + return false end local whiteListStat = { @@ -28,12 +47,12 @@ local function writeMods(outName, condFunc) local stats, orders, missing = describeMod(mod) if missing[1] then local printHeader = true - for k, _ in pairs(missing) do + for k, _ in pairs(missing) do if k ~= 1 and not whiteListStat[k] then if printHeader then printHeader = false ConPrintf("====================================") - ConPrintf("Mod '"..mod.Id.."' is missing stats:") + ConPrintf("Mod '" .. mod.Id .. "' is missing stats:") end ConPrintf('%s', k) end @@ -41,19 +60,15 @@ local function writeMods(outName, condFunc) end if #orders > 0 then out:write('\t["', mod.Id, '"] = { ') - if mod.GenerationType == 1 then + if mod.GenerationType == GenTypes.Prefix then out:write('type = "Prefix", ') - elseif mod.GenerationType == 2 then + elseif mod.GenerationType == GenTypes.Suffix then out:write('type = "Suffix", ') - elseif mod.GenerationType == 3 then - if mod.Domain == 1 and mod.Id:match("^Synthesis") then - out:write('type = "Synthesis", ') - elseif mod.Domain == 16 then - out:write('type = "DelveImplicit", ') - elseif mod.Id:match("SpecialCorruption") then + elseif mod.GenerationType == GenTypes.Intrinsic then + if mod.Id:match("SpecialCorruption") then out:write('type = "SpecialCorrupted", ') end - elseif mod.GenerationType == 5 then + elseif mod.GenerationType == GenTypes.Corruption then out:write('type = "Corrupted", ') end out:write('affix = "', mod.Name, '", ') @@ -63,7 +78,7 @@ local function writeMods(outName, condFunc) table.remove(orders, index) break end - end + end out:write('"', table.concat(stats, '", "'), '", ') out:write('statOrder = { ', table.concat(orders, ', '), ' }, ') out:write('level = ', mod.Level, ', group = "', mod.Type.Id, '", ') @@ -75,7 +90,7 @@ local function writeMods(outName, condFunc) out:write('weightVal = { ', table.concat(mod.SpawnWeight, ', '), ' }, ') if mod.GenerationWeightTags[1] then -- make large clusters only have 1 notable suffix - if mod.GenerationType == 2 and mod.Tags[1] and outName == "../Data/ModJewelCluster.lua" and mod.Tags[1].Id == "has_affliction_notable" then + if mod.GenerationType == GenTypes.Suffix and mod.Tags[1] and outName == "../Data/ModJewelCluster.lua" and mod.Tags[1].Id == "has_affliction_notable" then out:write('weightMultiplierKey = { "has_affliction_notable2", ') for _, tag in ipairs(mod.GenerationWeightTags) do out:write('"', tag.Id, '", ') @@ -159,13 +174,13 @@ local function writeMods(outName, condFunc) end out:write("tradeHashes = { ") for hash, desc in pairs(tradeHashes) do - local descriptionLines = '"'..table.concat(desc, '", "')..'"' + local descriptionLines = '"' .. table.concat(desc, '", "') .. '"' out:write(string.format('[%d] = { %s }, ', hash, descriptionLines)) end out:write('} ') out:write('},\n') else - print("Mod '"..mod.Id.."' has no stats") + print("Mod '" .. mod.Id .. "' has no stats") end end ::continue:: @@ -175,32 +190,41 @@ local function writeMods(outName, condFunc) end writeMods("../Data/ModItem.lua", function(mod) - return mod.Domain == 1 and (mod.GenerationType == 1 or mod.GenerationType == 2) - and (mod.Family[1] and mod.Family[1].Id ~= "AuraBonus" or not mod.Family[1]) and (not mod.Id:match("Cowards")) and not mod.Id:match("Master") + return mod.Domain == Domains.GenericMod and + (mod.GenerationType == GenTypes.Prefix or mod.GenerationType == GenTypes.Suffix) + and (mod.Family[1] and mod.Family[1].Id ~= "AuraBonus" or not mod.Family[1]) and (not mod.Id:match("Cowards")) and + not mod.Id:match("Master") end) writeMods("../Data/ModCorrupted.lua", function(mod) - return (mod.Domain == 11 or mod.Domain == 1) and (mod.GenerationType == 3 and mod.Id:match("SpecialCorruption") or mod.GenerationType == 5) + return (mod.Domain == Domains.Jewel or mod.Domain == Domains.GenericMod) and + (mod.GenerationType == GenTypes.Intrinsic and mod.Id:match("SpecialCorruption") or mod.GenerationType == GenTypes.Corruption) end) writeMods("../Data/ModFlask.lua", function(mod) - return mod.Domain == 2 and (mod.GenerationType == 1 or mod.GenerationType == 2) and mod.Id:match("^Flask") + return mod.Domain == Domains.FlaskCharm and + (mod.GenerationType == GenTypes.Prefix or mod.GenerationType == GenTypes.Suffix) and mod.Id:match("^Flask") end) writeMods("../Data/ModCharm.lua", function(mod) - return mod.Domain == 2 and ((mod.GenerationType == 1 and mod.Id:match("^Charm")) - or (mod.GenerationType == 2 and not mod.Id:match("Immunity"))) + return mod.Domain == Domains.FlaskCharm and ((mod.GenerationType == GenTypes.Prefix and mod.Id:match("^Charm")) + or (mod.GenerationType == GenTypes.Suffix and not mod.Id:match("Immunity"))) end) writeMods("../Data/ModJewel.lua", function(mod) - return (mod.Domain == 11 and (mod.GenerationType == 1 or mod.GenerationType == 2)) or (mod.Domain == 21 and mod.GenerationType == 3) + return (mod.Domain == Domains.Jewel and (mod.GenerationType == GenTypes.Prefix or mod.GenerationType == GenTypes.Suffix)) or + (mod.Domain == Domains.FlaskCharm1 and mod.GenerationType == GenTypes.Intrinsic) end) writeMods("../Data/ModIncursionLimb.lua", function(mod) - return (mod.Domain == 37 and mod.GenerationType == 3) -end) -writeMods("../Data/ModItemExclusive.lua", function(mod) -- contains primarily uniques and items implicits but also other mods only available on a single base or unique. - return (mod.Domain == 1 or mod.Domain == 2 or mod.Domain == 11 or mod.Domain == 22) and mod.GenerationType == 3 - and (mod.Family[1] and mod.Family[1].Id ~= "AuraBonus" or not mod.Family[1]) - and not mod.Id:match("^Synthesis") and not mod.Id:match("Royale") and not mod.Id:match("Cowards") and not mod.Id:match("Map") and not mod.Id:match("Ultimatum") and not mod.Id:match("SpecialCorruption") + return (mod.Domain == Domains.IncursionLimb and mod.GenerationType == GenTypes.Intrinsic) end) +writeMods("../Data/ModItemExclusive.lua", + -- contains primarily uniques and items implicits but also other mods only available on a single base or unique. + function(mod) + return (mod.Domain == Domains.GenericMod or mod.Domain == Domains.FlaskCharm or mod.Domain == Domains.Jewel or mod.Domain == Domains.UniqueJewel) and + mod.GenerationType == GenTypes.Intrinsic + and (mod.Family[1] and mod.Family[1].Id ~= "AuraBonus" or not mod.Family[1]) + and not mod.Id:match("^Synthesis") and not mod.Id:match("Royale") and not mod.Id:match("Cowards") and + not mod.Id:match("Map") and not mod.Id:match("Ultimatum") and not mod.Id:match("SpecialCorruption") + end) writeMods("../Data/ModVeiled.lua", function(mod) - return mod.Domain == 28 and not mod.Id:match("Map") + return mod.Domain == Domains.Veiled and not mod.Id:match("Map") end) print("Mods exported.") From 89eb71af3675a90a3cf0a7fb4e5376af9eeb456f Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Tue, 19 May 2026 17:12:00 +0300 Subject: [PATCH 35/42] Fix typo in mods.lua --- src/Export/Scripts/mods.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Export/Scripts/mods.lua b/src/Export/Scripts/mods.lua index 38b8bfd2f0..18fae27fc2 100644 --- a/src/Export/Scripts/mods.lua +++ b/src/Export/Scripts/mods.lua @@ -126,7 +126,7 @@ local function writeMods(outName, condFunc) end -- Note that some of the resulting hashes might not be correct. - -- Some of the tradehashes are also associated with another + -- Some of the trade hashes are also associated with another -- value. For example the "only affects passives in # ring" is -- correct here, but has a variant value appended to it like: -- explicit.stat_3642528642|7. Some stats may also be handled in From ccc8c1582b93d76c2b0e52d494ed83f10208911d Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Tue, 19 May 2026 17:46:00 +0300 Subject: [PATCH 36/42] Fix module being a global variable and compare trade helpers into one file --- src/Classes/CompareBuySimilar.lua | 5 +- src/Classes/CompareTab.lua | 2 +- ...mpareTradeHelpers.lua => TradeHelpers.lua} | 53 +++++++++++ src/Classes/TradeQueryGenerator.lua | 4 +- src/Classes/TradeQueryHelpers.lua | 88 ------------------- 5 files changed, 58 insertions(+), 94 deletions(-) rename src/Classes/{CompareTradeHelpers.lua => TradeHelpers.lua} (80%) delete mode 100644 src/Classes/TradeQueryHelpers.lua diff --git a/src/Classes/CompareBuySimilar.lua b/src/Classes/CompareBuySimilar.lua index 02922023cd..4930d9b13e 100644 --- a/src/Classes/CompareBuySimilar.lua +++ b/src/Classes/CompareBuySimilar.lua @@ -6,8 +6,7 @@ local t_insert = table.insert local m_floor = math.floor local dkjson = require "dkjson" -local tradeHelpers = LoadModule("Classes/CompareTradeHelpers") -local tradeQueryHelpers = LoadModule("Classes/TradeQueryHelpers") +local tradeHelpers = LoadModule("Classes/TradeHelpers") local M = {} @@ -86,7 +85,7 @@ local function buildURL(item, slotName, controls, modEntries, defenceEntries, is end else -- Category filter - local categoryStr, _ = tradeQueryHelpers.GetTradeCategory(slotName, item) + local categoryStr, _ = tradeHelpers.getTradeCategory(slotName, item) if categoryStr then queryFilters.type_filters = { filters = { diff --git a/src/Classes/CompareTab.lua b/src/Classes/CompareTab.lua index 041300c8d0..f10b9f6790 100644 --- a/src/Classes/CompareTab.lua +++ b/src/Classes/CompareTab.lua @@ -10,7 +10,7 @@ local m_max = math.max local m_floor = math.floor local s_format = string.format local dkjson = require "dkjson" -local tradeHelpers = LoadModule("Classes/CompareTradeHelpers") +local tradeHelpers = LoadModule("Classes/TradeHelpers") local buySimilar = LoadModule("Classes/CompareBuySimilar") local calcsHelpers = LoadModule("Classes/CompareCalcsHelpers") local buildListHelpers = LoadModule("Modules/BuildListHelpers") diff --git a/src/Classes/CompareTradeHelpers.lua b/src/Classes/TradeHelpers.lua similarity index 80% rename from src/Classes/CompareTradeHelpers.lua rename to src/Classes/TradeHelpers.lua index 9db884899d..36d37107d6 100644 --- a/src/Classes/CompareTradeHelpers.lua +++ b/src/Classes/TradeHelpers.lua @@ -159,6 +159,59 @@ function M.findTradeHash(item, modLine, modType, isDesecrated) end end +-- Map slot name + item type to (trade API category string, itemCategoryTags key). +-- queryStr: e.g. "armour.shield", "weapon.onemace" +-- categoryLabel: e.g. "Shield", "1HMace", "1HWeapon" (nil for flask / generic jewel / unsupported) +--- @param slotName string +--- @param item table +function M.getTradeCategory(slotName, item) + if not slotName then return nil, nil end + local itemType = item and (item.type or (item.base and item.base.type)) + if slotName:find("^Weapon %d") then + if not itemType then return "weapon.one", "1HWeapon" end + if itemType == "Shield" then return "armour.shield", "Shield" + elseif itemType == "Focus" then return "armour.focus", "Focus" + elseif itemType == "Buckler" then return "armour.buckler", "Buckler" + elseif itemType == "Quiver" then return "armour.quiver", "Quiver" + elseif itemType == "Bow" then return "weapon.bow", "Bow" + elseif itemType == "Crossbow" then return "weapon.crossbow", "Crossbow" + elseif itemType == "Talisman" then return "weapon.talisman", "Talisman" + elseif itemType == "Staff" and item.base.subType == "Warstaff" then return "weapon.warstaff", "Quarterstaff" + elseif itemType == "Staff" then return "weapon.staff", "Staff" + elseif itemType == "Two Hand Sword" then return "weapon.twosword", "2HSword" + elseif itemType == "Two Hand Axe" then return "weapon.twoaxe", "2HAxe" + elseif itemType == "Two Hand Mace" then return "weapon.twomace", "2HMace" + elseif itemType == "Fishing Rod" then return "weapon.rod", "FishingRod" + elseif itemType == "One Hand Sword" then return "weapon.onesword", "1HSword" + elseif itemType == "Spear" then return "weapon.spear", "Spear" + elseif itemType == "Flail" then return "weapon.flail", "weapon.flail" + elseif itemType == "One Hand Axe" then return "weapon.oneaxe", "1HAxe" + elseif itemType == "One Hand Mace" then return "weapon.onemace", "1HMace" + elseif itemType == "Sceptre" then return "weapon.sceptre", "Sceptre" + elseif itemType == "Wand" then return "weapon.wand", "Wand" + elseif itemType == "Dagger" then return "weapon.dagger", "Dagger" + elseif itemType == "Claw" then return "weapon.claw", "Claw" + elseif itemType:find("Two Hand") then return "weapon.twomelee", "2HWeapon" + elseif itemType:find("One Hand") then return "weapon.one", "1HWeapon" + else + return nil, nil + end + elseif slotName == "Body Armour" then return "armour.chest", "Chest" + elseif slotName == "Helmet" then return "armour.helmet", "Helmet" + elseif slotName == "Gloves" then return "armour.gloves", "Gloves" + elseif slotName == "Boots" then return "armour.boots", "Boots" + elseif slotName == "Amulet" then return "accessory.amulet", "Amulet" + elseif slotName == "Ring 1" or slotName == "Ring 2" or slotName == "Ring 3" then return "accessory.ring", "Ring" + elseif slotName == "Belt" then return "accessory.belt", "Belt" + elseif slotName:find("Jewel") then return "jewel", "Jewel" + elseif slotName:find("Flask 1") then return "flask.life", "Life Flask" + elseif slotName:find("Flask 2") then return "flask.mana", "Mana Flask" + -- these don't have a unique string so overlapping mods of the same benefit could interfere. , "Charm" + elseif slotName:find("Charm") ~= nil then return "flask" + else return nil, nil + end +end + -- Helper: get a display-friendly category name from slot name function M.getTradeCategoryLabel(slotName, item) if not item or not item.base then return "Item" end diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index b723a54d89..af02c9563d 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -9,7 +9,7 @@ local curl = require("lcurl.safe") local m_max = math.max local s_format = string.format local t_insert = table.insert -local tradeHelpers = LoadModule("Classes/TradeQueryHelpers") +local tradeHelpers = LoadModule("Classes/TradeHelpers") -- string are an any type while tables require all fields to be matched with type and subType require both to be matched exactly. [1] type, [2] subType, subType is optional and must be nil if not present. local tradeCategoryNames = { @@ -690,7 +690,7 @@ function TradeQueryGeneratorClass:StartQuery(slot, options) } end else - itemCategoryQueryStr, itemCategory = tradeHelpers.GetTradeCategory(slot.slotName, existingItem) + itemCategoryQueryStr, itemCategory = tradeHelpers.getTradeCategory(slot.slotName, existingItem) if not itemCategory then logToFile("'%s' is not supported for weighted trade query generation", existingItem and existingItem.type or "n/a") return diff --git a/src/Classes/TradeQueryHelpers.lua b/src/Classes/TradeQueryHelpers.lua deleted file mode 100644 index 6c298babbb..0000000000 --- a/src/Classes/TradeQueryHelpers.lua +++ /dev/null @@ -1,88 +0,0 @@ -M = {} - -function M.GetTradeCategory(slotName, existingItem) - if slotName:find("^Weapon %d") then - if existingItem then - if existingItem.type == "Shield" then - return "armour.shield", "Shield" - elseif existingItem.type == "Focus" then - return "armour.focus", "Focus" - elseif existingItem.type == "Buckler" then - return "armour.buckler", "Buckler" - elseif existingItem.type == "Quiver" then - return "armour.quiver", "Quiver" - elseif existingItem.type == "Bow" then - return "weapon.bow", "Bow" - elseif existingItem.type == "Crossbow" then - return "weapon.crossbow", "Crossbow" - elseif existingItem.type == "Talisman" then - return "weapon.talisman", "Talisman" - elseif existingItem.type == "Staff" and existingItem.base.subType == "Warstaff" then - return "weapon.warstaff", "Quarterstaff" - elseif existingItem.type == "Staff" then - return "weapon.staff", "Staff" - elseif existingItem.type == "Two Hand Sword" then - return "weapon.twosword", "2HSword" - elseif existingItem.type == "Two Hand Axe" then - return "weapon.twoaxe", "2HAxe" - elseif existingItem.type == "Two Hand Mace" then - return "weapon.twomace", "2HMace" - elseif existingItem.type == "Fishing Rod" then - return "weapon.rod", "FishingRod" - elseif existingItem.type == "One Hand Sword" then - return "weapon.onesword", "1HSword" - elseif existingItem.type == "Spear" then - return "weapon.spear", "Spear" - elseif existingItem.type == "Flail" then - return "weapon.flail", "weapon.flail" - elseif existingItem.type == "One Hand Axe" then - return "weapon.oneaxe", "1HAxe" - elseif existingItem.type == "One Hand Mace" then - return "weapon.onemace", "1HMace" - elseif existingItem.type == "Sceptre" then - return "weapon.sceptre", "Sceptre" - elseif existingItem.type == "Wand" then - return "weapon.wand", "Wand" - elseif existingItem.type == "Dagger" then - return "weapon.dagger", "Dagger" - elseif existingItem.type == "Claw" then - return "weapon.claw", "Claw" - elseif existingItem.type:find("Two Hand") ~= nil then - return "weapon.twomelee", "2HWeapon" - elseif existingItem.type:find("One Hand") ~= nil then - return "weapon.one", "1HWeapon" - else - return nil, nil - end - else - -- Item does not exist in this slot so assume 1H weapon - return "weapon.one", "1HWeapon" - end - elseif slotName == "Body Armour" then - return "armour.chest", "Chest" - elseif slotName == "Helmet" then - return "armour.helmet", "Helmet" - elseif slotName == "Gloves" then - return "armour.gloves", "Gloves" - elseif slotName == "Boots" then - return "armour.boots", "Boots" - elseif slotName == "Amulet" then - return "accessory.amulet", "Amulet" - elseif slotName == "Ring 1" or slotName == "Ring 2" or slotName == "Ring 3" then - return "accessory.ring", "Ring" - elseif slotName == "Belt" then - return "accessory.belt", "Belt" - elseif slotName:find("Jewel") ~= nil then - return "jewel", "Jewel" - elseif slotName:find("Flask 1") ~= nil then - return "flask.life", "Life Flask" - elseif slotName:find("Flask 2") ~= nil then - return "flask.mana", "Mana Flask" - elseif slotName:find("Charm") ~= nil then - return "flask" -- these don't have a unique string so overlapping mods of the same benefit could interfere. , "Charm" - else - return nil, nil - end -end - -return M \ No newline at end of file From 18b8585d8f0552feb274ac85531c54fcee859fe2 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Tue, 19 May 2026 18:19:42 +0300 Subject: [PATCH 37/42] Remove forgotten debug prints --- src/Classes/TradeQueryGenerator.lua | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index af02c9563d..a8260644ba 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -201,9 +201,6 @@ function TradeQueryGeneratorClass:ProcessMod(mod, tradeQueryStatsParsed, itemCat -- the mod export sometimes splits stats to multiple lines. they should -- still get parsed correctly if we combine them, and that makes it -- simpler to process them - if not modLines then - ConPrintf("") - end local modLine = table.concat(modLines, " ") if modLine:find("Grants Level") or modLine:find("inflict Decay") then -- skip mods that grant skills / decay, as they will often be overwhelmingly powerful but don't actually fit into the build goto nextModLine @@ -235,9 +232,6 @@ function TradeQueryGeneratorClass:ProcessMod(mod, tradeQueryStatsParsed, itemCat local entry local tradeHashStr = tostring(tradeHash) for _, v in ipairs(tradeQueryStatsParsed.result[tradeStatCategoryIndices[modType]].entries) do - if _ == 33 then - ConPrintf("") - end -- prefix removed local ids = v.id:gsub(".+..stat_", "").."|" -- split by non-integer From fd180abbc016867f129a8566220e3a7e6acbc2af Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Fri, 22 May 2026 21:53:55 +0300 Subject: [PATCH 38/42] Fix trade hash generation --- src/Data/ModCharm.lua | 12 +- src/Data/ModCorrupted.lua | 4 +- src/Data/ModFlask.lua | 12 +- src/Data/ModItem.lua | 38 ++-- src/Data/ModItemExclusive.lua | 328 +++++++++++++++++----------------- src/Data/ModJewel.lua | 4 +- src/Data/ModVeiled.lua | 6 +- src/Export/Scripts/mods.lua | 100 +++++++---- src/Export/statdesc.lua | 7 + 9 files changed, 275 insertions(+), 236 deletions(-) diff --git a/src/Data/ModCharm.lua b/src/Data/ModCharm.lua index ec699a6574..9d03df6151 100644 --- a/src/Data/ModCharm.lua +++ b/src/Data/ModCharm.lua @@ -14,12 +14,12 @@ return { ["FlaskExtraCharges4__"] = { type = "Suffix", affix = "of the Bountiful", "(47-54)% increased Charges", statOrder = { 1008 }, level = 47, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(47-54)% increased Charges" }, } }, ["FlaskExtraCharges5"] = { type = "Suffix", affix = "of the Abundant", "(55-62)% increased Charges", statOrder = { 1008 }, level = 62, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(55-62)% increased Charges" }, } }, ["FlaskExtraCharges6"] = { type = "Suffix", affix = "of the Ample", "(63-70)% increased Charges", statOrder = { 1008 }, level = 81, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(63-70)% increased Charges" }, } }, - ["FlaskChargesUsed1"] = { type = "Suffix", affix = "of the Apprentice", "(15-17)% reduced Charges per use", statOrder = { 1006 }, level = 1, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(15-17)% reduced Charges per use" }, } }, - ["FlaskChargesUsed2"] = { type = "Suffix", affix = "of the Practitioner", "(18-20)% reduced Charges per use", statOrder = { 1006 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(18-20)% reduced Charges per use" }, } }, - ["FlaskChargesUsed3__"] = { type = "Suffix", affix = "of the Mixologist", "(21-23)% reduced Charges per use", statOrder = { 1006 }, level = 34, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(21-23)% reduced Charges per use" }, } }, - ["FlaskChargesUsed4__"] = { type = "Suffix", affix = "of the Distiller", "(24-26)% reduced Charges per use", statOrder = { 1006 }, level = 49, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(24-26)% reduced Charges per use" }, } }, - ["FlaskChargesUsed5"] = { type = "Suffix", affix = "of the Brewer", "(27-29)% reduced Charges per use", statOrder = { 1006 }, level = 64, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(27-29)% reduced Charges per use" }, } }, - ["FlaskChargesUsed6"] = { type = "Suffix", affix = "of the Chemist", "(30-32)% reduced Charges per use", statOrder = { 1006 }, level = 83, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(30-32)% reduced Charges per use" }, } }, + ["FlaskChargesUsed1"] = { type = "Suffix", affix = "of the Apprentice", "(15-17)% reduced Charges per use", statOrder = { 1006 }, level = 1, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(15-17)% reduced Charges per use" }, } }, + ["FlaskChargesUsed2"] = { type = "Suffix", affix = "of the Practitioner", "(18-20)% reduced Charges per use", statOrder = { 1006 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(18-20)% reduced Charges per use" }, } }, + ["FlaskChargesUsed3__"] = { type = "Suffix", affix = "of the Mixologist", "(21-23)% reduced Charges per use", statOrder = { 1006 }, level = 34, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(21-23)% reduced Charges per use" }, } }, + ["FlaskChargesUsed4__"] = { type = "Suffix", affix = "of the Distiller", "(24-26)% reduced Charges per use", statOrder = { 1006 }, level = 49, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(24-26)% reduced Charges per use" }, } }, + ["FlaskChargesUsed5"] = { type = "Suffix", affix = "of the Brewer", "(27-29)% reduced Charges per use", statOrder = { 1006 }, level = 64, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(27-29)% reduced Charges per use" }, } }, + ["FlaskChargesUsed6"] = { type = "Suffix", affix = "of the Chemist", "(30-32)% reduced Charges per use", statOrder = { 1006 }, level = 83, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(30-32)% reduced Charges per use" }, } }, ["FlaskChanceRechargeOnKill1"] = { type = "Suffix", affix = "of the Medic", "(21-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 8, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(21-25)% Chance to gain a Charge when you kill an enemy" }, } }, ["FlaskChanceRechargeOnKill2"] = { type = "Suffix", affix = "of the Doctor", "(26-30)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 26, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(26-30)% Chance to gain a Charge when you kill an enemy" }, } }, ["FlaskChanceRechargeOnKill3"] = { type = "Suffix", affix = "of the Surgeon", "(31-35)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 45, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(31-35)% Chance to gain a Charge when you kill an enemy" }, } }, diff --git a/src/Data/ModCorrupted.lua b/src/Data/ModCorrupted.lua index 7c9dded96c..315b8b25de 100644 --- a/src/Data/ModCorrupted.lua +++ b/src/Data/ModCorrupted.lua @@ -71,7 +71,7 @@ return { ["CorruptionLifeFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Life Flasks gain (0.08-0.17) charges per Second", statOrder = { 6451 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.08-0.17) charges per Second" }, } }, ["CorruptionManaFlaskChargeGeneration1"] = { type = "Corrupted", affix = "", "Mana Flasks gain (0.08-0.17) charges per Second", statOrder = { 6452 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.08-0.17) charges per Second" }, } }, ["CorruptionCharmChargeGeneration1"] = { type = "Corrupted", affix = "", "Charms gain (0.08-0.17) charges per Second", statOrder = { 6448 }, level = 1, group = "CharmChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [185580205] = { "Charms gain (0.08-0.17) charges per Second" }, } }, - ["CorruptionLocalIncreasedPhysicalDamagePercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(15-25)% increased Physical Damage" }, } }, + ["CorruptionLocalIncreasedPhysicalDamagePercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(15-25)% increased Physical Damage" }, } }, ["CorruptionSpellDamageOnWeapon1"] = { type = "Corrupted", affix = "", "(20-30)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "wand", "focus", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-30)% increased Spell Damage" }, } }, ["CorruptionSpellDamageOnTwoHandWeapon1"] = { type = "Corrupted", affix = "", "(40-60)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(40-60)% increased Spell Damage" }, } }, ["CorruptionLocalIncreasedSpiritPercent1"] = { type = "Corrupted", affix = "", "(15-25)% increased Spirit", statOrder = { 842 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3984865854] = { "(15-25)% increased Spirit" }, } }, @@ -95,7 +95,7 @@ return { ["CorruptionWeaponElementalDamage1"] = { type = "Corrupted", affix = "", "(20-30)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(20-30)% increased Elemental Damage with Attacks" }, } }, ["CorruptionWeaponElementalDamageTwoHand1"] = { type = "Corrupted", affix = "", "(40-50)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(40-50)% increased Elemental Damage with Attacks" }, } }, ["CorruptionAdditionalArrows1"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 945 }, level = 1, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire an additional Arrow" }, } }, - ["CorruptionAdditionalAmmo1"] = { type = "Corrupted", affix = "", "Loads an additional bolt", statOrder = { 943 }, level = 1, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1039380318] = { "Loads an additional bolt" }, } }, + ["CorruptionAdditionalAmmo1"] = { type = "Corrupted", affix = "", "Loads an additional bolt", statOrder = { 943 }, level = 1, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, ["CorruptionIgniteChanceIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [2968503605] = { "(20-30)% increased Flammability Magnitude" }, } }, ["CorruptionFreezeDamageIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [473429811] = { "(20-30)% increased Freeze Buildup" }, } }, ["CorruptionShockChanceIncrease1"] = { type = "Corrupted", affix = "", "(20-30)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [293638271] = { "(20-30)% increased chance to Shock" }, } }, diff --git a/src/Data/ModFlask.lua b/src/Data/ModFlask.lua index c8a6198b3d..22a5d669c1 100644 --- a/src/Data/ModFlask.lua +++ b/src/Data/ModFlask.lua @@ -14,12 +14,12 @@ return { ["FlaskExtraCharges4__"] = { type = "Suffix", affix = "of the Bountiful", "(47-54)% increased Charges", statOrder = { 1008 }, level = 47, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(47-54)% increased Charges" }, } }, ["FlaskExtraCharges5"] = { type = "Suffix", affix = "of the Abundant", "(55-62)% increased Charges", statOrder = { 1008 }, level = 62, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(55-62)% increased Charges" }, } }, ["FlaskExtraCharges6"] = { type = "Suffix", affix = "of the Ample", "(63-70)% increased Charges", statOrder = { 1008 }, level = 81, group = "FlaskIncreasedMaxCharges", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(63-70)% increased Charges" }, } }, - ["FlaskChargesUsed1"] = { type = "Suffix", affix = "of the Apprentice", "(15-17)% reduced Charges per use", statOrder = { 1006 }, level = 1, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(15-17)% reduced Charges per use" }, } }, - ["FlaskChargesUsed2"] = { type = "Suffix", affix = "of the Practitioner", "(18-20)% reduced Charges per use", statOrder = { 1006 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(18-20)% reduced Charges per use" }, } }, - ["FlaskChargesUsed3__"] = { type = "Suffix", affix = "of the Mixologist", "(21-23)% reduced Charges per use", statOrder = { 1006 }, level = 34, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(21-23)% reduced Charges per use" }, } }, - ["FlaskChargesUsed4__"] = { type = "Suffix", affix = "of the Distiller", "(24-26)% reduced Charges per use", statOrder = { 1006 }, level = 49, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(24-26)% reduced Charges per use" }, } }, - ["FlaskChargesUsed5"] = { type = "Suffix", affix = "of the Brewer", "(27-29)% reduced Charges per use", statOrder = { 1006 }, level = 64, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(27-29)% reduced Charges per use" }, } }, - ["FlaskChargesUsed6"] = { type = "Suffix", affix = "of the Chemist", "(30-32)% reduced Charges per use", statOrder = { 1006 }, level = 83, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(30-32)% reduced Charges per use" }, } }, + ["FlaskChargesUsed1"] = { type = "Suffix", affix = "of the Apprentice", "(15-17)% reduced Charges per use", statOrder = { 1006 }, level = 1, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(15-17)% reduced Charges per use" }, } }, + ["FlaskChargesUsed2"] = { type = "Suffix", affix = "of the Practitioner", "(18-20)% reduced Charges per use", statOrder = { 1006 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(18-20)% reduced Charges per use" }, } }, + ["FlaskChargesUsed3__"] = { type = "Suffix", affix = "of the Mixologist", "(21-23)% reduced Charges per use", statOrder = { 1006 }, level = 34, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(21-23)% reduced Charges per use" }, } }, + ["FlaskChargesUsed4__"] = { type = "Suffix", affix = "of the Distiller", "(24-26)% reduced Charges per use", statOrder = { 1006 }, level = 49, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(24-26)% reduced Charges per use" }, } }, + ["FlaskChargesUsed5"] = { type = "Suffix", affix = "of the Brewer", "(27-29)% reduced Charges per use", statOrder = { 1006 }, level = 64, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(27-29)% reduced Charges per use" }, } }, + ["FlaskChargesUsed6"] = { type = "Suffix", affix = "of the Chemist", "(30-32)% reduced Charges per use", statOrder = { 1006 }, level = 83, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(30-32)% reduced Charges per use" }, } }, ["FlaskChanceRechargeOnKill1"] = { type = "Suffix", affix = "of the Medic", "(21-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 8, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(21-25)% Chance to gain a Charge when you kill an enemy" }, } }, ["FlaskChanceRechargeOnKill2"] = { type = "Suffix", affix = "of the Doctor", "(26-30)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 26, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(26-30)% Chance to gain a Charge when you kill an enemy" }, } }, ["FlaskChanceRechargeOnKill3"] = { type = "Suffix", affix = "of the Surgeon", "(31-35)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 45, group = "FlaskChanceRechargeOnKill", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(31-35)% Chance to gain a Charge when you kill an enemy" }, } }, diff --git a/src/Data/ModItem.lua b/src/Data/ModItem.lua index f212267b68..bf43d94a50 100644 --- a/src/Data/ModItem.lua +++ b/src/Data/ModItem.lua @@ -610,22 +610,22 @@ return { ["NearbyAlliesAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Allies in your Presence deal (1-2) to (41-47) added Attack Lightning Damage", statOrder = { 885 }, level = 60, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-2) to (41-47) added Attack Lightning Damage" }, } }, ["NearbyAlliesAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Allies in your Presence deal (1-3) to (48-59) added Attack Lightning Damage", statOrder = { 885 }, level = 65, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-3) to (48-59) added Attack Lightning Damage" }, } }, ["NearbyAlliesAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Allies in your Presence deal (1-4) to (60-71) added Attack Lightning Damage", statOrder = { 885 }, level = 75, group = "AlliesInPresenceAddedLightningDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal (1-4) to (60-71) added Attack Lightning Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(40-49)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrder = { 821 }, level = 8, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(50-64)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrder = { 821 }, level = 16, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-84)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrder = { 821 }, level = 33, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(85-109)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrder = { 821 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(110-134)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrder = { 821 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(135-154)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrder = { 821 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(155-169)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrder = { 821 }, level = 82, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(170-179)% increased Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(16-20) to Accuracy Rating", statOrder = { 821, 826 }, level = 1, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(15-19)% increased Physical Damage" }, [691932474] = { "+(16-20) to Accuracy Rating" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(21-46) to Accuracy Rating", statOrder = { 821, 826 }, level = 11, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(20-24)% increased Physical Damage" }, [691932474] = { "+(21-46) to Accuracy Rating" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(47-72) to Accuracy Rating", statOrder = { 821, 826 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(25-34)% increased Physical Damage" }, [691932474] = { "+(47-72) to Accuracy Rating" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(73-97) to Accuracy Rating", statOrder = { 821, 826 }, level = 38, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(35-44)% increased Physical Damage" }, [691932474] = { "+(73-97) to Accuracy Rating" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(98-123) to Accuracy Rating", statOrder = { 821, 826 }, level = 54, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(45-54)% increased Physical Damage" }, [691932474] = { "+(98-123) to Accuracy Rating" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(124-149) to Accuracy Rating", statOrder = { 821, 826 }, level = 65, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(55-64)% increased Physical Damage" }, [691932474] = { "+(124-149) to Accuracy Rating" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(150-174) to Accuracy Rating", statOrder = { 821, 826 }, level = 70, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(65-74)% increased Physical Damage" }, [691932474] = { "+(150-174) to Accuracy Rating" }, } }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(175-200) to Accuracy Rating", statOrder = { 821, 826 }, level = 81, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(75-79)% increased Physical Damage" }, [691932474] = { "+(175-200) to Accuracy Rating" }, } }, + ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(40-49)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrder = { 821 }, level = 8, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(50-64)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrder = { 821 }, level = 16, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(65-84)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrder = { 821 }, level = 33, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(85-109)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrder = { 821 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(110-134)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrder = { 821 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(135-154)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrder = { 821 }, level = 75, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(155-169)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrder = { 821 }, level = 82, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(170-179)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(16-20) to Accuracy Rating", statOrder = { 821, 826 }, level = 1, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(16-20) to Accuracy Rating" }, [1509134228] = { "(15-19)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(21-46) to Accuracy Rating", statOrder = { 821, 826 }, level = 11, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(21-46) to Accuracy Rating" }, [1509134228] = { "(20-24)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(47-72) to Accuracy Rating", statOrder = { 821, 826 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(47-72) to Accuracy Rating" }, [1509134228] = { "(25-34)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(73-97) to Accuracy Rating", statOrder = { 821, 826 }, level = 38, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(73-97) to Accuracy Rating" }, [1509134228] = { "(35-44)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(98-123) to Accuracy Rating", statOrder = { 821, 826 }, level = 54, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(98-123) to Accuracy Rating" }, [1509134228] = { "(45-54)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(124-149) to Accuracy Rating", statOrder = { 821, 826 }, level = 65, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(124-149) to Accuracy Rating" }, [1509134228] = { "(55-64)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(150-174) to Accuracy Rating", statOrder = { 821, 826 }, level = 70, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(150-174) to Accuracy Rating" }, [1509134228] = { "(65-74)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(175-200) to Accuracy Rating", statOrder = { 821, 826 }, level = 81, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [691932474] = { "+(175-200) to Accuracy Rating" }, [1509134228] = { "(75-79)% increased Physical Damage" }, } }, ["NearbyAlliesAllDamage1"] = { type = "Prefix", affix = "Coercive", "Allies in your Presence deal (25-34)% increased Damage", statOrder = { 881 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (25-34)% increased Damage" }, } }, ["NearbyAlliesAllDamage2"] = { type = "Prefix", affix = "Agitative", "Allies in your Presence deal (35-44)% increased Damage", statOrder = { 881 }, level = 8, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (35-44)% increased Damage" }, } }, ["NearbyAlliesAllDamage3"] = { type = "Prefix", affix = "Instigative", "Allies in your Presence deal (45-54)% increased Damage", statOrder = { 881 }, level = 16, group = "AlliesInPresenceAllDamage", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal (45-54)% increased Damage" }, } }, @@ -1237,8 +1237,8 @@ return { ["AdditionalArrowChance2"] = { type = "Suffix", affix = "of Splintering", "+(75-100)% Surpassing chance to fire an additional Arrow", statOrder = { 5137 }, level = 55, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(75-100)% Surpassing chance to fire an additional Arrow" }, } }, ["AdditionalArrowChance3"] = { type = "Suffix", affix = "of Shards", "+(125-150)% Surpassing chance to fire an additional Arrow", statOrder = { 5137 }, level = 66, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(125-150)% Surpassing chance to fire an additional Arrow" }, } }, ["AdditionalArrowChance4"] = { type = "Suffix", affix = "of Many", "+(175-200)% Surpassing chance to fire an additional Arrow", statOrder = { 5137 }, level = 82, group = "AdditionalArrowChanceCanExceed100%", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+(175-200)% Surpassing chance to fire an additional Arrow" }, } }, - ["AdditionalAmmo1"] = { type = "Suffix", affix = "of Shelling", "Loads an additional bolt", statOrder = { 943 }, level = 55, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1039380318] = { "Loads an additional bolt" }, } }, - ["AdditionalAmmo2"] = { type = "Suffix", affix = "of Bursting", "Loads 2 additional bolts", statOrder = { 943 }, level = 82, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1039380318] = { "Loads 2 additional bolts" }, } }, + ["AdditionalAmmo1"] = { type = "Suffix", affix = "of Shelling", "Loads an additional bolt", statOrder = { 943 }, level = 55, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, + ["AdditionalAmmo2"] = { type = "Suffix", affix = "of Bursting", "Loads 2 additional bolts", statOrder = { 943 }, level = 82, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads 2 additional bolts" }, } }, ["BeltFlaskLifeRecoveryRate1"] = { type = "Prefix", affix = "Restoring", "(5-10)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(5-10)% increased Flask Life Recovery rate" }, } }, ["BeltFlaskLifeRecoveryRate2"] = { type = "Prefix", affix = "Recovering", "(11-16)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 16, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(11-16)% increased Flask Life Recovery rate" }, } }, ["BeltFlaskLifeRecoveryRate3_"] = { type = "Prefix", affix = "Renewing", "(17-22)% increased Flask Life Recovery rate", statOrder = { 876 }, level = 33, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1, 0 }, modTags = { "flask", "resource", "life" }, tradeHashes = { [51994685] = { "(17-22)% increased Flask Life Recovery rate" }, } }, @@ -1643,7 +1643,7 @@ return { ["SocketedGemsHaveMoreAttackAndCastSpeedEssence1"] = { type = "Suffix", affix = "", "Socketed Gems have 20% more Attack and Cast Speed", statOrder = { 396 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 20% more Attack and Cast Speed" }, } }, ["SocketedGemsHaveMoreAttackAndCastSpeedEssenceNew1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 16% more Attack and Cast Speed", statOrder = { 396 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, tradeHashes = { [346351023] = { "Socketed Gems have 16% more Attack and Cast Speed" }, } }, ["SocketedGemsDealMoreElementalDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Elemental Damage", statOrder = { 399 }, level = 63, group = "SocketedGemsDealMoreElementalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, tradeHashes = { [3835899275] = { "Socketed Gems deal 30% more Elemental Damage" }, } }, - ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "of the Essence", "5% reduced Elemental Damage Taken while stationary", statOrder = { 3879 }, level = 63, group = "ElementalDamageTakenWhileStationary", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [3859593448] = { "5% reduced Elemental Damage Taken while stationary" }, [2936538132] = { "" }, } }, + ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "of the Essence", "5% reduced Elemental Damage Taken while stationary", statOrder = { 3879 }, level = 63, group = "ElementalDamageTakenWhileStationary", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, tradeHashes = { [3859593448] = { "5% reduced Elemental Damage Taken while stationary" }, } }, ["PhysicalDamageTakenAsColdEssence1"] = { type = "Prefix", affix = "Essences", "15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2120 }, level = 63, group = "PhysicalDamageTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, tradeHashes = { [1871056256] = { "15% of Physical Damage from Hits taken as Cold Damage" }, } }, ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { type = "Prefix", affix = "Essences", "Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1604 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1936645603] = { "Gain 10% of Physical Damage as Extra Fire Damage" }, } }, ["FireDamageAsPortionOfPhysicalDamageEssence2"] = { type = "Prefix", affix = "Essences", "Gain 15% of Physical Damage as Extra Fire Damage", statOrder = { 1604 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, tradeHashes = { [1936645603] = { "Gain 15% of Physical Damage as Extra Fire Damage" }, } }, diff --git a/src/Data/ModItemExclusive.lua b/src/Data/ModItemExclusive.lua index 70794c1e5c..65f64190ee 100644 --- a/src/Data/ModItemExclusive.lua +++ b/src/Data/ModItemExclusive.lua @@ -2,7 +2,7 @@ -- Item data (c) Grinding Gear Games return { - ["LocalBaseEvasionRatingAndEnergyShieldPerLevelImplicit"] = { affix = "[DNT-UNUSED] Hand Wraps", "DNT-UNUSED +5 to Evasion Rating per level", statOrder = { 7161 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [259972052] = { "DNT-UNUSED +5 to Evasion Rating per level" }, [1000024308] = { "" }, } }, + ["LocalBaseEvasionRatingAndEnergyShieldPerLevelImplicit"] = { affix = "[DNT-UNUSED] Hand Wraps", "DNT-UNUSED +5 to Evasion Rating per level", statOrder = { 7161 }, level = 1, group = "LocalBaseEvasionAndEnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [259972052] = { "DNT-UNUSED +5 to Evasion Rating per level" }, } }, ["UniqueNearbyAlliesAddedChaosDamage1"] = { affix = "", "Allies in your Presence deal (13-17) to (25-37) added Attack Chaos Damage", statOrder = { 886 }, level = 82, group = "AlliesInPresenceAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [262946222] = { "Allies in your Presence deal (13-17) to (25-37) added Attack Chaos Damage" }, } }, ["UniqueChanceForExertedAttackToNoteReduceCount1"] = { affix = "", "Skills which Empower an Attack have (10-20)% chance to not count that Attack", statOrder = { 5028 }, level = 1, group = "SkillsExertAttacksDoNotCountChance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2538411280] = { "Skills which Empower an Attack have (10-20)% chance to not count that Attack" }, } }, ["UniqueGlobalColdSpellGemsLevel1"] = { affix = "", "+(5-7) to Level of all Cold Spell Skills", statOrder = { 925 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevelWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "caster", "gem" }, tradeHashes = { [2254480358] = { "+(5-7) to Level of all Cold Spell Skills" }, } }, @@ -15,7 +15,7 @@ return { ["UniqueEvasionAppliesToDeflection4"] = { affix = "", "Gain Deflection Rating equal to (40-60)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (40-60)% of Evasion Rating" }, } }, ["UniqueEvasionAppliesToDeflection5"] = { affix = "", "Gain Deflection Rating equal to (24-32)% of Evasion Rating", statOrder = { 964 }, level = 1, group = "EvasionAppliesToDeflection", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [3033371881] = { "Gain Deflection Rating equal to (24-32)% of Evasion Rating" }, } }, ["UniqueDeflectDamagePrevented1"] = { affix = "", "-(12-6)% to amount of Damage Prevented by Deflection", statOrder = { 4541 }, level = 1, group = "DeflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3552135623] = { "-(12-6)% to amount of Damage Prevented by Deflection" }, } }, - ["UniqueAdditionalAmmo1"] = { affix = "", "Loads an additional bolt", statOrder = { 943 }, level = 1, group = "AdditionalAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1039380318] = { "Loads an additional bolt" }, } }, + ["UniqueAdditionalAmmo1"] = { affix = "", "Loads an additional bolt", statOrder = { 943 }, level = 1, group = "AdditionalAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, ["UniqueFlaskIncreasedRecoverySpeed1"] = { affix = "", "50% reduced Recovery rate", statOrder = { 913 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [173226756] = { "50% reduced Recovery rate" }, } }, ["UniqueFlaskRecoveryAmount1"] = { affix = "", "(70-80)% reduced Amount Recovered", statOrder = { 905 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [700317374] = { "(70-80)% reduced Amount Recovered" }, } }, ["QuiverImplicitPhysicalDamage1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks", statOrder = { 843 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3032590688] = { "Adds 1 to 3 Physical Damage to Attacks" }, } }, @@ -24,7 +24,7 @@ return { ["QuiverImplicitIncreasedAccuracy1"] = { affix = "", "(20-30)% increased Accuracy Rating", statOrder = { 1268 }, level = 30, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "(20-30)% increased Accuracy Rating" }, } }, ["QuiverImplicitStunThresholdReduction1"] = { affix = "", "(25-40)% increased Stun Buildup", statOrder = { 984 }, level = 40, group = "StunDamageIncrease", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [239367161] = { "(25-40)% increased Stun Buildup" }, } }, ["QuiverImplicitChanceToPoison1"] = { affix = "", "(20-30)% chance to Poison on Hit with Attacks", statOrder = { 2791 }, level = 49, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3954735777] = { "(20-30)% chance to Poison on Hit with Attacks" }, } }, - ["QuiverImplicitChanceToBleed1"] = { affix = "", "Attacks have (20-30)% chance to cause Bleeding", statOrder = { 2159 }, level = 56, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have (20-30)% chance to cause Bleeding" }, } }, + ["QuiverImplicitChanceToBleed1"] = { affix = "", "Attacks have (20-30)% chance to cause Bleeding", statOrder = { 2159 }, level = 56, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have (20-30)% chance to cause Bleeding" }, } }, ["QuiverImplicitIncreasedAttackSpeed1"] = { affix = "", "(7-10)% increased Attack Speed", statOrder = { 941 }, level = 64, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [681332047] = { "(7-10)% increased Attack Speed" }, } }, ["QuiverImplicitArrowAdditionalPierce1"] = { affix = "", "100% chance to Pierce an Enemy", statOrder = { 1001 }, level = 69, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2321178454] = { "100% chance to Pierce an Enemy" }, } }, ["QuiverImplicitArrowSpeed1"] = { affix = "", "(20-30)% increased Arrow Speed", statOrder = { 1479 }, level = 75, group = "ArrowSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [1207554355] = { "(20-30)% increased Arrow Speed" }, } }, @@ -129,10 +129,10 @@ return { ["MaceImplicitEnemiesExplodeOnCrit1"] = { affix = "", "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage", statOrder = { 7235 }, level = 1, group = "EnemiesExplodeOnCrit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1541903247] = { "Causes Enemies to Explode on Critical kill, for 10% of their Life as Physical Damage" }, } }, ["MaceImplicitLocalCrushOnHit1"] = { affix = "", "Crushes Enemies on Hit", statOrder = { 7184 }, level = 1, group = "LocalCrushOnHit", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1503146834] = { "Crushes Enemies on Hit" }, } }, ["MaceImplicitWarcryExert1"] = { affix = "", "Warcries Empower an additional Attack", statOrder = { 9887 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1434716233] = { "Warcries Empower an additional Attack" }, } }, - ["TalismanImplicitFireDamageAndFlammability1"] = { affix = "", "(50-80)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "WeaponImplicitDamageIsFireAndFlammability", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(50-80)% increased Flammability Magnitude" }, [611360779] = { "" }, } }, + ["TalismanImplicitFireDamageAndFlammability1"] = { affix = "", "(50-80)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "WeaponImplicitDamageIsFireAndFlammability", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2968503605] = { "(50-80)% increased Flammability Magnitude" }, } }, ["TalismanImplicitMinionDamage1"] = { affix = "", "Minions deal (30-50)% increased Damage", statOrder = { 1646 }, level = 1, group = "WeaponImplicitMinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (30-50)% increased Damage" }, } }, ["TalismanImplicitRageOnMeleeHit1"] = { affix = "", "Gain (2-4) Rage on Melee Hit", statOrder = { 6431 }, level = 1, group = "WeaponImplicitRageOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2709367754] = { "Gain (2-4) Rage on Melee Hit" }, } }, - ["TalismanImplicitLightningDamageAndShockMagnitude1"] = { affix = "", "(15-25)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "WeaponImplicitDamageIsLightningAndShockMagnitude", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(15-25)% increased Magnitude of Shock you inflict" }, [949592735] = { "" }, } }, + ["TalismanImplicitLightningDamageAndShockMagnitude1"] = { affix = "", "(15-25)% increased Magnitude of Shock you inflict", statOrder = { 9248 }, level = 1, group = "WeaponImplicitDamageIsLightningAndShockMagnitude", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [2527686725] = { "(15-25)% increased Magnitude of Shock you inflict" }, } }, ["TalismanImplicitMaximumRage1"] = { affix = "", "+(8-12) to Maximum Rage", statOrder = { 9032 }, level = 1, group = "WeaponImplicitMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1181501418] = { "+(8-12) to Maximum Rage" }, } }, ["TalismanImplicitMarkEffect1"] = { affix = "", "(10-20)% increased Effect of your Mark Skills", statOrder = { 2268 }, level = 1, group = "WeaponImplicitMarkEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [712554801] = { "(10-20)% increased Effect of your Mark Skills" }, } }, ["TalismanImplicitAdditionalBlock1"] = { affix = "", "+(10-15)% to Block chance", statOrder = { 2130 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1702195217] = { "+(10-15)% to Block chance" }, } }, @@ -157,7 +157,7 @@ return { ["BowImplicitAdditionalArrows1"] = { affix = "", "+50% Surpassing chance to fire an additional Arrow", statOrder = { 5137 }, level = 1, group = "AdditionalArrowChanceCanExceed100%", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2463230181] = { "+50% Surpassing chance to fire an additional Arrow" }, } }, ["BowImplicitProjectileAttackRange1"] = { affix = "", "50% reduced Projectile Range", statOrder = { 8966 }, level = 1, group = "LocalIncreasedProjectileAttackRange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3398402065] = { "50% reduced Projectile Range" }, } }, ["CrossbowImplicitBoltSpeed1"] = { affix = "", "(20-30)% increased Bolt Speed", statOrder = { 1480 }, level = 1, group = "BoltSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1803308202] = { "(20-30)% increased Bolt Speed" }, } }, - ["CrossbowImplicitAdditionalAmmo1"] = { affix = "", "Loads an additional bolt", statOrder = { 943 }, level = 1, group = "AdditionalAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1039380318] = { "Loads an additional bolt" }, } }, + ["CrossbowImplicitAdditionalAmmo1"] = { affix = "", "Loads an additional bolt", statOrder = { 943 }, level = 1, group = "AdditionalAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1967051901] = { "Loads an additional bolt" }, } }, ["CrossbowImplicitGrenadeProjectiles1"] = { affix = "", "Grenade Skills Fire an additional Projectile", statOrder = { 6501 }, level = 1, group = "GrenadeProjectiles", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1980802737] = { "Grenade Skills Fire an additional Projectile" }, } }, ["CrossbowImplicitChanceToPierce1"] = { affix = "", "(20-30)% chance to Pierce an Enemy", statOrder = { 1001 }, level = 1, group = "ChanceToPierce", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2321178454] = { "(20-30)% chance to Pierce an Enemy" }, } }, ["CrossbowImplicitAdditionalBallistaTotem1"] = { affix = "", "+1 to maximum number of Summoned Ballista Totems", statOrder = { 4058 }, level = 1, group = "AdditionalBallistaTotem", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1823942939] = { "+1 to maximum number of Summoned Ballista Totems" }, } }, @@ -974,25 +974,25 @@ return { ["UniqueNearbyAlliesAddedColdDamage1"] = { affix = "", "Allies in your Presence deal (15-23) to (28-35) added Attack Cold Damage", statOrder = { 884 }, level = 82, group = "AlliesInPresenceAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [2347036682] = { "Allies in your Presence deal (15-23) to (28-35) added Attack Cold Damage" }, } }, ["UniqueNearbyAlliesAddedLightningDamage1"] = { affix = "", "Allies in your Presence deal 1 to (56-70) added Attack Lightning Damage", statOrder = { 885 }, level = 82, group = "AlliesInPresenceAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2854751904] = { "Allies in your Presence deal 1 to (56-70) added Attack Lightning Damage" }, } }, ["UniqueIncreasedPhysicalDamagePercent1"] = { affix = "", "(10-20)% increased Global Physical Damage", statOrder = { 1122 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [1310194496] = { "(10-20)% increased Global Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent1"] = { affix = "", "(200-300)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(200-300)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent2"] = { affix = "", "(100-150)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-150)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent3"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-160)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent4"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-120)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent5"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-120)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent6"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-120)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent7"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(40-60)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent8"] = { affix = "", "(100-150)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-150)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent9"] = { affix = "", "(300-350)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(300-350)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent10"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-120)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent11"] = { affix = "", "(250-350)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(250-350)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent12"] = { affix = "", "(150-200)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(150-200)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent13"] = { affix = "", "(120-150)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(120-150)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent14"] = { affix = "", "(150-240)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(150-240)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent16"] = { affix = "", "(600-700)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(600-700)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent17"] = { affix = "", "(70-100)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(70-100)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent18"] = { affix = "", "(90-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(90-120)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent19"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(80-120)% increased Physical Damage" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent20"] = { affix = "", "(100-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(100-120)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent1"] = { affix = "", "(200-300)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(200-300)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent2"] = { affix = "", "(100-150)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(100-150)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent3"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(120-160)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent4"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(80-120)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent5"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(80-120)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent6"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(80-120)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent7"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(40-60)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent8"] = { affix = "", "(100-150)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(100-150)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent9"] = { affix = "", "(300-350)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(300-350)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent10"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(80-120)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent11"] = { affix = "", "(250-350)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(250-350)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent12"] = { affix = "", "(150-200)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(150-200)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent13"] = { affix = "", "(120-150)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(120-150)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent14"] = { affix = "", "(150-240)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(150-240)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent16"] = { affix = "", "(600-700)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(600-700)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent17"] = { affix = "", "(70-100)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(70-100)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent18"] = { affix = "", "(90-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(90-120)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent19"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(80-120)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent20"] = { affix = "", "(100-120)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(100-120)% increased Physical Damage" }, } }, ["UniqueNearbyAlliesAllDamage1"] = { affix = "", "Allies in your Presence deal 50% increased Damage", statOrder = { 881 }, level = 1, group = "AlliesInPresenceAllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [1798257884] = { "Allies in your Presence deal 50% increased Damage" }, } }, ["UniqueSpellDamageOnWeapon1"] = { affix = "", "(20-40)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(20-40)% increased Spell Damage" }, } }, ["UniqueSpellDamageOnWeapon2"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2974417149] = { "(80-100)% increased Spell Damage" }, } }, @@ -1416,8 +1416,8 @@ return { ["UniqueMinionDamage2"] = { affix = "", "Minions deal (80-100)% increased Damage", statOrder = { 1646 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [1589917703] = { "Minions deal (80-100)% increased Damage" }, } }, ["UniqueFlaskChargesAddedPercent1"] = { affix = "", "(30-40)% increased Charges gained", statOrder = { 1005 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3196823591] = { "(30-40)% increased Charges gained" }, } }, ["UniqueFlaskExtraCharges1"] = { affix = "", "(30-40)% increased Charges", statOrder = { 1008 }, level = 1, group = "FlaskIncreasedMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1366840608] = { "(30-40)% increased Charges" }, } }, - ["UniqueFlaskChargesUsed1"] = { affix = "", "(100-150)% increased Charges per use", statOrder = { 1006 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(100-150)% increased Charges per use" }, } }, - ["UniqueFlaskChargesUsed2"] = { affix = "", "(10-15)% reduced Charges per use", statOrder = { 1006 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(10-15)% reduced Charges per use" }, } }, + ["UniqueFlaskChargesUsed1"] = { affix = "", "(100-150)% increased Charges per use", statOrder = { 1006 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(100-150)% increased Charges per use" }, } }, + ["UniqueFlaskChargesUsed2"] = { affix = "", "(10-15)% reduced Charges per use", statOrder = { 1006 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(10-15)% reduced Charges per use" }, } }, ["UniqueFlaskFullInstantRecovery1"] = { affix = "", "Instant Recovery", statOrder = { 911 }, level = 1, group = "FlaskFullInstantRecovery", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1526933524] = { "Instant Recovery" }, [700317374] = { "" }, } }, ["UniqueFlaskChanceRechargeOnKill1"] = { affix = "", "(20-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 1, group = "FlaskChanceRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(20-25)% Chance to gain a Charge when you kill an enemy" }, } }, ["UniqueFlaskChanceRechargeOnKill2"] = { affix = "", "(20-25)% Chance to gain a Charge when you kill an enemy", statOrder = { 1004 }, level = 1, group = "FlaskChanceRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [828533480] = { "(20-25)% Chance to gain a Charge when you kill an enemy" }, } }, @@ -1434,10 +1434,10 @@ return { ["UniqueAttackerTakesColdDamage1"] = { affix = "", "25 to 35 Cold Thorns damage", statOrder = { 9650 }, level = 1, group = "ThornsColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [1515531208] = { "25 to 35 Cold Thorns damage" }, } }, ["UniquePhysicalDamageTakenAsFire1"] = { affix = "", "50% of Physical Damage taken as Fire Damage", statOrder = { 8895 }, level = 1, group = "PhysicalHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004468512] = { "50% of Physical Damage taken as Fire Damage" }, } }, ["UniqueAllAttributesPerLevel1"] = { affix = "", "-1 to all Attributes per Level", statOrder = { 7137 }, level = 1, group = "LocalAllAttributesPerLevel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2333085568] = { "-1 to all Attributes per Level" }, } }, - ["UniqueLocalNoWeaponPhysicalDamage1"] = { affix = "", "No Physical Damage", statOrder = { 821 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, - ["UniqueLocalNoWeaponPhysicalDamage2"] = { affix = "", "No Physical Damage", statOrder = { 821 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, - ["UniqueLocalNoWeaponPhysicalDamage3"] = { affix = "", "No Physical Damage", statOrder = { 821 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, - ["UniqueLocalNoWeaponPhysicalDamage4"] = { affix = "", "No Physical Damage", statOrder = { 821 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [385756972] = { "No Physical Damage" }, } }, + ["UniqueLocalNoWeaponPhysicalDamage1"] = { affix = "", "No Physical Damage", statOrder = { 821 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, + ["UniqueLocalNoWeaponPhysicalDamage2"] = { affix = "", "No Physical Damage", statOrder = { 821 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, + ["UniqueLocalNoWeaponPhysicalDamage3"] = { affix = "", "No Physical Damage", statOrder = { 821 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, + ["UniqueLocalNoWeaponPhysicalDamage4"] = { affix = "", "No Physical Damage", statOrder = { 821 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "No Physical Damage" }, } }, ["UniqueLocalFreezeOnFullLife1"] = { affix = "", "Freezes Enemies that are on Full Life", statOrder = { 7144 }, level = 1, group = "LocalFreezeOnFullLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2260055669] = { "Freezes Enemies that are on Full Life" }, } }, ["UniqueAttackDamageOnLowLife1"] = { affix = "", "100% increased Attack Damage while on Low Life", statOrder = { 4397 }, level = 1, group = "AttackDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4246007234] = { "100% increased Attack Damage while on Low Life" }, } }, ["UniqueAttackDamageNotOnLowMana1"] = { affix = "", "100% increased Attack Damage while not on Low Mana", statOrder = { 4401 }, level = 1, group = "AttackDamageNotOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2462683918] = { "100% increased Attack Damage while not on Low Mana" }, } }, @@ -1490,7 +1490,7 @@ return { ["UniqueIgniteEffect1"] = { affix = "", "50% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3791899485] = { "50% increased Ignite Magnitude" }, } }, ["UniqueIgniteEffect2"] = { affix = "", "100% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3791899485] = { "100% increased Ignite Magnitude" }, } }, ["UniqueIgniteEffect3"] = { affix = "", "(10-20)% increased Ignite Magnitude", statOrder = { 1009 }, level = 1, group = "IgniteEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3791899485] = { "(10-20)% increased Ignite Magnitude" }, } }, - ["UniqueEnemiesIgniteChaosDamage1"] = { affix = "", "Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite", statOrder = { 5973 }, level = 1, group = "EnemiesIgniteChaosDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2714810050] = { "Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite" }, [42490373] = { "" }, } }, + ["UniqueEnemiesIgniteChaosDamage1"] = { affix = "", "Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite", statOrder = { 5973 }, level = 1, group = "EnemiesIgniteChaosDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [2714810050] = { "Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite" }, } }, ["UniqueLocalWeaponRangeIncrease1"] = { affix = "", "20% increased Melee Strike Range with this weapon", statOrder = { 7131 }, level = 1, group = "LocalWeaponRangeIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [548198834] = { "20% increased Melee Strike Range with this weapon" }, } }, ["UniqueDamageBlockedRecoupedAsMana1"] = { affix = "", "Damage Blocked is Recouped as Mana", statOrder = { 5569 }, level = 1, group = "DamageBlockedRecoupedAsMana", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2875218423] = { "Damage Blocked is Recouped as Mana" }, } }, ["UniqueAllDamage1"] = { affix = "", "25% reduced Damage", statOrder = { 1087 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2154246560] = { "25% reduced Damage" }, } }, @@ -1741,7 +1741,7 @@ return { ["UniqueGainMissingLifeBeforeHit1"] = { affix = "", "Recover (20-30)% of Missing Life before being Hit by an Enemy", statOrder = { 8559 }, level = 1, group = "GainMissingLifeBeforeHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1990472846] = { "Recover (20-30)% of Missing Life before being Hit by an Enemy" }, } }, ["UniqueAccuracyUnaffectedDistance1"] = { affix = "", "You have no Accuracy Penalty at Distance", statOrder = { 5682 }, level = 1, group = "AccuracyUnaffectedDistance", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3070990531] = { "You have no Accuracy Penalty at Distance" }, } }, ["UniqueAccuracyOver100"] = { affix = "", "Chance to Hit with Attacks can exceed 100%", "Gain additional Critical Hit Chance equal to (10-25)% of excess chance to Hit with Attacks", statOrder = { 6307, 6307.1 }, level = 1, group = "AccuracyOver100", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2800049475] = { "Chance to Hit with Attacks can exceed 100%", "Gain additional Critical Hit Chance equal to (10-25)% of excess chance to Hit with Attacks" }, } }, - ["UniqueRepeatNoEnemyInPresence"] = { affix = "", "Barrageable Attacks with this Bow Repeat +2 times if no enemies are in your Presence", statOrder = { 3989 }, level = 1, group = "UniqueRepeatNoEnemyInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2306588612] = { "Barrageable Attacks with this Bow Repeat +2 times if no enemies are in your Presence" }, [2105151798] = { "" }, } }, + ["UniqueRepeatNoEnemyInPresence"] = { affix = "", "Barrageable Attacks with this Bow Repeat +2 times if no enemies are in your Presence", statOrder = { 3989 }, level = 1, group = "UniqueRepeatNoEnemyInPresence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2306588612] = { "Barrageable Attacks with this Bow Repeat +2 times if no enemies are in your Presence" }, } }, ["UniqueSkillEffectDuration1"] = { affix = "", "(30-50)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(30-50)% increased Skill Effect Duration" }, } }, ["UniqueSkillEffectDuration2"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1572 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3377888098] = { "(10-15)% increased Skill Effect Duration" }, } }, ["UniqueGlobalCooldownRecovery1"] = { affix = "", "(30-50)% increased Cooldown Recovery Rate", statOrder = { 4539 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1004011302] = { "(30-50)% increased Cooldown Recovery Rate" }, } }, @@ -1866,7 +1866,7 @@ return { ["UniqueFlaskRecoverAllMana1"] = { affix = "", "Recover all Mana when Used", statOrder = { 7363 }, level = 1, group = "FlaskRecoverAllMana", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1002973905] = { "Recover all Mana when Used" }, } }, ["UniqueFlaskDealChaosDamageNova1"] = { affix = "", "Every 3 seconds during Effect, deal 100% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres", statOrder = { 7362 }, level = 1, group = "FlaskDealChaosDamageNova", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos" }, tradeHashes = { [1910039112] = { "Every 3 seconds during Effect, deal 100% of Mana spent in those seconds as Chaos Damage to Enemies within 3 metres" }, } }, ["UniqueFlaskTakeDamageWhenEnds1"] = { affix = "", "Deals 25% of current Mana as Chaos Damage to you when Effect ends", statOrder = { 7364 }, level = 1, group = "FlaskTakeDamageWhenEnds", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3311259821] = { "Deals 25% of current Mana as Chaos Damage to you when Effect ends" }, } }, - ["UniqueFlaskEffectNotRemovedOnFullMana1"] = { affix = "", "Effect is not removed when Unreserved Mana is Filled", "(200-250)% increased Duration", statOrder = { 629, 907 }, level = 1, group = "FlaskEffectNotRemovedOnFullMana", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [156096868] = { "(200-250)% increased Duration" }, [3969608626] = { "Effect is not removed when Unreserved Mana is Filled" }, } }, + ["UniqueFlaskEffectNotRemovedOnFullMana1"] = { affix = "", "Effect is not removed when Unreserved Mana is Filled", "(200-250)% increased Duration", statOrder = { 629, 907 }, level = 1, group = "FlaskEffectNotRemovedOnFullMana", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, tradeHashes = { [1256719186] = { "(200-250)% increased Duration" }, [3969608626] = { "Effect is not removed when Unreserved Mana is Filled" }, } }, ["UniqueTriggersRefundEnergySpent1"] = { affix = "", "Trigger skills refund half of Energy spent", statOrder = { 9709 }, level = 1, group = "TriggersRefundEnergySpent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [599320227] = { "Trigger skills refund half of Energy spent" }, } }, ["UniqueIncreasedRingBonuses1"] = { affix = "", "(40-80)% increased bonuses gained from Equipped Rings", statOrder = { 6046 }, level = 1, group = "IncreasedRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2793222406] = { "(40-80)% increased bonuses gained from Equipped Rings" }, } }, ["UniqueIncreasedLeftRingBonuses1"] = { affix = "", "(20-30)% increased bonuses gained from left Equipped Ring", statOrder = { 6044 }, level = 1, group = "IncreasedLeftRingBonuses", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [513747733] = { "(20-30)% increased bonuses gained from left Equipped Ring" }, } }, @@ -1991,7 +1991,7 @@ return { ["UniqueNonChannellingSpellsDoubleManaAndCrit1"] = { affix = "", "Non-Channelling Spells have 25% chance to cost Double Mana and Critically Hit", statOrder = { 8654 }, level = 1, group = "NonChannellingSpellsDoubleManaAndCrit", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "caster", "critical" }, tradeHashes = { [2758035461] = { "Non-Channelling Spells have 25% chance to cost Double Mana and Critically Hit" }, } }, ["UniqueBlockChanceProjectiles1"] = { affix = "", "100% increased Block chance against Projectiles", statOrder = { 4789 }, level = 1, group = "BlockChanceProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3583542124] = { "100% increased Block chance against Projectiles" }, } }, ["UniqueEnfeebleOnBlockChance1"] = { affix = "", "Curse Enemies with Enfeeble on Block", statOrder = { 5538 }, level = 1, group = "EnfeebleOnBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, tradeHashes = { [3830953767] = { "Curse Enemies with Enfeeble on Block" }, } }, - ["UniqueParriedCausesSpellDamageTaken1"] = { affix = "", "Parried enemies take more Spell Damage instead of more Attack Damage", statOrder = { 8795 }, level = 1, group = "ParriedCausesSpellDamageTaken", weightKey = { }, weightVal = { }, modTags = { "block", "caster" }, tradeHashes = { [3488640354] = { "Parried enemies take more Spell Damage instead of more Attack Damage" }, [2601283428] = { "" }, } }, + ["UniqueParriedCausesSpellDamageTaken1"] = { affix = "", "Parried enemies take more Spell Damage instead of more Attack Damage", statOrder = { 8795 }, level = 1, group = "ParriedCausesSpellDamageTaken", weightKey = { }, weightVal = { }, modTags = { "block", "caster" }, tradeHashes = { [3488640354] = { "Parried enemies take more Spell Damage instead of more Attack Damage" }, } }, ["UniqueParryConvertToCold1"] = { affix = "", "100% of Parry Physical Damage Converted to Cold Damage", statOrder = { 8806 }, level = 1, group = "UniqueParryConvertToCold1", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold" }, tradeHashes = { [2089152298] = { "100% of Parry Physical Damage Converted to Cold Damage" }, } }, ["UniqueParryStunModifiersApplyToFreeze1"] = { affix = "", "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry", statOrder = { 8804 }, level = 1, group = "UniqueParryStunModifiersApplyToFreeze1", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "cold", "ailment" }, tradeHashes = { [3201111383] = { "Modifiers to Stun Buildup apply to Freeze Buildup instead for Parry" }, } }, ["UniqueIncreasedAccuracyPercent1"] = { affix = "", "20% increased Accuracy Rating", statOrder = { 1268 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [624954515] = { "20% increased Accuracy Rating" }, } }, @@ -2006,8 +2006,8 @@ return { ["UniqueStrengthInherentBonusChange1"] = { affix = "", "Inherent bonus of Strength grants +5 to Accuracy Rating per Strength instead", statOrder = { 1683 }, level = 1, group = "StrengthInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1602694371] = { "Inherent bonus of Strength grants +5 to Accuracy Rating per Strength instead" }, } }, ["UniqueDexterityInherentBonusChange1"] = { affix = "", "Inherent bonus of Dexterity grants +2 to Mana per Dexterity instead", statOrder = { 1684 }, level = 1, group = "DexterityInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [597008938] = { "Inherent bonus of Dexterity grants +2 to Mana per Dexterity instead" }, } }, ["UniqueIntelligenceInherentBonusChange1"] = { affix = "", "Inherent bonus of Intelligence grants +2 to Life per Intelligence instead", statOrder = { 1685 }, level = 1, group = "IntelligenceInherentBonusChange", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1405948943] = { "Inherent bonus of Intelligence grants +2 to Life per Intelligence instead" }, } }, - ["UniqueApplyCorruptedBloodOnBlock1"] = { affix = "", "Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of", "your maximum Life as Physical damage per second", statOrder = { 9777, 9777.1 }, level = 1, group = "ApplyCorruptedBloodOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical" }, tradeHashes = { [1121891728] = { "" }, [122712158] = { "" }, [2131149029] = { "" }, } }, - ["UniqueBowDamageFromLifeFlaskCharges1"] = { affix = "", "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to (5-10)% of Flask's Life Recovery amount", statOrder = { 5372 }, level = 1, group = "BowDamageFromLifeFlaskCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [640490725] = { "Bow Attacks consume 0% of your maximum Life Flask Charges if possible to deal added Physical damage equal to (5-10)% of Flask's Life Recovery amount" }, [3203212728] = { "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to 0% of Flask's Life Recovery amount" }, } }, + ["UniqueApplyCorruptedBloodOnBlock1"] = { affix = "", "Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of", "your maximum Life as Physical damage per second", statOrder = { 9777, 9777.1 }, level = 1, group = "ApplyCorruptedBloodOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical" }, tradeHashes = { [1695767482] = { "Inflict Corrupted Blood for 5 seconds on Block, dealing 50% of", "your maximum Life as Physical damage per second" }, } }, + ["UniqueBowDamageFromLifeFlaskCharges1"] = { affix = "", "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to (5-10)% of Flask's Life Recovery amount", statOrder = { 5372 }, level = 1, group = "BowDamageFromLifeFlaskCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3893788785] = { "Bow Attacks consume 10% of your maximum Life Flask Charges if possible to deal added Physical damage equal to (5-10)% of Flask's Life Recovery amount" }, } }, ["UniqueImpaleOnCriticalHit1"] = { affix = "", "Critical Hits inflict Impale", statOrder = { 5427 }, level = 1, group = "ImpaleOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, tradeHashes = { [3058238353] = { "Critical Hits inflict Impale" }, } }, ["UniqueCriticalsCannotConsumeImpale1"] = { affix = "", "Critical Hits cannot Extract Impale", statOrder = { 5428 }, level = 1, group = "CriticalsCannotConsumeImpale", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3414998042] = { "Critical Hits cannot Extract Impale" }, } }, ["UniqueCannotRecoverAboveLowLifeExceptFlasks1"] = { affix = "", "Life Recovery other than Flasks cannot Recover Life to above Low Life", statOrder = { 4944 }, level = 1, group = "CannotRecoverAboveLowLifeExceptFlasks", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [451403019] = { "Life Recovery other than Flasks cannot Recover Life to above Low Life" }, } }, @@ -2030,7 +2030,7 @@ return { ["UniqueLocalArmourBreakOnDamage1"] = { affix = "", "Breaks Armour equal to 40% of damage from Hits with this weapon", statOrder = { 7151 }, level = 1, group = "LocalArmourBreakOnDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [949573361] = { "Breaks Armour equal to 40% of damage from Hits with this weapon" }, } }, ["UniqueParriedDebuffDuration1"] = { affix = "", "50% increased Parried Debuff Duration", statOrder = { 8808 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3401186585] = { "50% increased Parried Debuff Duration" }, } }, ["UniqueParriedDebuffDuration2"] = { affix = "", "100% increased Parried Debuff Duration", statOrder = { 8808 }, level = 1, group = "ParriedDebuffDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3401186585] = { "100% increased Parried Debuff Duration" }, } }, - ["UniqueProjectileParryInfiniteDistance1"] = { affix = "", "Infinite Parry Range", statOrder = { 6885 }, level = 1, group = "ProjectileParryInfiniteDistance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1076031760] = { "Infinite Parry Range" }, [2601283428] = { "" }, } }, + ["UniqueProjectileParryInfiniteDistance1"] = { affix = "", "Infinite Parry Range", statOrder = { 6885 }, level = 1, group = "ProjectileParryInfiniteDistance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [1076031760] = { "Infinite Parry Range" }, } }, ["UniqueLocalIncreasedProjectileSpeed1"] = { affix = "", "(20-30)% increased Projectile Speed with this Weapon", statOrder = { 7335 }, level = 1, group = "LocalIncreasedProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [535217483] = { "(20-30)% increased Projectile Speed with this Weapon" }, } }, ["UniqueLifeFlasksApplyToMinions1"] = { affix = "", "Your Life Flask also applies to your Minions", statOrder = { 1845 }, level = 30, group = "LifeFlasksApplyToMinions", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [2397460217] = { "Your Life Flask also applies to your Minions" }, } }, ["MinionsCannotDieWhileAffectedByYourLifeFlasks1"] = { affix = "", "Minions cannot Die while affected by a Life Flask", statOrder = { 1846 }, level = 30, group = "MinionsCannotDieWhileFlasked", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [4046380260] = { "Minions cannot Die while affected by a Life Flask" }, } }, @@ -2044,7 +2044,7 @@ return { ["UniquePoisonDuration1"] = { affix = "", "(10-20)% increased Poison Duration", statOrder = { 2786 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(10-20)% increased Poison Duration" }, } }, ["UniqueIgniteEffectAgainstFrozen1"] = { affix = "", "(80-100)% increased Magnitude of Ignite against Frozen enemies", statOrder = { 6815 }, level = 1, group = "IgniteEffectAgainstFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [3618434982] = { "(80-100)% increased Magnitude of Ignite against Frozen enemies" }, } }, ["UniqueFreezeDamageIncreaseAgainstIgnited1"] = { affix = "", "(60-80)% increased Freeze Buildup against Ignited enemies", statOrder = { 6746 }, level = 1, group = "FreezeDamageIncreaseAgainstIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3751467747] = { "(60-80)% increased Freeze Buildup against Ignited enemies" }, } }, - ["UniqueColdFireSurgeOnReload"] = { affix = "", "When you reload, triggers Gemini Surge to alternately", "gain (2-6) Cold Surges or (2-6) Fire Surges", statOrder = { 6293, 6293.1 }, level = 1, group = "ColdFireSurgeOnReload", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [638507955] = { "When you reload, triggers Gemini Surge to alternately", "gain 0 Cold Surges or (2-6) Fire Surges" }, [3378141995] = { "When you reload, triggers Gemini Surge to alternately", "gain (2-6) Cold Surges or 0 Fire Surges" }, } }, + ["UniqueColdFireSurgeOnReload"] = { affix = "", "When you reload, triggers Gemini Surge to alternately", "gain (2-6) Cold Surges or (2-6) Fire Surges", statOrder = { 6293, 6293.1 }, level = 1, group = "ColdFireSurgeOnReload", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, tradeHashes = { [331648983] = { "When you reload, triggers Gemini Surge to alternately", "gain (2-6) Cold Surges or (2-6) Fire Surges" }, } }, ["UniqueLocalAlwaysMinimumOrMaximum1"] = { affix = "", "Rolls only the minimum or maximum Damage value for each Damage Type", statOrder = { 7190 }, level = 1, group = "LocalAlwaysMinimumOrMaximum", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3108672983] = { "Rolls only the minimum or maximum Damage value for each Damage Type" }, } }, ["UniqueElementalPenetrationBelowZero1"] = { affix = "", "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%", statOrder = { 5889 }, level = 1, group = "ElementalPenetrationBelowZero", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2890792988] = { "Your Hits can Penetrate Elemental Resistances down to a minimum of -50%" }, } }, ["UniqueElementalPenetration1"] = { affix = "", "Damage Penetrates 10% Elemental Resistances", statOrder = { 2612 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 10% Elemental Resistances" }, } }, @@ -2074,7 +2074,7 @@ return { ["UniqueCharmDoubleArmourEffect1"] = { affix = "", "Defend with 200% of Armour during effect", statOrder = { 5231 }, level = 1, group = "CharmDoubleArmourEffect", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [3138344128] = { "Defend with 200% of Armour during effect" }, } }, ["UniqueCharmOnslaughtDuringEffect1"] = { affix = "", "Grants Onslaught during effect", statOrder = { 5237 }, level = 1, group = "CharmOnslaughtDuringEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [618665892] = { "Grants Onslaught during effect" }, } }, ["UniqueCharmStartEnergyShieldRecharge1"] = { affix = "", "Energy Shield Recharge starts on use", statOrder = { 5236 }, level = 1, group = "CharmStartEnergyShieldRecharge", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [1056492907] = { "Energy Shield Recharge starts on use" }, } }, - ["UniqueCharmCreateConsecratedGround1"] = { affix = "", "Creates Consecrated Ground on use", statOrder = { 5230 }, level = 1, group = "CharmCreateConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3164927006] = { "" }, [444950360] = { "" }, [3849649145] = { "Creates Consecrated Ground on use" }, } }, + ["UniqueCharmCreateConsecratedGround1"] = { affix = "", "Creates Consecrated Ground on use", statOrder = { 5230 }, level = 1, group = "CharmCreateConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3849649145] = { "Creates Consecrated Ground on use" }, } }, ["UniqueCharmRecoverLifeBasedOnManaFlask1"] = { affix = "", "Recover Life equal to (15-20)% of Mana Flask's Recovery Amount when used", statOrder = { 5252 }, level = 1, group = "CharmRecoverLifeBasedOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2716923832] = { "Recover Life equal to (15-20)% of Mana Flask's Recovery Amount when used" }, } }, ["UniqueCharmRecoverManaBasedOnLifeFlask1"] = { affix = "", "Recover Mana equal to (15-20)% of Life Flask's Recovery Amount when used", statOrder = { 5253 }, level = 1, group = "CharmRecoverManaBasedOnLifeFlask", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3891350097] = { "Recover Mana equal to (15-20)% of Life Flask's Recovery Amount when used" }, } }, ["UniqueCharmIgniteEnemiesInPresence1"] = { affix = "", "Creates Ignited Ground for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life", statOrder = { 5241 }, level = 1, group = "CharmIgniteEnemiesInPresence", weightKey = { }, weightVal = { }, modTags = { "ailment" }, tradeHashes = { [39209842] = { "Creates Ignited Ground for 4 seconds when used, Igniting enemies as though dealing Fire damage equal to 500% of your maximum Life" }, } }, @@ -2090,9 +2090,9 @@ return { ["UniqueCharmWolfPossess1"] = { affix = "", "Possessed by Spirit Of The Wolf for (10-20) seconds on use", statOrder = { 5251 }, level = 1, group = "CharmWolfPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3504441212] = { "Possessed by Spirit Of The Wolf for (10-20) seconds on use" }, } }, ["UniqueCharmStagPossess1"] = { affix = "", "Possessed by Spirit Of The Stag for (10-20) seconds on use", statOrder = { 5250 }, level = 1, group = "CharmStagPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [3685424517] = { "Possessed by Spirit Of The Stag for (10-20) seconds on use" }, } }, ["UniqueCharmCatPossess1"] = { affix = "", "Possessed by Spirit Of The Cat for (10-20) seconds on use", statOrder = { 5244 }, level = 1, group = "CharmCatPossess", weightKey = { }, weightVal = { }, modTags = { "charm" }, tradeHashes = { [2839557359] = { "Possessed by Spirit Of The Cat for (10-20) seconds on use" }, } }, - ["UniqueMaximumLifePerStackableJewel1"] = { affix = "", "2% increased Maximum Life per socketed Grand Spectrum", statOrder = { 3717 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [332217711] = { "2% increased Maximum Life per socketed Grand Spectrum" }, [4230859323] = { "" }, } }, - ["UniqueAllResistancePerStackableJewel1"] = { affix = "", "+6% to all Elemental Resistances per socketed Grand Spectrum", statOrder = { 3716 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [4230859323] = { "" }, [242161915] = { "+6% to all Elemental Resistances per socketed Grand Spectrum" }, } }, - ["UniqueMaximumSpiritPerStackableJewel1"] = { affix = "", "2% increased Spirit per socketed Grand Spectrum", statOrder = { 9459 }, level = 1, group = "MaximumSpiritPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1430165758] = { "2% increased Spirit per socketed Grand Spectrum" }, [4230859323] = { "" }, } }, + ["UniqueMaximumLifePerStackableJewel1"] = { affix = "", "2% increased Maximum Life per socketed Grand Spectrum", statOrder = { 3717 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [332217711] = { "2% increased Maximum Life per socketed Grand Spectrum" }, } }, + ["UniqueAllResistancePerStackableJewel1"] = { affix = "", "+6% to all Elemental Resistances per socketed Grand Spectrum", statOrder = { 3716 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [242161915] = { "+6% to all Elemental Resistances per socketed Grand Spectrum" }, } }, + ["UniqueMaximumSpiritPerStackableJewel1"] = { affix = "", "2% increased Spirit per socketed Grand Spectrum", statOrder = { 9459 }, level = 1, group = "MaximumSpiritPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1430165758] = { "2% increased Spirit per socketed Grand Spectrum" }, } }, ["UniqueFireDamageConvertToCold1"] = { affix = "", "100% of Fire Damage Converted to Cold Damage", statOrder = { 8702 }, level = 1, group = "FireDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3503160529] = { "100% of Fire Damage Converted to Cold Damage" }, } }, ["UniqueFireDamageConvertToLightning1"] = { affix = "", "100% of Fire damage Converted to Lightning damage", statOrder = { 8703 }, level = 1, group = "FireDamageConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2772033465] = { "100% of Fire damage Converted to Lightning damage" }, } }, ["UniqueLightningDamageConvertToCold1"] = { affix = "", "100% of Lightning Damage Converted to Cold Damage", statOrder = { 1639 }, level = 1, group = "LightningDamageConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3627052716] = { "100% of Lightning Damage Converted to Cold Damage" }, } }, @@ -2104,7 +2104,7 @@ return { ["UniqueElementalDamageConvertToChaos1"] = { affix = "", "100% of Elemental Damage Converted to Chaos Damage", statOrder = { 8698 }, level = 1, group = "ElementalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2295988214] = { "100% of Elemental Damage Converted to Chaos Damage" }, } }, ["UniquePainAttunement1"] = { affix = "", "Pain Attunement", statOrder = { 10065 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [98977150] = { "Pain Attunement" }, } }, ["UniqueIronReflexes1"] = { affix = "", "Iron Reflexes", statOrder = { 10059 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "armour", "evasion", "defences" }, tradeHashes = { [326965591] = { "Iron Reflexes" }, } }, - ["UniqueBloodMagic1"] = { affix = "", "Blood Magic", statOrder = { 10033 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, [223497523] = { "" }, } }, + ["UniqueBloodMagic1"] = { affix = "", "Blood Magic", statOrder = { 10033 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2801937280] = { "Blood Magic" }, } }, ["UniqueEldritchBattery1"] = { affix = "", "Eldritch Battery", statOrder = { 10045 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2262736444] = { "Eldritch Battery" }, } }, ["UniqueGiantsBlood1"] = { affix = "", "Giant's Blood", statOrder = { 10052 }, level = 1, group = "GiantsBlood", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1875158664] = { "Giant's Blood" }, } }, ["UniqueUnwaveringStance1"] = { affix = "", "Unwavering Stance", statOrder = { 10072 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [1683578560] = { "Unwavering Stance" }, } }, @@ -2195,7 +2195,7 @@ return { ["IncreasedChillDurationUniqueBodyStrInt3"] = { affix = "", "150% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "150% increased Chill Duration on Enemies" }, } }, ["IncreasedChillDurationUniqueQuiver5"] = { affix = "", "(30-40)% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 13, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(30-40)% increased Chill Duration on Enemies" }, } }, ["IncreasedChillDurationUnique__1"] = { affix = "", "(35-50)% increased Chill Duration on Enemies", statOrder = { 1539 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "(35-50)% increased Chill Duration on Enemies" }, } }, - ["Acrobatics"] = { affix = "", "Acrobatics", statOrder = { 10024 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [223497523] = { "" }, [383557755] = { "Acrobatics" }, } }, + ["Acrobatics"] = { affix = "", "Acrobatics", statOrder = { 10024 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [383557755] = { "Acrobatics" }, } }, ["HasNoSockets"] = { affix = "", "Has no Sockets", statOrder = { 52 }, level = 1, group = "HasNoSockets", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1493091477] = { "Has no Sockets" }, } }, ["CannotBeShocked"] = { affix = "", "Cannot be Shocked", statOrder = { 1524 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [491899612] = { "Cannot be Shocked" }, } }, ["AttackerTakesDamageShieldImplicit1"] = { affix = "", "Reflects (2-5) Physical Damage to Melee Attackers", statOrder = { 880 }, level = 5, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [3767873853] = { "Reflects (2-5) Physical Damage to Melee Attackers" }, } }, @@ -2356,15 +2356,15 @@ return { ["BlockWhileDualWieldingUnique__1"] = { affix = "", "+10% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1060 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+10% Chance to Block Attack Damage while Dual Wielding" }, } }, ["BlockWhileDualWieldingUnique__2_"] = { affix = "", "+18% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1060 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2166444903] = { "+18% Chance to Block Attack Damage while Dual Wielding" }, } }, ["MaximumMinionCountUniqueBootsInt4"] = { affix = "", "+1 to Level of all Raise Zombie Gems", "+1 to Level of all Raise Spectre Gems", statOrder = { 1403, 1404 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "minion", "gem" }, tradeHashes = { [2739830820] = { "+1 to Level of all Raise Zombie Gems" }, [2120904498] = { "" }, [3235814433] = { "+1 to Level of all Raise Spectre Gems" }, } }, - ["MaximumMinionCountUniqueTwoHandSword4"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1825, 8762 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [1652515349] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueTwoHandSword4Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1825, 1826 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueSceptre5"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 1825 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueBootsStrInt2"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 8762 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [1652515349] = { "" }, [125218179] = { "" }, } }, - ["MaximumMinionCountUniqueBootsStrInt2Updated"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 1826 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, - ["MaximumMinionCountUniqueBodyInt9"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 1825 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["MaximumMinionCountUniqueTwoHandSword4"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1825, 8762 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["MaximumMinionCountUniqueTwoHandSword4Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1825, 1826 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["MaximumMinionCountUniqueSceptre5"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 1825 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["MaximumMinionCountUniqueBootsStrInt2"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 8762 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, + ["MaximumMinionCountUniqueBootsStrInt2Updated"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 1826 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "" }, } }, + ["MaximumMinionCountUniqueBodyInt9"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 1825 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, ["MaximumMinionCountUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", "(7-10)% increased Skeleton Cast Speed", "(3-5)% increased Skeleton Movement Speed", statOrder = { 9288, 9289, 9292 }, level = 1, group = "SkeletonSpeedOld", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, tradeHashes = { [2725259389] = { "(7-10)% increased Skeleton Cast Speed" }, [3413085237] = { "(7-10)% increased Skeleton Attack Speed" }, [3295031203] = { "(3-5)% increased Skeleton Movement Speed" }, } }, - ["MaximumMinionCountUnique__1__"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 1825 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "" }, [125218179] = { "+2 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUnique__2"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 1825 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "" }, [125218179] = { "+2 to maximum number of Spectres" }, } }, + ["MaximumMinionCountUnique__1__"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 1825 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+2 to maximum number of Spectres" }, } }, + ["MaximumMinionCountUnique__2"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 1825 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "" }, [125218179] = { "+2 to maximum number of Spectres" }, } }, ["SkeletonMovementSpeedUniqueJewel1"] = { affix = "", "(3-5)% increased Skeleton Movement Speed", statOrder = { 9292 }, level = 1, group = "SkeletonMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, tradeHashes = { [3295031203] = { "(3-5)% increased Skeleton Movement Speed" }, } }, ["SkeletonAttackSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", statOrder = { 9288 }, level = 1, group = "SkeletonAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, tradeHashes = { [3413085237] = { "(7-10)% increased Skeleton Attack Speed" }, } }, ["SkeletonCastSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Cast Speed", statOrder = { 9289 }, level = 1, group = "SkeletonCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "minion" }, tradeHashes = { [2725259389] = { "(7-10)% increased Skeleton Cast Speed" }, } }, @@ -2379,9 +2379,9 @@ return { ["PhysicalDamageConvertToChaosUniqueClaw2"] = { affix = "", "(10-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1636 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "(10-20)% of Physical Damage Converted to Chaos Damage" }, } }, ["PhysicalDamageConvertToChaosBodyStrInt4"] = { affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1636 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "30% of Physical Damage Converted to Chaos Damage" }, } }, ["PhysicalDamageConvertToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1636 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [717955465] = { "25% of Physical Damage Converted to Chaos Damage" }, } }, - ["PhysicalDamageConvertedToChaosPerLevelUnique__1"] = { affix = "", "1% of Physical Damage Converted to Chaos Damage per Level", statOrder = { 8708 }, level = 1, group = "PhysicalDamageConvertToChaosPerLevel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [1422721322] = { "1% of Physical Damage Converted to Chaos Damage per Level" }, [3711497052] = { "" }, } }, - ["MaximumMinionCountUniqueWand2"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1825, 8762 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [1652515349] = { "" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, - ["MaximumMinionCountUniqueWand2Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1825, 1826 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1652515349] = { "" }, [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["PhysicalDamageConvertedToChaosPerLevelUnique__1"] = { affix = "", "1% of Physical Damage Converted to Chaos Damage per Level", statOrder = { 8708 }, level = 1, group = "PhysicalDamageConvertToChaosPerLevel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, tradeHashes = { [1422721322] = { "1% of Physical Damage Converted to Chaos Damage per Level" }, } }, + ["MaximumMinionCountUniqueWand2"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1825, 8762 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [4017641977] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, + ["MaximumMinionCountUniqueWand2Updated"] = { affix = "", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 1825, 1826 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2428829184] = { "+1 to maximum number of Skeletons" }, [125218179] = { "+1 to maximum number of Spectres" }, } }, ["LifeReservationUniqueWand2"] = { affix = "", "Cannot be used with Chaos Inoculation", "Reserves 30% of Life", statOrder = { 809, 2112 }, level = 1, group = "ReservesLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2492660287] = { "Reserves 30% of Life" }, [623651254] = { "Cannot be used with Chaos Inoculation" }, } }, ["LocalIncreaseSocketedStrengthGemLevelUniqueTwoHandAxe3"] = { affix = "", "+1 to Level of Socketed Strength Gems", statOrder = { 110 }, level = 1, group = "LocalIncreaseSocketedStrengthGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, tradeHashes = { [916797432] = { "+1 to Level of Socketed Strength Gems" }, } }, ["ChaosTakenOnES"] = { affix = "", "Chaos Damage taken does not cause double loss of Energy Shield", statOrder = { 2179 }, level = 1, group = "ChaosTakenOnES", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [133168938] = { "Chaos Damage taken does not cause double loss of Energy Shield" }, } }, @@ -2421,14 +2421,14 @@ return { ["SocketedItemsHaveReducedReservationUniqueBodyDexInt4"] = { affix = "", "Socketed Gems have 45% increased Reservation Efficiency", statOrder = { 378 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 45% increased Reservation Efficiency" }, } }, ["SocketedItemsHaveReducedReservationUnique__1"] = { affix = "", "Socketed Gems have 25% increased Reservation Efficiency", statOrder = { 378 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 25% increased Reservation Efficiency" }, } }, ["SocketedItemsHaveIncreasedReservationUnique__1"] = { affix = "", "Socketed Gems have 20% reduced Reservation Efficiency", statOrder = { 378 }, level = 57, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, tradeHashes = { [3289633055] = { "Socketed Gems have 20% reduced Reservation Efficiency" }, } }, - ["ChanceToFreezeUniqueStaff2"] = { affix = "", "8% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "8% chance to Freeze" }, } }, - ["ChanceToFreezeUniqueQuiver5"] = { affix = "", "(7-10)% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(7-10)% chance to Freeze" }, } }, - ["ChanceToFreezeUniqueRing30"] = { affix = "", "10% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "10% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__1"] = { affix = "", "5% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "5% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__2"] = { affix = "", "2% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "2% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__3"] = { affix = "", "10% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "10% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__4"] = { affix = "", "10% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "10% chance to Freeze" }, } }, - ["ChanceToFreezeUnique__5"] = { affix = "", "20% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "20% chance to Freeze" }, } }, + ["ChanceToFreezeUniqueStaff2"] = { affix = "", "8% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "8% chance to Freeze" }, } }, + ["ChanceToFreezeUniqueQuiver5"] = { affix = "", "(7-10)% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(7-10)% chance to Freeze" }, } }, + ["ChanceToFreezeUniqueRing30"] = { affix = "", "10% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "10% chance to Freeze" }, } }, + ["ChanceToFreezeUnique__1"] = { affix = "", "5% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "5% chance to Freeze" }, } }, + ["ChanceToFreezeUnique__2"] = { affix = "", "2% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "2% chance to Freeze" }, } }, + ["ChanceToFreezeUnique__3"] = { affix = "", "10% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "10% chance to Freeze" }, } }, + ["ChanceToFreezeUnique__4"] = { affix = "", "10% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "10% chance to Freeze" }, } }, + ["ChanceToFreezeUnique__5"] = { affix = "", "20% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "20% chance to Freeze" }, } }, ["FrozenMonstersTakeIncreasedDamage"] = { affix = "", "Enemies Frozen by you take 20% increased Damage", statOrder = { 2133 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [849085925] = { "Enemies Frozen by you take 20% increased Damage" }, } }, ["FrozenMonstersTakeIncreasedDamageUnique__1"] = { affix = "", "Enemies Frozen by you take 20% increased Damage", statOrder = { 2133 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [849085925] = { "Enemies Frozen by you take 20% increased Damage" }, } }, ["IncreasedIntelligenceRequirementsUniqueSceptre1"] = { affix = "", "60% increased Intelligence Requirement", statOrder = { 813 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [18234720] = { "60% increased Intelligence Requirement" }, } }, @@ -2520,8 +2520,8 @@ return { ["LightRadiusUnique__7_"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "(15-25)% increased Light Radius" }, } }, ["LightRadiusUnique__8"] = { affix = "", "20% increased Light Radius", statOrder = { 1003 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1263695895] = { "20% increased Light Radius" }, } }, ["EnfeebleOnHitUniqueShieldStr3"] = { affix = "", "25% chance to Curse Non-Cursed Enemies with Enfeeble on Hit", statOrder = { 2190 }, level = 1, group = "EnfeebleOnHitUncursed", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [3804297142] = { "25% chance to Curse Non-Cursed Enemies with Enfeeble on Hit" }, } }, - ["GroundTarOnCritTakenUniqueShieldInt2"] = { affix = "", "Spreads Tar when you take a Critical Hit", statOrder = { 2180 }, level = 1, group = "GroundTarOnCritTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [2283772011] = { "" }, [927458676] = { "Spreads Tar when you take a Critical Hit" }, [545338400] = { "" }, } }, - ["GroundTarOnHitTakenUnique__1"] = { affix = "", "20% chance to spread Tar when Hit", statOrder = { 6505 }, level = 1, group = "GroundTarOnHitTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1981078074] = { "20% chance to spread Tar when Hit" }, [1208949000] = { "" }, [3568390883] = { "" }, [640757053] = { "" }, } }, + ["GroundTarOnCritTakenUniqueShieldInt2"] = { affix = "", "Spreads Tar when you take a Critical Hit", statOrder = { 2180 }, level = 1, group = "GroundTarOnCritTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [927458676] = { "Spreads Tar when you take a Critical Hit" }, } }, + ["GroundTarOnHitTakenUnique__1"] = { affix = "", "20% chance to spread Tar when Hit", statOrder = { 6505 }, level = 1, group = "GroundTarOnHitTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1981078074] = { "20% chance to spread Tar when Hit" }, } }, ["SpellsHaveCullingStrikeUniqueDagger4"] = { affix = "", "Your Spells have Culling Strike", statOrder = { 2201 }, level = 1, group = "SpellsHaveCullingStrike", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [3238189103] = { "Your Spells have Culling Strike" }, } }, ["EvasionRatingPercentOnLowLifeUniqueHelmetDex4"] = { affix = "", "150% increased Global Evasion Rating when on Low Life", statOrder = { 2204 }, level = 1, group = "EvasionRatingPercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "evasion", "defences" }, tradeHashes = { [2695354435] = { "150% increased Global Evasion Rating when on Low Life" }, } }, ["LocalLifeLeechIsInstantUniqueClaw3"] = { affix = "", "Life Leech from Hits with this Weapon is instant", statOrder = { 2207 }, level = 1, group = "LocalLifeLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [1765389199] = { "Life Leech from Hits with this Weapon is instant" }, } }, @@ -2637,8 +2637,8 @@ return { ["IncreasedSpellDamagePerPowerChargeUniqueWand3"] = { affix = "", "25% increased Spell Damage per Power Charge", statOrder = { 1804 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [827329571] = { "25% increased Spell Damage per Power Charge" }, } }, ["IncreasedSpellDamagePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Spell Damage per Power Charge", statOrder = { 1804 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [827329571] = { "(4-7)% increased Spell Damage per Power Charge" }, } }, ["IncreasedSpellDamagePerPowerChargeUnique__1"] = { affix = "", "(12-16)% increased Spell Damage per Power Charge", statOrder = { 1804 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [827329571] = { "(12-16)% increased Spell Damage per Power Charge" }, } }, - ["ConsecratedGroundOnBlockUniqueBodyInt8"] = { affix = "", "100% chance to create Consecrated Ground when you Block", statOrder = { 2245 }, level = 1, group = "ConsecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [16552558] = { "" }, [2298756203] = { "" }, [573884683] = { "100% chance to create Consecrated Ground when you Block" }, [264301062] = { "" }, } }, - ["DesecratedGroundOnBlockUniqueBodyStrInt4"] = { affix = "", "100% chance to create Desecrated Ground when you Block", statOrder = { 2246 }, level = 1, group = "DesecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3685028559] = { "100% chance to create Desecrated Ground when you Block" }, [3161959833] = { "" }, [2544633803] = { "" }, [800117438] = { "" }, } }, + ["ConsecratedGroundOnBlockUniqueBodyInt8"] = { affix = "", "100% chance to create Consecrated Ground when you Block", statOrder = { 2245 }, level = 1, group = "ConsecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [573884683] = { "100% chance to create Consecrated Ground when you Block" }, } }, + ["DesecratedGroundOnBlockUniqueBodyStrInt4"] = { affix = "", "100% chance to create Desecrated Ground when you Block", statOrder = { 2246 }, level = 1, group = "DesecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3685028559] = { "100% chance to create Desecrated Ground when you Block" }, } }, ["DisableChestSlot"] = { affix = "", "Can't use Body Armour", statOrder = { 2254 }, level = 1, group = "DisableChestSlot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4007482102] = { "Can't use Body Armour" }, } }, ["LocalIncreaseSocketedElementalGemUniqueGlovesInt6"] = { affix = "", "+1 to Level of Socketed Elemental Gems", statOrder = { 159 }, level = 1, group = "LocalIncreaseSocketedElementalGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "gem" }, tradeHashes = { [3571342795] = { "+1 to Level of Socketed Elemental Gems" }, } }, ["LocalIncreaseSocketedElementalGemUnique___1"] = { affix = "", "+2 to Level of Socketed Elemental Gems", statOrder = { 159 }, level = 50, group = "LocalIncreaseSocketedElementalGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "gem" }, tradeHashes = { [3571342795] = { "+2 to Level of Socketed Elemental Gems" }, } }, @@ -2750,13 +2750,13 @@ return { ["ChaosDegenerationAuraNonPlayersUnique__1"] = { affix = "", "50 Chaos Damage taken per second", statOrder = { 1620 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2456773909] = { "50 Chaos Damage taken per second" }, } }, ["ChaosDegenerationAuraPlayersUnique__1"] = { affix = "", "50 Chaos Damage taken per second", statOrder = { 1620 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2456773909] = { "50 Chaos Damage taken per second" }, } }, ["UniqueWingsOfEntropyCountsAsDualWielding"] = { affix = "", "Counts as Dual Wielding", statOrder = { 2361 }, level = 1, group = "CountsAsDualWielding", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2797075304] = { "Counts as Dual Wielding" }, } }, - ["ChaosDegenerationOnKillUniqueBodyStr3"] = { affix = "", "You take 450 Chaos Damage per second for 3 seconds on Kill", statOrder = { 2356 }, level = 1, group = "ChaosDegenerationOnKill", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2524948385] = { "You take 450 Chaos Damage per second for 0 seconds on Kill" }, [3856647970] = { "You take 0 Chaos Damage per second for 3 seconds on Kill" }, } }, - ["ItemBloodFootstepsUniqueBodyStr3"] = { affix = "", "Gore Footprints", statOrder = { 10099 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, [1773117644] = { "" }, } }, + ["ChaosDegenerationOnKillUniqueBodyStr3"] = { affix = "", "You take 450 Chaos Damage per second for 3 seconds on Kill", statOrder = { 2356 }, level = 1, group = "ChaosDegenerationOnKill", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4031081471] = { "You take 450 Chaos Damage per second for 3 seconds on Kill" }, } }, + ["ItemBloodFootstepsUniqueBodyStr3"] = { affix = "", "Gore Footprints", statOrder = { 10099 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, ["DisplayChaosDegenerationAuraUniqueBodyStr3"] = { affix = "", "Deals 450 Chaos Damage per second to nearby Enemies", statOrder = { 2355 }, level = 1, group = "DisplayChaosDegenerationAura", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2280313599] = { "Deals 450 Chaos Damage per second to nearby Enemies" }, } }, ["DisplayChaosDegenerationAuraUnique__1"] = { affix = "", "Deals 50 Chaos Damage per second to nearby Enemies", statOrder = { 2355 }, level = 1, group = "DisplayChaosDegenerationAura", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [2280313599] = { "Deals 50 Chaos Damage per second to nearby Enemies" }, } }, - ["ItemBloodFootstepsUniqueBootsDex4"] = { affix = "", "Gore Footprints", statOrder = { 10099 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, [1773117644] = { "" }, } }, + ["ItemBloodFootstepsUniqueBootsDex4"] = { affix = "", "Gore Footprints", statOrder = { 10099 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, ["ItemSilverFootstepsUniqueHelmetStrDex2"] = { affix = "", "Mercury Footprints", statOrder = { 10104 }, level = 1, group = "ItemSilverFootsteps", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3970396418] = { "Mercury Footprints" }, } }, - ["ItemBloodFootstepsUnique__1"] = { affix = "", "Gore Footprints", statOrder = { 10099 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, [1773117644] = { "" }, } }, + ["ItemBloodFootstepsUnique__1"] = { affix = "", "Gore Footprints", statOrder = { 10099 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, tradeHashes = { [2319448214] = { "Gore Footprints" }, } }, ["MaximumBlockChanceUniqueAmulet16"] = { affix = "", "+3% to maximum Block chance", statOrder = { 1659 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [480796730] = { "+3% to maximum Block chance" }, } }, ["MaximumBlockChanceUnique__1"] = { affix = "", "-10% to maximum Block chance", statOrder = { 1659 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [480796730] = { "-10% to maximum Block chance" }, } }, ["FasterBurnFromAttacksUniqueOneHandSword4"] = { affix = "", "Ignites you inflict deal Damage 50% faster", statOrder = { 2236 }, level = 1, group = "FasterBurnFromAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [2443492284] = { "Ignites you inflict deal Damage 50% faster" }, } }, @@ -2793,9 +2793,9 @@ return { ["FlaskGainEnduranceChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Endurance Charge on use", statOrder = { 645 }, level = 1, group = "FlaskGainEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "flask" }, tradeHashes = { [3986030307] = { "Gain (1-3) Endurance Charge on use" }, } }, ["FlaskGainEnduranceChargeUnique__1_"] = { affix = "", "Gain 1 Endurance Charge on use", statOrder = { 645 }, level = 1, group = "FlaskGainEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "flask" }, tradeHashes = { [3986030307] = { "Gain 1 Endurance Charge on use" }, } }, ["CanOnlyDealDamageWithThisWeapon"] = { affix = "", "You can only deal Damage with this Weapon or Ignite", statOrder = { 2374 }, level = 1, group = "CanOnlyDealDamageWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3128318472] = { "You can only deal Damage with this Weapon or Ignite" }, } }, - ["LocalFlaskChargesUsedUniqueFlask2"] = { affix = "", "(250-300)% increased Charges per use", statOrder = { 1006 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(250-300)% increased Charges per use" }, } }, - ["LocalFlaskChargesUsedUniqueFlask9"] = { affix = "", "(70-100)% increased Charges per use", statOrder = { 1006 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(70-100)% increased Charges per use" }, } }, - ["LocalFlaskChargesUsedUnique__2"] = { affix = "", "(10-20)% reduced Charges per use", statOrder = { 1006 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3139816101] = { "(10-20)% reduced Charges per use" }, } }, + ["LocalFlaskChargesUsedUniqueFlask2"] = { affix = "", "(250-300)% increased Charges per use", statOrder = { 1006 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(250-300)% increased Charges per use" }, } }, + ["LocalFlaskChargesUsedUniqueFlask9"] = { affix = "", "(70-100)% increased Charges per use", statOrder = { 1006 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(70-100)% increased Charges per use" }, } }, + ["LocalFlaskChargesUsedUnique__2"] = { affix = "", "(10-20)% reduced Charges per use", statOrder = { 1006 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [388617051] = { "(10-20)% reduced Charges per use" }, } }, ["LeftRingSlotElementalReflectDamageTakenUniqueRing10"] = { affix = "", "Left ring slot: You and your Minions take 80% reduced Reflected Elemental Damage", statOrder = { 2372 }, level = 57, group = "LeftRingSlotElementalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [2422197812] = { "Left ring slot: You and your Minions take 80% reduced Reflected Elemental Damage" }, } }, ["RightRingSlotPhysicalReflectDamageTakenUniqueRing10"] = { affix = "", "Right ring slot: You and your Minions take 80% reduced Reflected Physical Damage", statOrder = { 2373 }, level = 1, group = "RightRingSlotPhysicalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, tradeHashes = { [1357244124] = { "Right ring slot: You and your Minions take 80% reduced Reflected Physical Damage" }, } }, ["IncreasedEnemyFireResistanceUniqueHelmetInt5"] = { affix = "", "Damage Penetrates 25% Fire Resistance", statOrder = { 2613 }, level = 1, group = "EnemyFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2653955271] = { "Damage Penetrates 25% Fire Resistance" }, } }, @@ -2844,8 +2844,8 @@ return { ["OffHandChillDurationUniqueOneHandAxe2"] = { affix = "", "100% increased Chill Duration on Enemies when in Off Hand", statOrder = { 2423 }, level = 1, group = "OffHandChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [4199402748] = { "100% increased Chill Duration on Enemies when in Off Hand" }, } }, ["TrapThrowSpeedUniqueBootsDex6"] = { affix = "", "(14-18)% increased Trap Throwing Speed", statOrder = { 1597 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(14-18)% increased Trap Throwing Speed" }, } }, ["TrapThrowSpeedUnique__1_"] = { affix = "", "(20-30)% reduced Trap Throwing Speed", statOrder = { 1597 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [118398748] = { "(20-30)% reduced Trap Throwing Speed" }, } }, - ["MovementSpeedOnTrapThrowUniqueBootsDex6"] = { affix = "", "30% increased Movement Speed for 9 seconds on Throwing a Trap", statOrder = { 2427 }, level = 1, group = "MovementSpeedOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1620219216] = { "30% increased Movement Speed for 9 seconds on Throwing a Trap" }, } }, - ["MovementSpeedOnTrapThrowUnique__1"] = { affix = "", "15% increased Movement Speed for 9 seconds on Throwing a Trap", statOrder = { 2427 }, level = 1, group = "MovementSpeedOnTrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [1180565017] = { "15% increased Movement Speed for 0 seconds on Throwing a Trap" }, [1620219216] = { "30% increased Movement Speed for 9 seconds on Throwing a Trap" }, } }, + ["MovementSpeedOnTrapThrowUniqueBootsDex6"] = { affix = "", "30% increased Movement Speed for 9 seconds on Throwing a Trap", statOrder = { 2427 }, level = 1, group = "MovementSpeedOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3102860761] = { "30% increased Movement Speed for 9 seconds on Throwing a Trap" }, } }, + ["MovementSpeedOnTrapThrowUnique__1"] = { affix = "", "15% increased Movement Speed for 9 seconds on Throwing a Trap", statOrder = { 2427 }, level = 1, group = "MovementSpeedOnTrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3102860761] = { "15% increased Movement Speed for 9 seconds on Throwing a Trap" }, } }, ["DisplaySupportedByTrapUniqueBootsDex6"] = { affix = "", "Socketed Gems are Supported by Level 15 Trap", statOrder = { 319 }, level = 1, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 15 Trap" }, } }, ["DisplaySupportedByTrapUniqueStaff4"] = { affix = "", "Socketed Gems are Supported by Level 8 Trap", statOrder = { 319 }, level = 1, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 8 Trap" }, } }, ["DisplaySupportedByTrapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Trap", statOrder = { 319 }, level = 40, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [1122134690] = { "Socketed Gems are Supported by Level 16 Trap" }, } }, @@ -2962,7 +2962,7 @@ return { ["AttackDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Attack Damage per Level", statOrder = { 2597 }, level = 1, group = "AttackDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, tradeHashes = { [63607615] = { "1% increased Attack Damage per Level" }, } }, ["SpellDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Spell Damage per Level", statOrder = { 2598 }, level = 1, group = "SpellDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [797084288] = { "1% increased Spell Damage per Level" }, } }, ["FlaskChargesOnCritUniqueTwoHandAxe8"] = { affix = "", "Gain a Flask Charge when you deal a Critical Hit", statOrder = { 2599 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1546046884] = { "Gain a Flask Charge when you deal a Critical Hit" }, } }, - ["ChanceToReflectChaosDamageToSelfUniqueTwoHandSword7_"] = { affix = "", "Enemies you Attack have 20% chance to Reflect 35 to 50 Chaos Damage to you", statOrder = { 2604 }, level = 1, group = "ChanceToReflectChaosDamageToSelf", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [3226921326] = { "" }, [2736066171] = { "Enemies you Attack have 20% chance to Reflect 0 to 0 Chaos Damage to you" }, } }, + ["ChanceToReflectChaosDamageToSelfUniqueTwoHandSword7_"] = { affix = "", "Enemies you Attack have 20% chance to Reflect 35 to 50 Chaos Damage to you", statOrder = { 2604 }, level = 1, group = "ChanceToReflectChaosDamageToSelf", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, tradeHashes = { [2860779491] = { "Enemies you Attack have 20% chance to Reflect 35 to 50 Chaos Damage to you" }, } }, ["SimulatedRampageStrDex5"] = { affix = "", "Rampage", statOrder = { 10018 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, ["SimulatedRampageDexInt6"] = { affix = "", "Rampage", statOrder = { 10018 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, ["SimulatedRampageStrInt2"] = { affix = "", "Rampage", statOrder = { 10018 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2397408229] = { "Rampage" }, } }, @@ -2977,7 +2977,7 @@ return { ["IncreasedChaosDamagePerLevelUniqueTwoHandSword7"] = { affix = "", "1% increased Elemental Damage per Level", statOrder = { 2609 }, level = 1, group = "ChaosDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2094646950] = { "1% increased Elemental Damage per Level" }, } }, ["IncreasedElementalDamagePerLevelUniqueTwoHandSword7"] = { affix = "", "1% increased Chaos Damage per Level", statOrder = { 2610 }, level = 1, group = "ElementalDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [4084331136] = { "1% increased Chaos Damage per Level" }, } }, ["LifeGainedOnEnemyDeathPerLevelUniqueTwoHandSword7"] = { affix = "", "Gain 1 Life on Kill per Level", statOrder = { 2605 }, level = 1, group = "LifeGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [4228691877] = { "Gain 1 Life on Kill per Level" }, } }, - ["SocketedGemHasElementalEquilibriumUniqueRing25"] = { affix = "", "Socketed Gems have Elemental Equilibrium", statOrder = { 431 }, level = 1, group = "SocketedGemHasElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, tradeHashes = { [223497523] = { "" }, [2605850929] = { "Socketed Gems have Elemental Equilibrium" }, } }, + ["SocketedGemHasElementalEquilibriumUniqueRing25"] = { affix = "", "Socketed Gems have Elemental Equilibrium", statOrder = { 431 }, level = 1, group = "SocketedGemHasElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, tradeHashes = { [2605850929] = { "Socketed Gems have Elemental Equilibrium" }, } }, ["SocketedGemHasSecretsOfSufferingUnique__1"] = { affix = "", "Socketed Gems have Secrets of Suffering", statOrder = { 433 }, level = 1, group = "SocketedGemHasSecretsOfSuffering", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental", "fire", "cold", "lightning", "critical", "ailment", "gem" }, tradeHashes = { [4051493629] = { "Socketed Gems have Secrets of Suffering" }, } }, ["ImmuneToElementalAilmentsWhileLifeAndManaCloseUnique__1"] = { affix = "", "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500", statOrder = { 9756 }, level = 1, group = "ImmuneToElementalAilmentsWhileLifeAndManaClose", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, tradeHashes = { [2716882575] = { "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500" }, } }, ["FireResistanceWhenSocketedWithRedGemUniqueRing25"] = { affix = "", "+(75-100)% to Fire Resistance when Socketed with a Red Gem", statOrder = { 1411 }, level = 1, group = "FireResistanceWhenSocketedWithRedGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance", "gem" }, tradeHashes = { [3051845758] = { "+(75-100)% to Fire Resistance when Socketed with a Red Gem" }, } }, @@ -3017,7 +3017,7 @@ return { ["FreezeDurationUnique__1"] = { affix = "", "25% increased Freeze Duration on Enemies", statOrder = { 1541 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3485067555] = { "" }, [1073942215] = { "25% increased Freeze Duration on Enemies" }, } }, ["ElementalPenetrationMarakethSceptreImplicit1"] = { affix = "", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2612 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 4% Elemental Resistances" }, } }, ["ElementalPenetrationMarakethSceptreImplicit2"] = { affix = "", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2612 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2101383955] = { "Damage Penetrates 6% Elemental Resistances" }, } }, - ["UniqueEnemiesInPresenceHaveFireExposure1"] = { affix = "", "Enemies in your Presence have Exposure", statOrder = { 5945 }, level = 1, group = "EnemiesInPresenceHaveExposure", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHashes = { [1701945395] = { "" }, [724806967] = { "Enemies in your Presence have Exposure" }, } }, + ["UniqueEnemiesInPresenceHaveFireExposure1"] = { affix = "", "Enemies in your Presence have Exposure", statOrder = { 5945 }, level = 1, group = "EnemiesInPresenceHaveExposure", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, tradeHashes = { [724806967] = { "Enemies in your Presence have Exposure" }, } }, ["UniqueBearSkillDamageConvertedToFire1"] = { affix = "", "Bear Skills Convert 80% of Physical Damage to Fire Damage", statOrder = { 1629 }, level = 1, group = "UniqueBearSkillDamageConvertedToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [4287372938] = { "Bear Skills Convert 80% of Physical Damage to Fire Damage" }, } }, ["UniqueSkillsGainXGloryEvery2Seconds1"] = { affix = "", "Skills which require Glory generate (2-5) Glory every 2 seconds", statOrder = { 3999 }, level = 1, group = "UniqueSkillsGainXGloryEvery2Seconds", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2480962043] = { "Skills which require Glory generate (2-5) Glory every 2 seconds" }, } }, ["MinonAreaOfEffectUniqueRing33"] = { affix = "", "Minions have 10% increased Area of Effect", statOrder = { 2649 }, level = 1, group = "MinionAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3811191316] = { "Minions have 10% increased Area of Effect" }, } }, @@ -3045,7 +3045,7 @@ return { ["MinesMultipleDetonationUniqueStaff11"] = { affix = "", "Mines can be Detonated an additional time", statOrder = { 2656 }, level = 1, group = "MinesMultipleDetonation", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [325437053] = { "Mines can be Detonated an additional time" }, } }, ["GainOnslaughtWhenCullingEnemyUniqueOneHandAxe6"] = { affix = "", "You gain Onslaught for 3 seconds on Culling Strike", statOrder = { 2653 }, level = 1, group = "GainOnslaughtOnCull", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3818161429] = { "You gain Onslaught for 3 seconds on Culling Strike" }, } }, ["LocalAddedPhysicalDamageUniqueOneHandAxe6"] = { affix = "", "Adds (3-5) to (7-10) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (3-5) to (7-10) Physical Damage" }, } }, - ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe6"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(60-80)% increased Physical Damage" }, } }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe6"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(60-80)% increased Physical Damage" }, } }, ["LifeLeechPermyriadUniqueOneHandAxe6"] = { affix = "", "Leeches 2% of Physical Damage as Life", statOrder = { 972 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches 2% of Physical Damage as Life" }, } }, ["CannotBeChilledWhenOnslaughtUniqueOneHandAxe6"] = { affix = "", "100% chance to Avoid being Chilled during Onslaught", statOrder = { 2655 }, level = 1, group = "CannotBeChilledDuringOnslaught", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2872105818] = { "100% chance to Avoid being Chilled during Onslaught" }, } }, ["LifeRegenerationRatePercentageUniqueAmulet21"] = { affix = "", "Regenerate 4% of maximum Life per second", statOrder = { 1617 }, level = 20, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [836936635] = { "Regenerate 4% of maximum Life per second" }, } }, @@ -3093,7 +3093,7 @@ return { ["LifeAndManaOnHitSeparatedImplicitMarakethClaw1"] = { affix = "", "Grants 15 Life per Enemy Hit", "Grants 6 Mana per Enemy Hit", statOrder = { 974, 1434 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [821021828] = { "Grants 15 Life per Enemy Hit" }, [640052854] = { "Grants 6 Mana per Enemy Hit" }, } }, ["LifeAndManaOnHitSeparatedImplicitMarakethClaw2"] = { affix = "", "Grants 28 Life per Enemy Hit", "Grants 10 Mana per Enemy Hit", statOrder = { 974, 1434 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [821021828] = { "Grants 28 Life per Enemy Hit" }, [640052854] = { "Grants 10 Mana per Enemy Hit" }, } }, ["LifeAndManaOnHitSeparatedImplicitMarakethClaw3"] = { affix = "", "Grants 38 Life per Enemy Hit", "Grants 14 Mana per Enemy Hit", statOrder = { 974, 1434 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, tradeHashes = { [821021828] = { "Grants 38 Life per Enemy Hit" }, [640052854] = { "Grants 14 Mana per Enemy Hit" }, } }, - ["IcestormUniqueStaff12"] = { affix = "", "Grants Level 1 Icestorm Skill", statOrder = { 484 }, level = 1, group = "IcestormActiveSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2103009393] = { "Grants Level 1 Icestorm Skill" }, [231162761] = { "" }, } }, + ["IcestormUniqueStaff12"] = { affix = "", "Grants Level 1 Icestorm Skill", statOrder = { 484 }, level = 1, group = "IcestormActiveSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2103009393] = { "Grants Level 1 Icestorm Skill" }, } }, ["PowerChargeOnMeleeStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun with Melee Damage", statOrder = { 2425 }, level = 1, group = "PowerChargeOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [2318615887] = { "30% chance to gain a Power Charge when you Stun with Melee Damage" }, } }, ["PowerChargeOnStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun", statOrder = { 2426 }, level = 1, group = "PowerChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3470535775] = { "30% chance to gain a Power Charge when you Stun" }, } }, ["ChanceToAvoidElementalStatusAilmentsUniqueAmulet22"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 957 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "resistance" }, tradeHashes = { [2901986750] = { "+(5-10)% to all Elemental Resistances" }, } }, @@ -3277,7 +3277,7 @@ return { ["AvoidFreezeJewel"] = { affix = "Thawing FIX ME", "(6-8)% chance to Avoid being Frozen", statOrder = { 1528 }, level = 1, group = "AvoidFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1514829491] = { "(6-8)% chance to Avoid being Frozen" }, } }, ["AvoidChillJewel"] = { affix = "Heating FIX ME", "(6-8)% chance to Avoid being Chilled", statOrder = { 1527 }, level = 1, group = "AvoidChillForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [3483999943] = { "(6-8)% chance to Avoid being Chilled" }, } }, ["AvoidStunJewel"] = { affix = "FIX ME", "(6-8)% chance to Avoid being Stunned", statOrder = { 1534 }, level = 1, group = "AvoidStunForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, tradeHashes = { [4262448838] = { "(6-8)% chance to Avoid being Stunned" }, } }, - ["ChanceToFreezeJewel"] = { affix = "FIX ME", "(2-3)% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [44571480] = { "(2-3)% chance to Freeze" }, } }, + ["ChanceToFreezeJewel"] = { affix = "FIX ME", "(2-3)% chance to Freeze", statOrder = { 989 }, level = 1, group = "ChanceToFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [2309614417] = { "(2-3)% chance to Freeze" }, } }, ["ChanceToShockJewel"] = { affix = "FIX ME", "(2-3)% chance to Shock", statOrder = { 991 }, level = 1, group = "ChanceToShockForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [1538773178] = { "(2-3)% chance to Shock" }, } }, ["EnduranceChargeDurationJewel"] = { affix = "of Endurance", "(10-14)% increased Endurance Charge Duration", statOrder = { 1789 }, level = 1, group = "EnduranceChargeDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "(10-14)% increased Endurance Charge Duration" }, } }, ["FrenzyChargeDurationJewel"] = { affix = "of Frenzy", "(10-14)% increased Frenzy Charge Duration", statOrder = { 1791 }, level = 1, group = "FrenzyChargeDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "(10-14)% increased Frenzy Charge Duration" }, } }, @@ -3299,11 +3299,11 @@ return { ["BleedDurationOnYouJewel"] = { affix = "of Stemming", "(30-35)% reduced Duration of Bleeding on You", statOrder = { 9209 }, level = 1, group = "ReducedBleedDuration", weightKey = { "default", }, weightVal = { 1 }, modTags = { "bleed", "physical", "ailment" }, tradeHashes = { [1692879867] = { "(30-35)% reduced Duration of Bleeding on You" }, } }, ["ManaReservationEfficiencyJewel"] = { affix = "Cerebral", "(2-3)% increased Mana Reservation Efficiency of Skills", statOrder = { 1878 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 1 }, modTags = { "resource", "mana" }, tradeHashes = { [4237190083] = { "(2-3)% increased Mana Reservation Efficiency of Skills" }, } }, ["FlaskDurationJewel"] = { affix = "Prolonging", "(6-10)% increased Flask Effect Duration", statOrder = { 879 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { "default", }, weightVal = { 1 }, modTags = { "flask" }, tradeHashes = { [3741323227] = { "(6-10)% increased Flask Effect Duration" }, } }, - ["FreezeChanceAndDurationJewel"] = { affix = "of Freezing", "(3-5)% chance to Freeze", "(12-16)% increased Freeze Duration on Enemies", statOrder = { 989, 1541 }, level = 1, group = "FreezeChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1073942215] = { "(12-16)% increased Freeze Duration on Enemies" }, [44571480] = { "(3-5)% chance to Freeze" }, } }, + ["FreezeChanceAndDurationJewel"] = { affix = "of Freezing", "(3-5)% chance to Freeze", "(12-16)% increased Freeze Duration on Enemies", statOrder = { 989, 1541 }, level = 1, group = "FreezeChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "cold", "ailment" }, tradeHashes = { [1073942215] = { "(12-16)% increased Freeze Duration on Enemies" }, [2309614417] = { "(3-5)% chance to Freeze" }, } }, ["ShockChanceAndDurationJewel"] = { affix = "of Shocking", "(3-5)% chance to Shock", "(12-16)% increased Shock Duration", statOrder = { 991, 1540 }, level = 1, group = "ShockChanceAndDurationForJewel", weightKey = { "not_int", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "lightning", "ailment" }, tradeHashes = { [3668351662] = { "(12-16)% increased Shock Duration" }, [1538773178] = { "(3-5)% chance to Shock" }, } }, - ["IgniteChanceAndDurationJewel"] = { affix = "of Burning", "(6-8)% increased Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1335054179] = { "" }, [1086147743] = { "(6-8)% increased Ignite Duration on Enemies" }, } }, + ["IgniteChanceAndDurationJewel"] = { affix = "of Burning", "(6-8)% increased Ignite Duration on Enemies", statOrder = { 1542 }, level = 1, group = "IgniteChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "fire", "ailment" }, tradeHashes = { [1086147743] = { "(6-8)% increased Ignite Duration on Enemies" }, } }, ["PoisonChanceAndDurationForJewel"] = { affix = "of Poisoning", "(6-8)% increased Poison Duration", "(3-5)% chance to Poison on Hit", statOrder = { 2786, 2789 }, level = 1, group = "PoisonChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 1, 1 }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2011656677] = { "(6-8)% increased Poison Duration" }, [795138349] = { "(3-5)% chance to Poison on Hit" }, } }, - ["BleedChanceAndDurationForJewel__"] = { affix = "of Bleeding", "Attacks have (3-5)% chance to cause Bleeding", "(12-16)% increased Bleeding Duration", statOrder = { 2159, 4522 }, level = 1, group = "BleedChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1459321413] = { "(12-16)% increased Bleeding Duration" }, [3204820200] = { "Attacks have (3-5)% chance to cause Bleeding" }, } }, + ["BleedChanceAndDurationForJewel__"] = { affix = "of Bleeding", "Attacks have (3-5)% chance to cause Bleeding", "(12-16)% increased Bleeding Duration", statOrder = { 2159, 4522 }, level = 1, group = "BleedChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have (3-5)% chance to cause Bleeding" }, [1459321413] = { "(12-16)% increased Bleeding Duration" }, } }, ["ImpaleChanceForJewel_"] = { affix = "of Impaling", "(5-7)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4455 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "physical", "attack" }, tradeHashes = { [3739863694] = { "(5-7)% chance to Impale Enemies on Hit with Attacks" }, } }, ["BurningDamageForJewel"] = { affix = "of Combusting", "(16-20)% increased Burning Damage", statOrder = { 1554 }, level = 1, group = "BurningDamageForJewel", weightKey = { "default", }, weightVal = { 1 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, tradeHashes = { [1175385867] = { "(16-20)% increased Burning Damage" }, } }, ["EnergyShieldDelayJewel"] = { affix = "Serene", "(4-6)% faster start of Energy Shield Recharge", statOrder = { 967 }, level = 1, group = "EnergyShieldDelayForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 1 }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1782086450] = { "(4-6)% faster start of Energy Shield Recharge" }, } }, @@ -3318,23 +3318,23 @@ return { ["TotemDamageUnique__1_"] = { affix = "", "40% increased Totem Damage", statOrder = { 1089 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [3851254963] = { "40% increased Totem Damage" }, } }, ["TotemLifeJewel"] = { affix = "Carved", "(8-12)% increased Totem Life", statOrder = { 1459 }, level = 1, group = "TotemLifeForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "resource", "life" }, tradeHashes = { [686254215] = { "(8-12)% increased Totem Life" }, } }, ["TotemElementalResistancesJewel"] = { affix = "of Runes", "Totems gain +(6-10)% to all Elemental Resistances", statOrder = { 2442 }, level = 1, group = "TotemElementalResistancesForJewel", weightKey = { "not_str", "default", }, weightVal = { 1, 1 }, modTags = { "elemental", "resistance" }, tradeHashes = { [1809006367] = { "Totems gain +(6-10)% to all Elemental Resistances" }, } }, - ["JewelStrToDex"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 2671 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2237528173] = { "Strength from Passives in Radius is Transformed to Dexterity" }, [3802517517] = { "" }, } }, - ["JewelStrToDexUniqueJewel13"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 2671 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2237528173] = { "Strength from Passives in Radius is Transformed to Dexterity" }, [3802517517] = { "" }, } }, + ["JewelStrToDex"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 2671 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2237528173] = { "Strength from Passives in Radius is Transformed to Dexterity" }, } }, + ["JewelStrToDexUniqueJewel13"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 2671 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2237528173] = { "Strength from Passives in Radius is Transformed to Dexterity" }, } }, ["DexterityUniqueJewel13"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(16-24) to Dexterity" }, } }, - ["JewelDexToInt"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 2674 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2075199521] = { "Dexterity from Passives in Radius is Transformed to Intelligence" }, [3802517517] = { "" }, } }, - ["JewelDexToIntUniqueJewel11"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 2674 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2075199521] = { "Dexterity from Passives in Radius is Transformed to Intelligence" }, [3802517517] = { "" }, } }, + ["JewelDexToInt"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 2674 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2075199521] = { "Dexterity from Passives in Radius is Transformed to Intelligence" }, } }, + ["JewelDexToIntUniqueJewel11"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 2674 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [2075199521] = { "Dexterity from Passives in Radius is Transformed to Intelligence" }, } }, ["IntelligenceUniqueJewel11"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(16-24) to Intelligence" }, } }, - ["JewelIntToStr"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 2675 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [1285587221] = { "Intelligence from Passives in Radius is Transformed to Strength" }, } }, - ["JewelIntToStrUniqueJewel34"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 2675 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [1285587221] = { "Intelligence from Passives in Radius is Transformed to Strength" }, } }, + ["JewelIntToStr"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 2675 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1285587221] = { "Intelligence from Passives in Radius is Transformed to Strength" }, } }, + ["JewelIntToStrUniqueJewel34"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 2675 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1285587221] = { "Intelligence from Passives in Radius is Transformed to Strength" }, } }, ["StrengthUniqueJewel34"] = { affix = "", "+(16-24) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(16-24) to Strength" }, } }, - ["JewelStrToInt"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 2672 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [3771273420] = { "Strength from Passives in Radius is Transformed to Intelligence" }, } }, - ["JewelStrToIntUniqueJewel35"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 2672 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [3771273420] = { "Strength from Passives in Radius is Transformed to Intelligence" }, } }, + ["JewelStrToInt"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 2672 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3771273420] = { "Strength from Passives in Radius is Transformed to Intelligence" }, } }, + ["JewelStrToIntUniqueJewel35"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 2672 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3771273420] = { "Strength from Passives in Radius is Transformed to Intelligence" }, } }, ["IntelligenceUniqueJewel35"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 949 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [328541901] = { "+(16-24) to Intelligence" }, } }, - ["JewelIntToDex"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 2676 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [1608425196] = { "Intelligence from Passives in Radius is Transformed to Dexterity" }, } }, - ["JewelIntToDexUniqueJewel36"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 2676 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3802517517] = { "" }, [1608425196] = { "Intelligence from Passives in Radius is Transformed to Dexterity" }, } }, + ["JewelIntToDex"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 2676 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1608425196] = { "Intelligence from Passives in Radius is Transformed to Dexterity" }, } }, + ["JewelIntToDexUniqueJewel36"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 2676 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [1608425196] = { "Intelligence from Passives in Radius is Transformed to Dexterity" }, } }, ["DexterityUniqueJewel36"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 948 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [3261801346] = { "+(16-24) to Dexterity" }, } }, - ["JewelDexToStr"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 2673 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4097174922] = { "Dexterity from Passives in Radius is Transformed to Strength" }, [3802517517] = { "" }, } }, - ["JewelDexToStrUniqueJewel37"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 2673 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4097174922] = { "Dexterity from Passives in Radius is Transformed to Strength" }, [3802517517] = { "" }, } }, + ["JewelDexToStr"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 2673 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4097174922] = { "Dexterity from Passives in Radius is Transformed to Strength" }, } }, + ["JewelDexToStrUniqueJewel37"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 2673 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4097174922] = { "Dexterity from Passives in Radius is Transformed to Strength" }, } }, ["StrengthUniqueJewel37"] = { affix = "", "+(16-24) to Strength", statOrder = { 947 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, tradeHashes = { [4080418644] = { "+(16-24) to Strength" }, } }, ["ReducedAttackAndCastSpeedUniqueGlovesStrInt4"] = { affix = "", "(20-30)% reduced Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(20-30)% reduced Attack and Cast Speed" }, } }, ["AttackAndCastSpeedUniqueRing39"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 1706 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, tradeHashes = { [2672805335] = { "(5-10)% increased Attack and Cast Speed" }, } }, @@ -3344,7 +3344,7 @@ return { ["CannotLeechOrRegenerateManaUniqueTwoHandAxe9"] = { affix = "", "Cannot Leech or Regenerate Mana", statOrder = { 2241 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2918242917] = { "Cannot Leech or Regenerate Mana" }, } }, ["CannotLeechOrRegenerateManaUnique__1_"] = { affix = "", "Cannot Leech or Regenerate Mana", statOrder = { 2241 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2918242917] = { "Cannot Leech or Regenerate Mana" }, } }, ["ResoluteTechniqueUniqueTwoHandAxe9"] = { affix = "", "Resolute Technique", statOrder = { 10078 }, level = 1, group = "ResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [3943945975] = { "Resolute Technique" }, } }, - ["JewelUniqueAllocateDisconnectedPassives"] = { affix = "", "Passives in Radius can be Allocated without being connected to your tree", statOrder = { 806 }, level = 1, group = "JewelUniqueAllocateDisconnectedPassives", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802517517] = { "" }, [4077035099] = { "Passives in Radius can be Allocated without being connected to your tree" }, } }, + ["JewelUniqueAllocateDisconnectedPassives"] = { affix = "", "Passives in Radius can be Allocated without being connected to your tree", statOrder = { 806 }, level = 1, group = "JewelUniqueAllocateDisconnectedPassives", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077035099] = { "Passives in Radius can be Allocated without being connected to your tree" }, } }, ["JewelRingRadiusValuesUnique__1"] = { affix = "", "Only affects Passives in Very Small Ring", statOrder = { 13 }, level = 1, group = "JewelRingRadiusValues", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3642528642] = { "Only affects Passives in Very Small Ring" }, } }, ["JewelRingRadiusValuesUnique__2"] = { affix = "", "Only affects Passives in Medium-Large Ring", statOrder = { 13 }, level = 1, group = "JewelRingRadiusValues", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3642528642] = { "Only affects Passives in Medium-Large Ring" }, } }, ["AllocateDisconnectedPassivesDonutUnique__1"] = { affix = "", "Passives in Radius can be Allocated without being connected to your tree", statOrder = { 806 }, level = 1, group = "AllocateDisconnectedPassivesDonut", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4077035099] = { "Passives in Radius can be Allocated without being connected to your tree" }, } }, @@ -3357,15 +3357,15 @@ return { ["LocalChanceToBleedUniqueDagger12"] = { affix = "", "30% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "30% chance to cause Bleeding on Hit" }, } }, ["LocalChanceToBleedUniqueOneHandMace8"] = { affix = "", "30% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "30% chance to cause Bleeding on Hit" }, } }, ["LocalChanceToBleedUnique__1__"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2153 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [1519615863] = { "50% chance to cause Bleeding on Hit" }, } }, - ["ChanceToBleedUnique__1_"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2159 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } }, - ["ChanceToBleedUnique__2__"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2159 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 25% chance to cause Bleeding" }, } }, - ["ChanceToBleedUnique__3_"] = { affix = "", "Attacks have 15% chance to cause Bleeding", statOrder = { 2159 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [3204820200] = { "Attacks have 15% chance to cause Bleeding" }, } }, - ["StealRareModUniqueJewel3"] = { affix = "", "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 2680 }, level = 1, group = "JewelStealRareMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3802517517] = { "" }, [3807518091] = { "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds" }, } }, + ["ChanceToBleedUnique__1_"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2159 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have 25% chance to cause Bleeding" }, } }, + ["ChanceToBleedUnique__2__"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2159 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have 25% chance to cause Bleeding" }, } }, + ["ChanceToBleedUnique__3_"] = { affix = "", "Attacks have 15% chance to cause Bleeding", statOrder = { 2159 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, tradeHashes = { [2055966527] = { "Attacks have 15% chance to cause Bleeding" }, } }, + ["StealRareModUniqueJewel3"] = { affix = "", "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 2680 }, level = 1, group = "JewelStealRareMod", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3807518091] = { "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds" }, } }, ["UnarmedAreaOfEffectUniqueJewel4"] = { affix = "", "(10-15)% increased Area of Effect while Unarmed", statOrder = { 2677 }, level = 1, group = "UnarmedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2216127021] = { "(10-15)% increased Area of Effect while Unarmed" }, } }, ["UnarmedStrikeRangeUniqueJewel__1_"] = { affix = "", "+(3-4) to Melee Strike Range while Unarmed", statOrder = { 2698 }, level = 1, group = "UnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3273962791] = { "+(3-4) to Melee Strike Range while Unarmed" }, } }, - ["UniqueJewelMeleeToBow"] = { affix = "", "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers", statOrder = { 2687 }, level = 1, group = "UniqueJewelMeleeToBow", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3802517517] = { "" }, [854030602] = { "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers" }, } }, - ["ChaosDamageIncreasedPerIntUniqueJewel2"] = { affix = "", "5% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius", statOrder = { 2691 }, level = 1, group = "ChaosDamageIncreasedPerInt", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [3802517517] = { "" }, [2582360791] = { "5% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius" }, } }, - ["PassivesApplyToMinionsUniqueJewel7"] = { affix = "", "Passives in Radius apply to Minions instead of you", statOrder = { 2692 }, level = 1, group = "PassivesApplyToMinionsJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3802517517] = { "" }, [727625899] = { "Passives in Radius apply to Minions instead of you" }, [512165118] = { "" }, } }, + ["UniqueJewelMeleeToBow"] = { affix = "", "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers", statOrder = { 2687 }, level = 1, group = "UniqueJewelMeleeToBow", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [854030602] = { "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers" }, } }, + ["ChaosDamageIncreasedPerIntUniqueJewel2"] = { affix = "", "5% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius", statOrder = { 2691 }, level = 1, group = "ChaosDamageIncreasedPerInt", weightKey = { }, weightVal = { }, modTags = { "chaos" }, tradeHashes = { [2582360791] = { "5% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius" }, } }, + ["PassivesApplyToMinionsUniqueJewel7"] = { affix = "", "Passives in Radius apply to Minions instead of you", statOrder = { 2692 }, level = 1, group = "PassivesApplyToMinionsJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [727625899] = { "Passives in Radius apply to Minions instead of you" }, } }, ["SpellDamagePerIntelligenceUniqueStaff12"] = { affix = "", "2% increased Spell Damage per 10 Intelligence", statOrder = { 2395 }, level = 1, group = "SpellDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2818518881] = { "2% increased Spell Damage per 10 Intelligence" }, } }, ["NearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { affix = "", "Culling Strike", statOrder = { 1700 }, level = 1, group = "GrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2524254339] = { "Culling Strike" }, } }, ["NearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "IncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, } }, @@ -3373,7 +3373,7 @@ return { ["NearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 916 }, level = 1, group = "IncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, } }, ["NearbyAlliesHaveCriticalStrikeMultiplierUnique__1"] = { affix = "", "50% increased Critical Damage Bonus", statOrder = { 937 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [3556824919] = { "50% increased Critical Damage Bonus" }, } }, ["LifeOnCorpseRemovalUniqueJewel14"] = { affix = "", "Recover 2% of maximum Life when you Consume a corpse", statOrder = { 2678 }, level = 1, group = "LifeOnCorpseRemoval", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2715345125] = { "Recover 2% of maximum Life when you Consume a corpse" }, } }, - ["TotemLifePerStrengthUniqueJewel15"] = { affix = "", "3% increased Totem Life per 10 Strength Allocated in Radius", statOrder = { 2679 }, level = 1, group = "TotemLifePerStrengthInRadius", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3802517517] = { "" }, [747037697] = { "3% increased Totem Life per 10 Strength Allocated in Radius" }, } }, + ["TotemLifePerStrengthUniqueJewel15"] = { affix = "", "3% increased Totem Life per 10 Strength Allocated in Radius", statOrder = { 2679 }, level = 1, group = "TotemLifePerStrengthInRadius", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [747037697] = { "3% increased Totem Life per 10 Strength Allocated in Radius" }, } }, ["TotemsCannotBeStunnedUniqueJewel15"] = { affix = "", "Totems cannot be Stunned", statOrder = { 2684 }, level = 1, group = "TotemsCannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [335735137] = { "Totems cannot be Stunned" }, } }, ["FireDamagePerBuffUniqueJewel17"] = { affix = "", "Adds (3-5) to (8-12) Fire Attack Damage per Buff on you", statOrder = { 1150 }, level = 1, group = "FireDamagePerBuff", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [761505024] = { "Adds (3-5) to (8-12) Fire Attack Damage per Buff on you" }, } }, ["FireSpellDamagePerBuffUniqueJewel17"] = { affix = "", "Adds (2-3) to (5-8) Fire Spell Damage per Buff on you", statOrder = { 1151 }, level = 1, group = "FireSpellDamagePerBuff", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, tradeHashes = { [3434279150] = { "Adds (2-3) to (5-8) Fire Spell Damage per Buff on you" }, } }, @@ -3425,15 +3425,15 @@ return { ["DamageTakenOnFullESUnique__1"] = { affix = "", "15% increased Damage taken while on Full Energy Shield", statOrder = { 1894 }, level = 1, group = "DamageTakenOnFullES", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [969865219] = { "15% increased Damage taken while on Full Energy Shield" }, } }, ["ConvertLightningToColdUniqueRing34"] = { affix = "", "40% of Lightning Damage Converted to Cold Damage", statOrder = { 1639 }, level = 25, group = "ConvertLightningToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, tradeHashes = { [3627052716] = { "40% of Lightning Damage Converted to Cold Damage" }, } }, ["SpellChanceToShockFrozenEnemiesUniqueRing34"] = { affix = "", "Your spells have 100% chance to Shock against Frozen Enemies", statOrder = { 2564 }, level = 1, group = "SpellChanceToShockFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "caster", "ailment" }, tradeHashes = { [288651645] = { "Your spells have 100% chance to Shock against Frozen Enemies" }, } }, - ["ClawPhysDamageAndEvasionPerDexUniqueJewel47"] = { affix = "", "1% increased Evasion Rating per 3 Dexterity Allocated in Radius", "1% increased Claw Physical Damage per 3 Dexterity Allocated in Radius", "1% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius", statOrder = { 2740, 2741, 2756 }, level = 1, group = "ClawPhysDamageAndEvasionPerDex", weightKey = { }, weightVal = { }, modTags = { "evasion", "physical_damage", "defences", "damage", "physical", "attack" }, tradeHashes = { [3802517517] = { "" }, [1619923327] = { "1% increased Claw Physical Damage per 3 Dexterity Allocated in Radius" }, [915233352] = { "1% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius" }, [4113852051] = { "1% increased Evasion Rating per 3 Dexterity Allocated in Radius" }, } }, - ["ColdAndPhysicalNodesInRadiusSwapPropertiesUniqueJewel48_"] = { affix = "", "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage", "Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage", statOrder = { 2743, 2744 }, level = 1, group = "ColdAndPhysicalNodesInRadiusSwapProperties", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [3772485866] = { "Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage" }, [738100799] = { "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage" }, [3802517517] = { "" }, } }, - ["AllDamageInRadiusBecomesFireUniqueJewel49"] = { affix = "", "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage", statOrder = { 2742 }, level = 1, group = "AllDamageInRadiusBecomesFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3802517517] = { "" }, [3446950357] = { "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage" }, } }, - ["EnergyShieldInRadiusIncreasesArmourUniqueJewel50"] = { affix = "", "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value", statOrder = { 2745 }, level = 1, group = "EnergyShieldInRadiusIncreasesArmour", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [3802517517] = { "" }, [2605119037] = { "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value" }, } }, - ["LifeInRadiusBecomesEnergyShieldAtHalfValueUniqueJewel51"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield", statOrder = { 2746 }, level = 1, group = "LifeInRadiusBecomesEnergyShieldAtHalfValue", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [3802517517] = { "" }, [3194864913] = { "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield" }, } }, - ["LifePerIntelligenceInRadusUniqueJewel52"] = { affix = "", "Adds 1 to Maximum Life per 3 Intelligence Allocated in Radius", statOrder = { 2751 }, level = 1, group = "LifePerIntelligenceInRadus", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3802517517] = { "" }, [2865989731] = { "Adds 1 to Maximum Life per 3 Intelligence Allocated in Radius" }, } }, - ["AddedLightningDamagePerDexInRadiusUniqueJewel53"] = { affix = "", "Adds 1 to 2 Lightning damage to Attacks", "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius", statOrder = { 846, 2750 }, level = 1, group = "AddedLightningDamagePerDexInRadius", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [1754445556] = { "Adds 1 to 2 Lightning damage to Attacks" }, [778050954] = { "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius" }, [3802517517] = { "" }, } }, - ["LifePassivesBecomeManaPassivesInRadiusUniqueJewel54"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value", statOrder = { 2754 }, level = 1, group = "LifePassivesBecomeManaPassivesInRadius", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2479374428] = { "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value" }, [3802517517] = { "" }, } }, - ["DexterityAndIntelligenceGiveStrengthMeleeBonusInRadiusUniqueJewel55"] = { affix = "", "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus", statOrder = { 2755 }, level = 1, group = "DexterityAndIntelligenceGiveStrengthMeleeBonusInRadius", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [3802517517] = { "" }, [842363566] = { "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus" }, } }, + ["ClawPhysDamageAndEvasionPerDexUniqueJewel47"] = { affix = "", "1% increased Evasion Rating per 3 Dexterity Allocated in Radius", "1% increased Claw Physical Damage per 3 Dexterity Allocated in Radius", "1% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius", statOrder = { 2740, 2741, 2756 }, level = 1, group = "ClawPhysDamageAndEvasionPerDex", weightKey = { }, weightVal = { }, modTags = { "evasion", "physical_damage", "defences", "damage", "physical", "attack" }, tradeHashes = { [1619923327] = { "1% increased Claw Physical Damage per 3 Dexterity Allocated in Radius" }, [915233352] = { "1% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius" }, [4113852051] = { "1% increased Evasion Rating per 3 Dexterity Allocated in Radius" }, } }, + ["ColdAndPhysicalNodesInRadiusSwapPropertiesUniqueJewel48_"] = { affix = "", "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage", "Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage", statOrder = { 2743, 2744 }, level = 1, group = "ColdAndPhysicalNodesInRadiusSwapProperties", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, tradeHashes = { [738100799] = { "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage" }, [3772485866] = { "Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage" }, } }, + ["AllDamageInRadiusBecomesFireUniqueJewel49"] = { affix = "", "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage", statOrder = { 2742 }, level = 1, group = "AllDamageInRadiusBecomesFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [3446950357] = { "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage" }, } }, + ["EnergyShieldInRadiusIncreasesArmourUniqueJewel50"] = { affix = "", "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value", statOrder = { 2745 }, level = 1, group = "EnergyShieldInRadiusIncreasesArmour", weightKey = { }, weightVal = { }, modTags = { "armour", "energy_shield", "defences" }, tradeHashes = { [2605119037] = { "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value" }, } }, + ["LifeInRadiusBecomesEnergyShieldAtHalfValueUniqueJewel51"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield", statOrder = { 2746 }, level = 1, group = "LifeInRadiusBecomesEnergyShieldAtHalfValue", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "resource", "life", "defences" }, tradeHashes = { [3194864913] = { "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield" }, } }, + ["LifePerIntelligenceInRadusUniqueJewel52"] = { affix = "", "Adds 1 to Maximum Life per 3 Intelligence Allocated in Radius", statOrder = { 2751 }, level = 1, group = "LifePerIntelligenceInRadus", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [2865989731] = { "Adds 1 to Maximum Life per 3 Intelligence Allocated in Radius" }, } }, + ["AddedLightningDamagePerDexInRadiusUniqueJewel53"] = { affix = "", "Adds 1 to 2 Lightning damage to Attacks", "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius", statOrder = { 846, 2750 }, level = 1, group = "AddedLightningDamagePerDexInRadius", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [778050954] = { "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius" }, [1754445556] = { "Adds 1 to 2 Lightning damage to Attacks" }, } }, + ["LifePassivesBecomeManaPassivesInRadiusUniqueJewel54"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value", statOrder = { 2754 }, level = 1, group = "LifePassivesBecomeManaPassivesInRadius", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, tradeHashes = { [2479374428] = { "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value" }, } }, + ["DexterityAndIntelligenceGiveStrengthMeleeBonusInRadiusUniqueJewel55"] = { affix = "", "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus", statOrder = { 2755 }, level = 1, group = "DexterityAndIntelligenceGiveStrengthMeleeBonusInRadius", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [842363566] = { "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus" }, } }, ["LifeGainOnEndurangeChargeConsumptionUniqueBodyStrInt6"] = { affix = "", "Gain 100 Life when you lose an Endurance Charge", statOrder = { 2638 }, level = 1, group = "LifeGainOnEnduranceChargeConsumption", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3915702459] = { "Gain 100 Life when you lose an Endurance Charge" }, } }, ["SummonTotemCastSpeedUnique__1"] = { affix = "", "(14-20)% increased Totem Placement speed", statOrder = { 2250 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(14-20)% increased Totem Placement speed" }, } }, ["SummonTotemCastSpeedUnique__2"] = { affix = "", "(30-50)% increased Totem Placement speed", statOrder = { 2250 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, tradeHashes = { [3374165039] = { "(30-50)% increased Totem Placement speed" }, } }, @@ -3497,13 +3497,13 @@ return { ["MaximumManaOnKillPercentUnique__1"] = { affix = "", "Recover (1-3)% of maximum Mana on Kill", statOrder = { 1439 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [1030153674] = { "Recover (1-3)% of maximum Mana on Kill" }, } }, ["MaximumEnergyShieldOnKillPercentUnique__1"] = { affix = "", "Recover (3-5)% of maximum Energy Shield on Kill", statOrder = { 1438 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2406605753] = { "Recover (3-5)% of maximum Energy Shield on Kill" }, } }, ["MaximumEnergyShieldOnKillPercentUnique__2"] = { affix = "", "Recover 1% of maximum Energy Shield on Kill", statOrder = { 1438 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [2406605753] = { "Recover 1% of maximum Energy Shield on Kill" }, } }, - ["BurningArrowThresholdJewelUnique__1"] = { affix = "", "+10% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 1, group = "BurningArrowGroundTarAndFire", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3382807662] = { "+10% to Fire Damage over Time Multiplier" }, [223497523] = { "" }, } }, + ["BurningArrowThresholdJewelUnique__1"] = { affix = "", "+10% to Fire Damage over Time Multiplier", statOrder = { 1136 }, level = 1, group = "BurningArrowGroundTarAndFire", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3382807662] = { "+10% to Fire Damage over Time Multiplier" }, } }, ["DisplayManifestWeaponUnique__1"] = { affix = "", "Triggers Level 15 Manifest Dancing Dervishes on Rampage", "Cannot be used while Manifested", "Manifested Dancing Dervishes die when Rampage ends", statOrder = { 2939, 2940, 2941 }, level = 1, group = "DisplayManifestWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1414945937] = { "Manifested Dancing Dervishes die when Rampage ends" }, [398335579] = { "Cannot be used while Manifested" }, [4007938693] = { "Triggers Level 15 Manifest Dancing Dervishes on Rampage" }, } }, ["DisplayManifestWeaponUnique__2"] = { affix = "", "Triggers Level 15 Manifest Dancing Dervishes on Rampage", "Cannot be used while Manifested", "Manifested Dancing Dervishes die when Rampage ends", statOrder = { 2939, 2940, 2941 }, level = 1, group = "DisplayManifestWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1414945937] = { "Manifested Dancing Dervishes die when Rampage ends" }, [398335579] = { "Cannot be used while Manifested" }, [4007938693] = { "Triggers Level 15 Manifest Dancing Dervishes on Rampage" }, } }, - ["BarrageThresholdUnique__1"] = { affix = "", "With at least 40 Dexterity in Radius, Barrage fires an additional 6 Projectiles simultaneously on the first and final attacks", statOrder = { 2870 }, level = 1, group = "BarrageThreshold", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3802517517] = { "" }, [630867098] = { "With at least 40 Dexterity in Radius, Barrage fires an additional 6 Projectiles simultaneously on the first and final attacks" }, } }, - ["GroundSlamThresholdUnique__1"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam", "has a 50% increased angle", statOrder = { 2864, 2864.1 }, level = 1, group = "GroundSlamThreshold", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [156016608] = { "With at least 40 Strength in Radius, Ground Slam", "has a 50% increased angle" }, [3802517517] = { "" }, } }, + ["BarrageThresholdUnique__1"] = { affix = "", "With at least 40 Dexterity in Radius, Barrage fires an additional 6 Projectiles simultaneously on the first and final attacks", statOrder = { 2870 }, level = 1, group = "BarrageThreshold", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [630867098] = { "With at least 40 Dexterity in Radius, Barrage fires an additional 6 Projectiles simultaneously on the first and final attacks" }, } }, + ["GroundSlamThresholdUnique__1"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam", "has a 50% increased angle", statOrder = { 2864, 2864.1 }, level = 1, group = "GroundSlamThreshold", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [156016608] = { "With at least 40 Strength in Radius, Ground Slam", "has a 50% increased angle" }, } }, ["GroundSlamThresholdUnique__2"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam has a 35% chance", "to grant an Endurance Charge when you Stun an Enemy", statOrder = { 2863, 2863.1 }, level = 1, group = "GroundSlamThreshold2", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1559361866] = { "With at least 40 Strength in Radius, Ground Slam has a 35% chance", "to grant an Endurance Charge when you Stun an Enemy" }, } }, - ["SummonSkeletonsThresholdUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages", statOrder = { 2853 }, level = 1, group = "SummonSkeletonsThreshold", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3088991881] = { "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages" }, [3802517517] = { "" }, } }, + ["SummonSkeletonsThresholdUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages", statOrder = { 2853 }, level = 1, group = "SummonSkeletonsThreshold", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3088991881] = { "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages" }, } }, ["AddedDamagePerDexterityUnique__1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity", statOrder = { 2987 }, level = 1, group = "AddedDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2066426995] = { "Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity" }, } }, ["AddedDamagePerStrengthUnique__1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks per 25 Strength", statOrder = { 4412 }, level = 1, group = "AddedDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [787185456] = { "Adds 1 to 3 Physical Damage to Attacks per 25 Strength" }, } }, ["DisplayBlindAuraUnique__1"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 2988 }, level = 1, group = "DisplayBlindAura", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2826979740] = { "Nearby Enemies are Blinded" }, } }, @@ -3535,7 +3535,7 @@ return { ["SummonWolfOnKillUnique__1"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 566 }, level = 62, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1468606528] = { "Trigger Level 10 Summon Spectral Wolf on Kill" }, } }, ["SummonWolfOnKillUnique__1New"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 566 }, level = 25, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1468606528] = { "Trigger Level 10 Summon Spectral Wolf on Kill" }, } }, ["SummonWolfOnKillUnique__2_"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 566 }, level = 1, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1468606528] = { "Trigger Level 10 Summon Spectral Wolf on Kill" }, } }, - ["SummonWolfOnCritUnique__1"] = { affix = "", "20% chance to Trigger Level 25 Summon Spectral Wolf on Critical Hit with this Weapon", statOrder = { 527 }, level = 1, group = "SummonWolfOnCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [4221489692] = { "20% chance to Trigger Level 25 Summon Spectral Wolf on Critical Hit with this Weapon" }, [2795142527] = { "" }, } }, + ["SummonWolfOnCritUnique__1"] = { affix = "", "20% chance to Trigger Level 25 Summon Spectral Wolf on Critical Hit with this Weapon", statOrder = { 527 }, level = 1, group = "SummonWolfOnCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [4221489692] = { "20% chance to Trigger Level 25 Summon Spectral Wolf on Critical Hit with this Weapon" }, } }, ["SwordPhysicalAttackSpeedUnique__1"] = { affix = "", "35% increased Attack Speed with Swords", statOrder = { 1261 }, level = 80, group = "SwordAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [3293699237] = { "35% increased Attack Speed with Swords" }, } }, ["AxePhysicalDamageUnique__1"] = { affix = "", "80% increased Physical Damage with Axes", statOrder = { 1171 }, level = 80, group = "AxePhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2008219439] = { "80% increased Physical Damage with Axes" }, } }, ["DualWieldingPhysicalDamageUnique__1"] = { affix = "", "40% increased Physical Attack Damage while Dual Wielding", statOrder = { 1155 }, level = 1, group = "DualWieldingPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1274831335] = { "40% increased Physical Attack Damage while Dual Wielding" }, } }, @@ -3624,17 +3624,17 @@ return { ["MinionBlindImmunityUnique__1"] = { affix = "", "Minions cannot be Blinded", statOrder = { 3708 }, level = 1, group = "MinionBlindImmunity", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2684385509] = { "Minions cannot be Blinded" }, } }, ["DisplaySocketedMinionGemsSupportedByLifeLeechUnique__1"] = { affix = "", "Socketed Minion Gems are Supported by Level 16 Life Leech", statOrder = { 374 }, level = 1, group = "DisplaySocketedMinionGemsSupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "minion", "gem" }, tradeHashes = { [4006301249] = { "Socketed Minion Gems are Supported by Level 16 Life Leech" }, } }, ["MagicItemsDropIdentifiedUnique__1"] = { affix = "", "Found Magic Items drop Identified", statOrder = { 3710 }, level = 1, group = "MagicItemsDropIdentified", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3020069394] = { "Found Magic Items drop Identified" }, } }, - ["ManaPerStackableJewelUnique__1"] = { affix = "", "Gain 30 Mana per Grand Spectrum", statOrder = { 3711 }, level = 1, group = "ManaPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2592799343] = { "Gain 30 Mana per Grand Spectrum" }, [4230859323] = { "" }, } }, - ["ArmourPerStackableJewelUnique__1"] = { affix = "", "Gain 200 Armour per Grand Spectrum", statOrder = { 3712 }, level = 1, group = "ArmourPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [4230859323] = { "" }, [1166487805] = { "Gain 200 Armour per Grand Spectrum" }, } }, - ["IncreasedDamagePerStackableJewelUnique__1"] = { affix = "", "15% increased Elemental Damage per Grand Spectrum", statOrder = { 3715 }, level = 1, group = "IncreasedDamagePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3163738488] = { "15% increased Elemental Damage per Grand Spectrum" }, [4230859323] = { "" }, } }, - ["CriticalStrikeChancePerStackableJewelUnique__1"] = { affix = "", "25% increased Critical Hit Chance per Grand Spectrum", statOrder = { 3714 }, level = 1, group = "CriticalStrikeChancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [4230859323] = { "" }, [2948375275] = { "25% increased Critical Hit Chance per Grand Spectrum" }, } }, - ["AllResistancePerStackableJewelUnique__1"] = { affix = "", "+7% to all Elemental Resistances per socketed Grand Spectrum", statOrder = { 3716 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [4230859323] = { "" }, [242161915] = { "+7% to all Elemental Resistances per socketed Grand Spectrum" }, } }, - ["MaximumLifePerStackableJewelUnique__1"] = { affix = "", "5% increased Maximum Life per socketed Grand Spectrum", statOrder = { 3717 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [332217711] = { "5% increased Maximum Life per socketed Grand Spectrum" }, [4230859323] = { "" }, } }, - ["AvoidElementalAilmentsPerStackableJewelUnique__1"] = { affix = "", "12% chance to Avoid Elemental Ailments per Grand Spectrum", statOrder = { 3713 }, level = 1, group = "AvoidElementalAilmentsPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [4230859323] = { "" }, [611279043] = { "12% chance to Avoid Elemental Ailments per Grand Spectrum" }, } }, - ["MinionCriticalStrikeMultiplierPerStackableJewelUnique__1"] = { affix = "", "Minions have +10% to Critical Damage Bonus per Grand Spectrum", statOrder = { 3721 }, level = 1, group = "MinionCriticalStrikeMultiplierPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [4230859323] = { "" }, [482240997] = { "Minions have +10% to Critical Damage Bonus per Grand Spectrum" }, } }, - ["MinimumEnduranceChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Endurance Charges per Grand Spectrum", statOrder = { 3718 }, level = 1, group = "MinimumEnduranceChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [4230859323] = { "" }, [2276643899] = { "+1 to Minimum Endurance Charges per Grand Spectrum" }, } }, - ["MinimumFrenzyChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Frenzy Charges per Grand Spectrum", statOrder = { 3719 }, level = 1, group = "MinimumFrenzyChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [4230859323] = { "" }, [596758264] = { "+1 to Minimum Frenzy Charges per Grand Spectrum" }, } }, - ["MinimumPowerChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Power Charges per Grand Spectrum", statOrder = { 3720 }, level = 1, group = "MinimumPowerChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [4230859323] = { "" }, [308799121] = { "+1 to Minimum Power Charges per Grand Spectrum" }, } }, + ["ManaPerStackableJewelUnique__1"] = { affix = "", "Gain 30 Mana per Grand Spectrum", statOrder = { 3711 }, level = 1, group = "ManaPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2592799343] = { "Gain 30 Mana per Grand Spectrum" }, } }, + ["ArmourPerStackableJewelUnique__1"] = { affix = "", "Gain 200 Armour per Grand Spectrum", statOrder = { 3712 }, level = 1, group = "ArmourPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "armour", "defences" }, tradeHashes = { [1166487805] = { "Gain 200 Armour per Grand Spectrum" }, } }, + ["IncreasedDamagePerStackableJewelUnique__1"] = { affix = "", "15% increased Elemental Damage per Grand Spectrum", statOrder = { 3715 }, level = 1, group = "IncreasedDamagePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3163738488] = { "15% increased Elemental Damage per Grand Spectrum" }, } }, + ["CriticalStrikeChancePerStackableJewelUnique__1"] = { affix = "", "25% increased Critical Hit Chance per Grand Spectrum", statOrder = { 3714 }, level = 1, group = "CriticalStrikeChancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [2948375275] = { "25% increased Critical Hit Chance per Grand Spectrum" }, } }, + ["AllResistancePerStackableJewelUnique__1"] = { affix = "", "+7% to all Elemental Resistances per socketed Grand Spectrum", statOrder = { 3716 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, tradeHashes = { [242161915] = { "+7% to all Elemental Resistances per socketed Grand Spectrum" }, } }, + ["MaximumLifePerStackableJewelUnique__1"] = { affix = "", "5% increased Maximum Life per socketed Grand Spectrum", statOrder = { 3717 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [332217711] = { "5% increased Maximum Life per socketed Grand Spectrum" }, } }, + ["AvoidElementalAilmentsPerStackableJewelUnique__1"] = { affix = "", "12% chance to Avoid Elemental Ailments per Grand Spectrum", statOrder = { 3713 }, level = 1, group = "AvoidElementalAilmentsPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental" }, tradeHashes = { [611279043] = { "12% chance to Avoid Elemental Ailments per Grand Spectrum" }, } }, + ["MinionCriticalStrikeMultiplierPerStackableJewelUnique__1"] = { affix = "", "Minions have +10% to Critical Damage Bonus per Grand Spectrum", statOrder = { 3721 }, level = 1, group = "MinionCriticalStrikeMultiplierPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, tradeHashes = { [482240997] = { "Minions have +10% to Critical Damage Bonus per Grand Spectrum" }, } }, + ["MinimumEnduranceChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Endurance Charges per Grand Spectrum", statOrder = { 3718 }, level = 1, group = "MinimumEnduranceChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [2276643899] = { "+1 to Minimum Endurance Charges per Grand Spectrum" }, } }, + ["MinimumFrenzyChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Frenzy Charges per Grand Spectrum", statOrder = { 3719 }, level = 1, group = "MinimumFrenzyChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [596758264] = { "+1 to Minimum Frenzy Charges per Grand Spectrum" }, } }, + ["MinimumPowerChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Power Charges per Grand Spectrum", statOrder = { 3720 }, level = 1, group = "MinimumPowerChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [308799121] = { "+1 to Minimum Power Charges per Grand Spectrum" }, } }, ["AddedColdDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 10 to 20 Cold Damage to Spells per Power Charge", statOrder = { 1507 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3408048164] = { "Adds 10 to 20 Cold Damage to Spells per Power Charge" }, } }, ["AddedColdDamagePerPowerChargeUnique__2"] = { affix = "", "Adds 50 to 70 Cold Damage to Spells per Power Charge", statOrder = { 1507 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, tradeHashes = { [3408048164] = { "Adds 50 to 70 Cold Damage to Spells per Power Charge" }, } }, ["GainManaOnKillingFrozenEnemyUnique__1"] = { affix = "", "+(20-25) Mana gained on Killing a Frozen Enemy", statOrder = { 9101 }, level = 1, group = "GainManaOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3304801725] = { "+(20-25) Mana gained on Killing a Frozen Enemy" }, } }, @@ -3681,9 +3681,9 @@ return { ["OnlySocketCorruptedGemsUnique__1"] = { affix = "", "You can only Socket Corrupted Gems in this item", statOrder = { 7168 }, level = 1, group = "OnlySocketCorruptedGems", weightKey = { }, weightVal = { }, modTags = { "gem" }, tradeHashes = { [608438307] = { "You can only Socket Corrupted Gems in this item" }, } }, ["CurseLevel10VulnerabilityOnHitUnique__1"] = { affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2193 }, level = 1, group = "CurseLevel10VulnerabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, tradeHashes = { [2213584313] = { "Curse Enemies with Vulnerability on Hit" }, } }, ["FireResistConvertedToBlockChanceScaledJewelUnique__1_"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Attack Damage at 50% of its value", statOrder = { 7398, 7398.1 }, level = 1, group = "FireResistConvertedToBlockChanceScaledJewel", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [3931143552] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Attack Damage at 50% of its value" }, } }, - ["FireResistAlsoGrantsEnduranceChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill", statOrder = { 7399, 7399.1 }, level = 1, group = "FireResistAlsoGrantsEnduranceChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [3802517517] = { "" }, [1645524575] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill" }, } }, - ["ColdResistAlsoGrantsFrenzyChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill", statOrder = { 7376, 7376.1 }, level = 1, group = "ColdResistAlsoGrantsFrenzyChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3802517517] = { "" }, [509677462] = { "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill" }, } }, - ["LightningResistAlsoGrantsPowerChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill", statOrder = { 7412, 7412.1 }, level = 1, group = "LightningResistAlsoGrantsPowerChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3802517517] = { "" }, [926444104] = { "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill" }, } }, + ["FireResistAlsoGrantsEnduranceChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill", statOrder = { 7399, 7399.1 }, level = 1, group = "FireResistAlsoGrantsEnduranceChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1645524575] = { "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill" }, } }, + ["ColdResistAlsoGrantsFrenzyChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill", statOrder = { 7376, 7376.1 }, level = 1, group = "ColdResistAlsoGrantsFrenzyChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [509677462] = { "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill" }, } }, + ["LightningResistAlsoGrantsPowerChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill", statOrder = { 7412, 7412.1 }, level = 1, group = "LightningResistAlsoGrantsPowerChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [926444104] = { "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill" }, } }, ["LightningStrikesOnCritUnique__1"] = { affix = "", "Trigger Level 12 Lightning Bolt when you deal a Critical Hit", statOrder = { 551 }, level = 50, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [3241494164] = { "Trigger Level 12 Lightning Bolt when you deal a Critical Hit" }, } }, ["LightningStrikesOnCritUnique__2"] = { affix = "", "Trigger Level 30 Lightning Bolt when you deal a Critical Hit", statOrder = { 551 }, level = 87, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, tradeHashes = { [3241494164] = { "Trigger Level 30 Lightning Bolt when you deal a Critical Hit" }, } }, ["ArcticArmourBuffEffectUnique__1_"] = { affix = "", "50% increased Arctic Armour Buff Effect", statOrder = { 3580 }, level = 1, group = "ArcticArmourBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3995612171] = { "50% increased Arctic Armour Buff Effect" }, } }, @@ -3693,7 +3693,7 @@ return { ["IncreasedLightningDamageTakenUnique__1"] = { affix = "", "40% increased Lightning Damage taken", statOrder = { 2982 }, level = 1, group = "IncreasedLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, tradeHashes = { [1276918229] = { "40% increased Lightning Damage taken" }, } }, ["PercentLightningDamageTakenFromManaBeforeLifeUnique__1"] = { affix = "", "30% of Lightning Damage is taken from Mana before Life", statOrder = { 3723 }, level = 1, group = "PercentLightningDamageTakenFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "elemental", "lightning" }, tradeHashes = { [2477735984] = { "30% of Lightning Damage is taken from Mana before Life" }, } }, ["PercentManaRecoveredWhenYouShockUnique__1"] = { affix = "", "Recover 3% of maximum Mana when you Shock an Enemy", statOrder = { 3725 }, level = 1, group = "PercentManaRecoveredWhenYouShock", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [2524029637] = { "Recover 3% of maximum Mana when you Shock an Enemy" }, } }, - ["ChanceToCastOnManaSpentUnique__1"] = { affix = "", "50% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", statOrder = { 536, 536.1 }, level = 1, group = "ChanceToCastOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, tradeHashes = { [776897797] = { "0% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, [1212497891] = { "50% chance to Trigger Socketed Spells when you Spend at least 0 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, } }, + ["ChanceToCastOnManaSpentUnique__1"] = { affix = "", "50% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", statOrder = { 536, 536.1 }, level = 1, group = "ChanceToCastOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, tradeHashes = { [723388324] = { "50% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown" }, } }, ["AdditionalChanceToBlockInOffHandUnique_1"] = { affix = "", "+8% Chance to Block Attack Damage when in Off Hand", statOrder = { 3738 }, level = 1, group = "AdditionalChanceToBlockInOffHand", weightKey = { }, weightVal = { }, modTags = { "block" }, tradeHashes = { [2040585053] = { "+8% Chance to Block Attack Damage when in Off Hand" }, } }, ["CriticalStrikeChanceInMainHandUnique_1"] = { affix = "", "(60-80)% increased Global Critical Hit Chance when in Main Hand", statOrder = { 3737 }, level = 1, group = "CriticalStrikeChanceInMainHand", weightKey = { }, weightVal = { }, modTags = { "critical" }, tradeHashes = { [3404168630] = { "(60-80)% increased Global Critical Hit Chance when in Main Hand" }, } }, ["CriticalStrikeMultiplierPerGreenSocketUnique_1"] = { affix = "", "+10% to Global Critical Damage Bonus per Green Socket", statOrder = { 2383 }, level = 1, group = "CriticalStrikeMultiplierPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, tradeHashes = { [35810390] = { "+10% to Global Critical Damage Bonus per Green Socket" }, } }, @@ -3757,7 +3757,7 @@ return { ["GlobalAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1220 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds 1 to (48-60) Lightning Damage" }, } }, ["GlobalAddedLightningDamageUnique__4"] = { affix = "", "Adds (6-10) to (33-38) Lightning Damage", statOrder = { 1220 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [1334060246] = { "Adds (6-10) to (33-38) Lightning Damage" }, } }, ["EnergyShieldRegenerationperMinuteWhileOnLowLifeTransformedUnique__1"] = { affix = "", "Regenerate 2% of maximum Energy Shield per second while on Low Life", statOrder = { 1483 }, level = 45, group = "EnergyShieldRegenerationperMinuteWhileOnLowLife", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [115109959] = { "Regenerate 2% of maximum Energy Shield per second while on Low Life" }, } }, - ["ReflectPhysicalDamageToSelfOnHitUnique__1"] = { affix = "", "Enemies you Attack Reflect 100 Physical Damage to you", statOrder = { 1854 }, level = 1, group = "ReflectPhysicalDamageToSelfOnHit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2319377249] = { "Enemies you Attack Reflect 100 Physical Damage to you" }, } }, + ["ReflectPhysicalDamageToSelfOnHitUnique__1"] = { affix = "", "Enemies you Attack Reflect 100 Physical Damage to you", statOrder = { 1854 }, level = 1, group = "ReflectPhysicalDamageToSelfOnHit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [2006370586] = { "Enemies you Attack Reflect 100 Physical Damage to you" }, } }, ["IgnoreHexproofUnique___1"] = { affix = "", "Curses you inflict can affect Hexproof Enemies", statOrder = { 2269 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1367119630] = { "Curses you inflict can affect Hexproof Enemies" }, } }, ["PoisonCursedEnemiesOnHitUnique__1"] = { affix = "", "Poison Cursed Enemies on hit", statOrder = { 3761 }, level = 1, group = "PoisonCursedEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [4266201818] = { "Poison Cursed Enemies on hit" }, } }, ["ChanceToPoisonCursedEnemiesOnHitUnique__1"] = { affix = "", "Always Poison on Hit against Cursed Enemies", statOrder = { 3762 }, level = 1, group = "ChanceToPoisonCursedEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, tradeHashes = { [2208857094] = { "Always Poison on Hit against Cursed Enemies" }, } }, @@ -3771,7 +3771,7 @@ return { ["MinionFireResistUnique__1"] = { affix = "", "Minions have +40% to Fire Resistance", statOrder = { 8500 }, level = 1, group = "MinionFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance", "minion" }, tradeHashes = { [1889350679] = { "Minions have +40% to Fire Resistance" }, } }, ["MinionPhysicalDamageAddedAsColdUnique__1_"] = { affix = "", "Minions gain 20% of their Physical Damage as Extra Cold Damage", statOrder = { 3744 }, level = 1, group = "MinionPhysicalDamageAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "minion" }, tradeHashes = { [351413557] = { "Minions gain 20% of their Physical Damage as Extra Cold Damage" }, } }, ["FlaskStunImmunityUnique__1"] = { affix = "", "Cannot be Stunned during Effect", statOrder = { 732 }, level = 1, group = "FlaskStunImmunity", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [3589217170] = { "Cannot be Stunned during Effect" }, } }, - ["PhasingOnTrapTriggeredUnique__1"] = { affix = "", "30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy", statOrder = { 3792 }, level = 1, group = "PhasingOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1894653141] = { "0% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy" }, [543539632] = { "30% chance to gain Phasing for 3 seconds when your Trap is triggered by an Enemy" }, } }, + ["PhasingOnTrapTriggeredUnique__1"] = { affix = "", "30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy", statOrder = { 3792 }, level = 1, group = "PhasingOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [144887967] = { "30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy" }, } }, ["GainEnergyShieldOnTrapTriggeredUnique__1_"] = { affix = "", "Recover 50 Energy Shield when your Trap is triggered by an Enemy", statOrder = { 3794 }, level = 1, group = "GainEnergyShieldOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [1073384532] = { "Recover 50 Energy Shield when your Trap is triggered by an Enemy" }, } }, ["GainLifeOnTrapTriggeredUnique__1"] = { affix = "", "Recover 100 Life when your Trap is triggered by an Enemy", statOrder = { 3793 }, level = 1, group = "GainLifeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3952196842] = { "Recover 100 Life when your Trap is triggered by an Enemy" }, } }, ["GainLifeOnTrapTriggeredUnique__2__"] = { affix = "", "Recover (20-30) Life when your Trap is triggered by an Enemy", statOrder = { 3793 }, level = 1, group = "GainLifeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, tradeHashes = { [3952196842] = { "Recover (20-30) Life when your Trap is triggered by an Enemy" }, } }, @@ -3818,7 +3818,7 @@ return { ["MagicMonsterItemRarityUnique__1"] = { affix = "", "(100-150)% increased Rarity of Items Dropped by Slain Magic Enemies", statOrder = { 7462 }, level = 1, group = "MagicMonsterItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3433676080] = { "(100-150)% increased Rarity of Items Dropped by Slain Magic Enemies" }, } }, ["HeistContractChestRewardsDuplicated"] = { affix = "", "Heist Chests have a 100% chance to Duplicate their contents", "Monsters have 100% more Life", statOrder = { 5027, 7810 }, level = 1, group = "HeistContractChestRewardsDuplicated", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3026134008] = { "Monsters have 100% more Life" }, [2747693610] = { "Heist Chests have a 100% chance to Duplicate their contents" }, } }, ["HeistContractAdditionalIntelligence"] = { affix = "", "Completing a Heist generates 3 additional Reveals", "Heist Chests have 25% chance to contain nothing", statOrder = { 7806, 7807 }, level = 1, group = "HeistContractAdditionalIntelligence", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3038236553] = { "Heist Chests have 25% chance to contain nothing" }, [2309146693] = { "Completing a Heist generates 3 additional Reveals" }, } }, - ["HeistContractNPCPerksDoubled"] = { affix = "", "50% reduced time before Lockdown", "Rogue Perks are doubled", statOrder = { 5767, 7811 }, level = 1, group = "HeistContractNPCPerksDoubled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [4004160031] = { "" }, [429193272] = { "50% reduced time before Lockdown" }, [898812928] = { "Rogue Perks are doubled" }, } }, + ["HeistContractNPCPerksDoubled"] = { affix = "", "50% reduced time before Lockdown", "Rogue Perks are doubled", statOrder = { 5767, 7811 }, level = 1, group = "HeistContractNPCPerksDoubled", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [429193272] = { "50% reduced time before Lockdown" }, [898812928] = { "Rogue Perks are doubled" }, } }, ["HeistContractBetterTargetValue"] = { affix = "", "Rogue Equipment cannot be found", "200% more Rogue's Marker value of primary Heist Target", statOrder = { 7808, 7809 }, level = 1, group = "HeistContractBetterTargetValue", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3009603087] = { "200% more Rogue's Marker value of primary Heist Target" }, [1045213941] = { "Rogue Equipment cannot be found" }, } }, ["CriticalStrikeChanceForForkingArrowsUnique__1"] = { affix = "", "(150-200)% increased Critical Hit Chance with arrows that Fork", statOrder = { 3869 }, level = 1, group = "CriticalStrikeChanceForForkingArrows", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, tradeHashes = { [4169623196] = { "(150-200)% increased Critical Hit Chance with arrows that Fork" }, } }, ["ArrowsAlwaysCritAfterPiercingUnique___1"] = { affix = "", "Arrows Pierce all Targets after Chaining", statOrder = { 3872 }, level = 1, group = "ArrowsAlwaysCritAfterPiercing", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1997151732] = { "Arrows Pierce all Targets after Chaining" }, } }, @@ -3837,7 +3837,7 @@ return { ["DealNoElementalDamageUnique__2"] = { affix = "", "Deal no Elemental Damage", statOrder = { 5692 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2998305364] = { "Deal no Elemental Damage" }, } }, ["DealNoElementalDamageUnique__3"] = { affix = "", "Deal no Elemental Damage", statOrder = { 5692 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [2998305364] = { "Deal no Elemental Damage" }, } }, ["TakeFireDamageOnIgniteUnique__1"] = { affix = "", "Take 100 Fire Damage when you Ignite an Enemy", statOrder = { 6153 }, level = 1, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2518598473] = { "Take 100 Fire Damage when you Ignite an Enemy" }, } }, - ["ChanceForSpectersToGainSoulEaterOnKillUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill", statOrder = { 7432 }, level = 1, group = "ChanceForSpectersToGainSoulEaterOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3802517517] = { "" }, [2390273715] = { "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill" }, } }, + ["ChanceForSpectersToGainSoulEaterOnKillUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill", statOrder = { 7432 }, level = 1, group = "ChanceForSpectersToGainSoulEaterOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [2390273715] = { "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill" }, } }, ["MovementSkillsDealNoPhysicalDamageUnique__1"] = { affix = "", "Movement Skills deal no Physical Damage", statOrder = { 8581 }, level = 1, group = "MovementSkillsDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, tradeHashes = { [4114010855] = { "Movement Skills deal no Physical Damage" }, } }, ["GainPhasingIfKilledRecentlyUnique__1"] = { affix = "", "You have Phasing if you've Killed Recently", statOrder = { 6397 }, level = 1, group = "GainPhasingIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3489372920] = { "You have Phasing if you've Killed Recently" }, } }, ["MovementSkillsCostNoManaUnique__1"] = { affix = "", "Movement Skills Cost no Mana", statOrder = { 3055 }, level = 1, group = "MovementSkillsCostNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [3086866381] = { "Movement Skills Cost no Mana" }, } }, @@ -3974,8 +3974,8 @@ return { ["PlayerFarShotUnique__1"] = { affix = "", "Far Shot", statOrder = { 10077 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2483362276] = { "Far Shot" }, } }, ["MinionSkillManaCostUnique__1_"] = { affix = "", "(10-15)% reduced Mana Cost of Minion Skills", statOrder = { 8530 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [2969128501] = { "(10-15)% reduced Mana Cost of Minion Skills" }, } }, ["MinionSkillManaCostUnique__2"] = { affix = "", "(20-30)% reduced Mana Cost of Minion Skills", statOrder = { 8530 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, tradeHashes = { [2969128501] = { "(20-30)% reduced Mana Cost of Minion Skills" }, } }, - ["TriggeredAbyssalCryUnique__1"] = { affix = "", "Trigger Level 1 Intimidating Cry on Hit", statOrder = { 599 }, level = 1, group = "TriggeredAbyssalCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [311420892] = { "" }, [1795756125] = { "Trigger Level 1 Intimidating Cry on Hit" }, } }, - ["TriggeredLightningWarpUnique__1__"] = { affix = "", "Trigger Level 15 Lightning Warp on Hit with this Weapon", statOrder = { 530 }, level = 1, group = "TriggeredLightningWarp", weightKey = { }, weightVal = { }, modTags = { "skill", "caster" }, tradeHashes = { [1571803312] = { "" }, [1527893390] = { "Trigger Level 15 Lightning Warp on Hit with this Weapon" }, [311420892] = { "" }, } }, + ["TriggeredAbyssalCryUnique__1"] = { affix = "", "Trigger Level 1 Intimidating Cry on Hit", statOrder = { 599 }, level = 1, group = "TriggeredAbyssalCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1795756125] = { "Trigger Level 1 Intimidating Cry on Hit" }, } }, + ["TriggeredLightningWarpUnique__1__"] = { affix = "", "Trigger Level 15 Lightning Warp on Hit with this Weapon", statOrder = { 530 }, level = 1, group = "TriggeredLightningWarp", weightKey = { }, weightVal = { }, modTags = { "skill", "caster" }, tradeHashes = { [1527893390] = { "Trigger Level 15 Lightning Warp on Hit with this Weapon" }, } }, ["SummonSkeletonsNumberOfSkeletonsToSummonUnique__1"] = { affix = "", "Summon 4 additional Skeletons with Summon Skeletons", statOrder = { 3559 }, level = 1, group = "SummonSkeletonsNumberOfSkeletonsToSummon", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [1589090910] = { "Summon 4 additional Skeletons with Summon Skeletons" }, } }, ["SummonSkeletonsCooldownTimeUnique__1"] = { affix = "", "+1 second to Summon Skeleton Cooldown", statOrder = { 9565 }, level = 1, group = "SummonSkeletonsCooldownTime", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [3013430129] = { "+1 second to Summon Skeleton Cooldown" }, } }, ["EnergyShieldRechargeStartsWhenStunnedUnique__1"] = { affix = "", "Energy Shield Recharge starts when you are Stunned", statOrder = { 6022 }, level = 1, group = "EnergyShieldRechargeStartsWhenStunned", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "defences" }, tradeHashes = { [788946728] = { "Energy Shield Recharge starts when you are Stunned" }, } }, @@ -4055,7 +4055,7 @@ return { ["ManaRegeneratedPerSecondPerPowerChargeUnique__1"] = { affix = "", "Regenerate 2 Mana per Second per Power Charge", statOrder = { 7518 }, level = 1, group = "ManaRegeneratedPerSecondPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, tradeHashes = { [4084763463] = { "Regenerate 2 Mana per Second per Power Charge" }, } }, ["GainARandomChargePerSecondWhileStationaryUnique__1"] = { affix = "", "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary", statOrder = { 6413 }, level = 1, group = "GainARandomChargePerSecondWhileStationary", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [1438403666] = { "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary" }, } }, ["LoseAllChargesOnMoveUnique__1"] = { affix = "", "Lose all Frenzy, Endurance, and Power Charges when you Move", statOrder = { 7445 }, level = 1, group = "LoseAllChargesOnMove", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, tradeHashes = { [31415336] = { "Lose all Frenzy, Endurance, and Power Charges when you Move" }, } }, - ["PassiveEffectivenessJewelUnique__1_"] = { affix = "", "50% increased Effect of non-Keystone Passive Skills in Radius", "Notable Passive Skills in Radius grant nothing", statOrder = { 7421, 7422 }, level = 1, group = "PassiveEffectivenessJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [607548408] = { "50% increased Effect of non-Keystone Passive Skills in Radius" }, [2627243269] = { "Notable Passive Skills in Radius grant nothing" }, [3802517517] = { "" }, } }, + ["PassiveEffectivenessJewelUnique__1_"] = { affix = "", "50% increased Effect of non-Keystone Passive Skills in Radius", "Notable Passive Skills in Radius grant nothing", statOrder = { 7421, 7422 }, level = 1, group = "PassiveEffectivenessJewel", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [607548408] = { "50% increased Effect of non-Keystone Passive Skills in Radius" }, [2627243269] = { "Notable Passive Skills in Radius grant nothing" }, } }, ["DegradingMovementSpeedDuringFlaskEffectUnique__1"] = { affix = "", "50% increased Attack, Cast and Movement Speed during Effect", "Reduce Attack, Cast and Movement Speed 10% every second during Effect", statOrder = { 795, 796 }, level = 1, group = "DegradingMovementSpeedDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "attack", "caster", "speed" }, tradeHashes = { [1878928358] = { "50% increased Attack, Cast and Movement Speed during Effect" }, [3625168971] = { "Reduce Attack, Cast and Movement Speed 10% every second during Effect" }, } }, ["TriggeredFireAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Fire Aegis when Equipped", statOrder = { 549 }, level = 1, group = "TriggeredFireAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [1128763150] = { "Triggers Level 20 Fire Aegis when Equipped" }, } }, ["TriggeredColdAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Cold Aegis when Equipped", statOrder = { 547 }, level = 1, group = "TriggeredColdAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [3918947537] = { "Triggers Level 20 Cold Aegis when Equipped" }, } }, @@ -4179,9 +4179,9 @@ return { ["AviansFlightDurationUnique__1"] = { affix = "", "+(-2-2) seconds to Avian's Flight Duration", statOrder = { 4464 }, level = 1, group = "AviansFlightDuration", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1251731548] = { "+(-2-2) seconds to Avian's Flight Duration" }, } }, ["GrantsAvianTornadoUnique__1__"] = { affix = "", "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight", statOrder = { 572 }, level = 1, group = "GrantsAvianTornado", weightKey = { }, weightVal = { }, modTags = { "skill" }, tradeHashes = { [2554328719] = { "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight" }, } }, ["ElementalDamageUniqueJewel_1"] = { affix = "", "(10-15)% increased Elemental Damage", statOrder = { 1651 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, tradeHashes = { [3141070085] = { "(10-15)% increased Elemental Damage" }, } }, - ["ElementalHitDisableFireUniqueJewel_1"] = { affix = "", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire", statOrder = { 7391, 7394 }, level = 1, group = "ElementalHitDisableFireJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [63111803] = { "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire" }, [1813069390] = { "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage" }, [3802517517] = { "" }, } }, - ["ElementalHitDisableColdUniqueJewel_1"] = { affix = "", "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage", "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold", statOrder = { 7390, 7393 }, level = 1, group = "ElementalHitDisableColdJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [3802517517] = { "" }, [2864618930] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold" }, [3286480398] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage" }, } }, - ["ElementalHitDisableLightningUniqueJewel_1"] = { affix = "", "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage", "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning", statOrder = { 7392, 7395 }, level = 1, group = "ElementalHitDisableLightningJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [3802517517] = { "" }, [637033100] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning" }, [2053992416] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage" }, } }, + ["ElementalHitDisableFireUniqueJewel_1"] = { affix = "", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire", statOrder = { 7391, 7394 }, level = 1, group = "ElementalHitDisableFireJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, tradeHashes = { [63111803] = { "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire" }, [1813069390] = { "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage" }, } }, + ["ElementalHitDisableColdUniqueJewel_1"] = { affix = "", "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage", "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold", statOrder = { 7390, 7393 }, level = 1, group = "ElementalHitDisableColdJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, tradeHashes = { [3286480398] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage" }, [2864618930] = { "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold" }, } }, + ["ElementalHitDisableLightningUniqueJewel_1"] = { affix = "", "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage", "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning", statOrder = { 7392, 7395 }, level = 1, group = "ElementalHitDisableLightningJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, tradeHashes = { [2053992416] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage" }, [637033100] = { "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning" }, } }, ["ChargeBonusEnduranceChargeDuration"] = { affix = "", "(20-40)% increased Endurance Charge Duration", statOrder = { 1789 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, tradeHashes = { [1170174456] = { "(20-40)% increased Endurance Charge Duration" }, } }, ["ChargeBonusFrenzyChargeDuration"] = { affix = "", "(20-40)% increased Frenzy Charge Duration", statOrder = { 1791 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, tradeHashes = { [3338298622] = { "(20-40)% increased Frenzy Charge Duration" }, } }, ["ChargeBonusPowerChargeDuration"] = { affix = "", "(20-40)% increased Power Charge Duration", statOrder = { 1806 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, tradeHashes = { [3872306017] = { "(20-40)% increased Power Charge Duration" }, } }, @@ -4243,7 +4243,7 @@ return { ["HitsIgnoreChaosResistanceAllElderItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items", statOrder = { 6770 }, level = 1, group = "HitsIgnoreChaosResistanceAllElderItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, tradeHashes = { [89314980] = { "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items" }, } }, ["ColdDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%", statOrder = { 5296 }, level = 1, group = "ColdDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, tradeHashes = { [2517031897] = { "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%" }, } }, ["LightningDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75%", statOrder = { 7077 }, level = 1, group = "LightningDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, tradeHashes = { [2642525868] = { "(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75%" }, } }, - ["FlaskConsecratedGroundDurationUnique__1"] = { affix = "", "(15-30)% reduced Duration", statOrder = { 907 }, level = 1, group = "FlaskConsecratedGroundDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(15-30)% reduced Duration" }, } }, + ["FlaskConsecratedGroundDurationUnique__1"] = { affix = "", "(15-30)% reduced Duration", statOrder = { 907 }, level = 1, group = "FlaskConsecratedGroundDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(15-30)% reduced Duration" }, } }, ["FlaskConsecratedGroundAreaOfEffectUnique__1_"] = { affix = "", "Consecrated Ground created by this Flask has Tripled Radius", statOrder = { 639 }, level = 1, group = "FlaskConsecratedGroundAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [806698863] = { "Consecrated Ground created by this Flask has Tripled Radius" }, } }, ["FlaskConsecratedGroundDamageTakenUnique__1"] = { affix = "", "Consecrated Ground created during Effect applies (7-10)% increased Damage taken to Enemies", statOrder = { 737 }, level = 1, group = "FlaskConsecratedGroundDamageTaken", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, tradeHashes = { [1866211373] = { "Consecrated Ground created during Effect applies (7-10)% increased Damage taken to Enemies" }, } }, ["FlaskConsecratedGroundEffectUnique__1_"] = { affix = "", "+(1-2)% to Critical Hit Chance against Enemies on Consecrated Ground during Effect", statOrder = { 733 }, level = 1, group = "FlaskConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, tradeHashes = { [1535051459] = { "+(1-2)% to Critical Hit Chance against Enemies on Consecrated Ground during Effect" }, } }, @@ -4303,13 +4303,13 @@ return { ["HeraldBonusAgonyEffect"] = { affix = "", "Herald of Agony has (40-60)% increased Buff Effect", statOrder = { 6701 }, level = 1, group = "HeraldBonusAgonyEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2572910724] = { "Herald of Agony has (40-60)% increased Buff Effect" }, } }, ["HeraldBonusAgonyMinionDamage_"] = { affix = "", "Agony Crawler deals (70-100)% increased Damage", statOrder = { 4130 }, level = 1, group = "HeraldBonusAgonyMinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, tradeHashes = { [786460697] = { "Agony Crawler deals (70-100)% increased Damage" }, } }, ["HeraldBonusAgonyChaosResist_"] = { affix = "", "+(31-43)% to Chaos Resistance while affected by Herald of Agony", statOrder = { 5212 }, level = 1, group = "HeraldBonusAgonyChaosResist", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, tradeHashes = { [3456816469] = { "+(31-43)% to Chaos Resistance while affected by Herald of Agony" }, } }, - ["UniqueJewelAlternateTreeInRadiusVaal"] = { affix = "", "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusKarui"] = { affix = "", "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusMaraketh"] = { affix = "", "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusTemplar"] = { affix = "", "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusEternal"] = { affix = "", "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusKalguur"] = { affix = "", "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [3787436548] = { "Historic" }, } }, - ["UniqueJewelAlternateTreeInRadiusAbyssal"] = { affix = "", "Glorifying the defilement of (79-30977) souls in tribute to Amanamu", "Passives in radius are Conquered by the Abyssals", "Desecration makes this item unstable", "Historic", statOrder = { 11, 11.1, 11.2, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3802517517] = { "" }, [2778427270] = { "" }, [366541484] = { "" }, [3004613329] = { "" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusVaal"] = { affix = "", "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusKarui"] = { affix = "", "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusMaraketh"] = { affix = "", "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusTemplar"] = { affix = "", "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusEternal"] = { affix = "", "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusKalguur"] = { affix = "", "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur", "Historic", statOrder = { 11, 11.1, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur" }, [3787436548] = { "Historic" }, } }, + ["UniqueJewelAlternateTreeInRadiusAbyssal"] = { affix = "", "Glorifying the defilement of (79-30977) souls in tribute to Amanamu", "Passives in radius are Conquered by the Abyssals", "Desecration makes this item unstable", "Historic", statOrder = { 11, 11.1, 11.2, 9993 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, tradeHashes = { [3418580811] = { "Glorifying the defilement of (79-30977) souls in tribute to Amanamu", "Passives in radius are Conquered by the Abyssals", "Desecration makes this item unstable" }, [3787436548] = { "Historic" }, } }, ["TotemDamagePerDevotion"] = { affix = "", "4% increased Totem Damage per 10 Devotion", statOrder = { 9675 }, level = 1, group = "TotemDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [2566390555] = { "4% increased Totem Damage per 10 Devotion" }, } }, ["BrandDamagePerDevotion"] = { affix = "", "4% increased Brand Damage per 10 Devotion", statOrder = { 9279 }, level = 1, group = "BrandDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, tradeHashes = { [2697019412] = { "4% increased Brand Damage per 10 Devotion" }, } }, ["ChannelledSkillDamagePerDevotion"] = { affix = "", "Channelling Skills deal 4% increased Damage per 10 Devotion", statOrder = { 5199 }, level = 1, group = "ChannelledSkillDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, tradeHashes = { [970844066] = { "Channelling Skills deal 4% increased Damage per 10 Devotion" }, } }, @@ -4327,7 +4327,7 @@ return { ["ShieldDefencesPerDevotion"] = { affix = "", "3% increased Defences from Equipped Shield per 10 Devotion", statOrder = { 9243 }, level = 1, group = "ShieldDefencesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "defences" }, tradeHashes = { [2803981661] = { "3% increased Defences from Equipped Shield per 10 Devotion" }, } }, ["NovaSpellsAreaOfEffectUnique__1"] = { affix = "", "Nova Spells have 20% less Area of Effect", statOrder = { 7347 }, level = 50, group = "NovaSpellsAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster" }, tradeHashes = { [200113086] = { "Nova Spells have 20% less Area of Effect" }, } }, ["RingAttackSpeedUnique__1"] = { affix = "", "20% less Attack Speed", statOrder = { 7345 }, level = 1, group = "RingAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [2418322751] = { "20% less Attack Speed" }, } }, - ["FlaskDurationConsumedPerUse"] = { affix = "", "50% increased Duration. -1% to this value when used", statOrder = { 907 }, level = 1, group = "FlaskDurationConsumedPerUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [798785332] = { "" }, [156096868] = { "50% increased Duration" }, } }, + ["FlaskDurationConsumedPerUse"] = { affix = "", "50% increased Duration. -1% to this value when used", statOrder = { 907 }, level = 1, group = "FlaskDurationConsumedPerUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "50% increased Duration. -1% to this value when used" }, } }, ["HarvestAlternateWeaponQualityLocalCriticalStrikeChance__"] = { affix = "", "Quality does not increase Damage", "1% increased Critical Hit Chance per 4% Quality", statOrder = { 1584, 7182 }, level = 1, group = "HarvestAlternateWeaponQualityLocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "critical" }, tradeHashes = { [3103053611] = { "1% increased Critical Hit Chance per 4% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, ["HarvestAlternateWeaponQualityAccuracyRatingIncrease_"] = { affix = "", "Quality does not increase Damage", "Grants 1% increased Accuracy per 2% Quality", statOrder = { 1584, 7133 }, level = 1, group = "HarvestAlternateWeaponQualityAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [2421363283] = { "Grants 1% increased Accuracy per 2% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, ["HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed"] = { affix = "", "Quality does not increase Damage", "1% increased Attack Speed per 8% Quality", statOrder = { 1584, 7154 }, level = 1, group = "HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, tradeHashes = { [3331111689] = { "1% increased Attack Speed per 8% Quality" }, [4045911293] = { "Quality does not increase Damage" }, } }, @@ -4337,9 +4337,9 @@ return { ["AttackProjectilesForkUnique__1"] = { affix = "", "Projectiles from Attacks Fork", statOrder = { 4415 }, level = 1, group = "AttackProjectilesFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [396113830] = { "Projectiles from Attacks Fork" }, } }, ["AttackProjectilesForkExtraTimesUnique__1"] = { affix = "", "Projectiles from Attacks Fork an additional time", statOrder = { 4416 }, level = 1, group = "AttackProjectilesForkExtraTimes", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1643324992] = { "Projectiles from Attacks Fork an additional time" }, } }, ["MinionLargerAggroRadiusUnique__1"] = { affix = "", "Minions are Aggressive", statOrder = { 10011 }, level = 1, group = "MinionLargerAggroRadius", weightKey = { }, weightVal = { }, modTags = { "minion" }, tradeHashes = { [128585622] = { "Minions are Aggressive" }, } }, - ["HungryLoopSupportedByTrinity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Trinity", statOrder = { 82, 268 }, level = 1, group = "HungryLoopSupportedByTrinity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [4206709389] = { "" }, [3111091501] = { "Socketed Gems are Supported by Level 20 Trinity" }, [1782861052] = { "" }, } }, + ["HungryLoopSupportedByTrinity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Trinity", statOrder = { 82, 268 }, level = 1, group = "HungryLoopSupportedByTrinity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, tradeHashes = { [3221550523] = { "Has Consumed 1 Gem" }, [3111091501] = { "Socketed Gems are Supported by Level 20 Trinity" }, } }, ["LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "30% increased Rarity of Items found", "You and Nearby Allies have 30% increased Item Rarity", statOrder = { 916, 1392 }, level = 1, group = "LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3917489142] = { "30% increased Rarity of Items found" }, [549203380] = { "You and Nearby Allies have 30% increased Item Rarity" }, } }, - ["InfernalCryThresholdJewel"] = { affix = "", "With at least 40 Strength in Radius, Combust is Disabled", statOrder = { 7284 }, level = 1, group = "InfernalCryThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [223497523] = { "" }, [3802517517] = { "" }, [2471517399] = { "With at least 40 Strength in Radius, Combust is Disabled" }, } }, + ["InfernalCryThresholdJewel"] = { affix = "", "With at least 40 Strength in Radius, Combust is Disabled", statOrder = { 7284 }, level = 1, group = "InfernalCryThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [2471517399] = { "With at least 40 Strength in Radius, Combust is Disabled" }, } }, ["ChaosDamageDoesNotBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Chaos Damage taken bypasses Energy Shield", statOrder = { 4534 }, level = 99, group = "ChaosDamageDoesNotBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1552907959] = { "33% of Chaos Damage taken bypasses Energy Shield" }, } }, ["NonChaosDamageBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Damage taken bypasses Energy Shield", statOrder = { 4510 }, level = 1, group = "DamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2448633171] = { "33% of Damage taken bypasses Energy Shield" }, } }, ["KillEnemyInstantlyExarchDominantUnique__1"] = { affix = "", "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant", statOrder = { 7312 }, level = 77, group = "KillEnemyInstantlyExarchDominant", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3768948090] = { "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant" }, } }, @@ -4355,13 +4355,13 @@ return { ["EnemiesChilledIncreasedDamageTakenUnique__1"] = { affix = "", "Enemies Chilled by your Hits increase damage taken by Chill Magnitude", statOrder = { 5927 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [1816894864] = { "Enemies Chilled by your Hits increase damage taken by Chill Magnitude" }, } }, ["CasterOffHandNearbyEnemiesAreCoveredInAshImplicit___"] = { affix = "", "Nearby Enemies are Covered in Ash", statOrder = { 7208 }, level = 1, group = "LocalDisplayNearbyEnemiesAreCoveredInAsh", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [746994389] = { "Nearby Enemies are Covered in Ash" }, } }, ["CorruptedMagicJewelModEffectUnique__1"] = { affix = "", "(0-150)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Magic Jewels", statOrder = { 7424, 7424.1 }, level = 1, group = "CorruptedMagicJewelModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [461663422] = { "(0-150)% increased Effect of Jewel Socket Passive Skills", "containing Corrupted Magic Jewels" }, } }, - ["UniqueJewelSpecificSkillLevelBonus1"] = { affix = "", "+(1-3) to Level of all 0 Skills", statOrder = { 9795 }, level = 1, group = "UniqueJewelSpecificSkillLevelBonus", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2983011703] = { "+(1-3) to Level of all 0 Skills" }, [2884084892] = { "" }, } }, + ["UniqueJewelSpecificSkillLevelBonus1"] = { affix = "", "+(1-3) to Level of all 0 Skills", statOrder = { 9795 }, level = 1, group = "UniqueJewelSpecificSkillLevelBonus", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [448592698] = { "+(1-3) to Level of all 0 Skills" }, } }, ["UniqueReloadSpeed1"] = { affix = "", "(40-60)% reduced Reload Speed", statOrder = { 920 }, level = 65, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [710476746] = { "(40-60)% reduced Reload Speed" }, } }, ["UniqueReloadSpeed2"] = { affix = "", "(15-25)% increased Reload Speed", statOrder = { 920 }, level = 1, group = "LocalReloadSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [710476746] = { "(15-25)% increased Reload Speed" }, } }, ["UniqueLoadCrossbowBoltOnKillPercent1"] = { affix = "", "(10-20)% chance to load a bolt into all Crossbow skills on Kill", statOrder = { 5182 }, level = 65, group = "LoadCrossbowBoltOnKillPercent", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3823990000] = { "(10-20)% chance to load a bolt into all Crossbow skills on Kill" }, } }, ["UniqueSacrificeLifeForBolts1"] = { affix = "", "Sacrifice 300 Life to not consume the last bolt when firing", statOrder = { 5369 }, level = 65, group = "SacrificeLifeInsteadOfBolts", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [76982026] = { "Sacrifice 300 Life to not consume the last bolt when firing" }, } }, ["UniqueLifeLeechLocal4"] = { affix = "", "Leeches (5-10)% of Physical Damage as Life", statOrder = { 972 }, level = 65, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, tradeHashes = { [55876295] = { "Leeches (5-10)% of Physical Damage as Life" }, } }, - ["UniqueLocalIncreasedPhysicalDamagePercent15"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 821 }, level = 65, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(250-300)% increased Physical Damage" }, } }, + ["UniqueLocalIncreasedPhysicalDamagePercent15"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 821 }, level = 65, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(250-300)% increased Physical Damage" }, } }, ["UniqueIncreasedAttackSpeed12"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 919 }, level = 65, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, tradeHashes = { [210067635] = { "(10-20)% increased Attack Speed" }, } }, ["UniquePerandusArrows1"] = { affix = "", "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow", statOrder = { 5837 }, level = 83, group = "PerandusArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [3891922348] = { "Each Arrow fired is a Crescendo, Splinter, Reversing, Diamond, Covetous, or Blunt Arrow" }, } }, ["ChanceToPoisonWithAttacksUnique___2"] = { affix = "", "(20-30)% chance to Poison on Hit with Attacks", statOrder = { 2791 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, tradeHashes = { [3954735777] = { "(20-30)% chance to Poison on Hit with Attacks" }, } }, @@ -4471,7 +4471,7 @@ return { ["UniqueFlaskMoreLife__1"] = { affix = "", "90% less Life Recovered", statOrder = { 619 }, level = 1, group = "FlaskMoreLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [1726753705] = { "90% less Life Recovered" }, } }, ["UniqueFlaskEffectNotRemovedOnFullLife__1"] = { affix = "", "Effect is not removed when Unreserved Life is Filled", statOrder = { 628 }, level = 1, group = "FlaskEffectNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, tradeHashes = { [2932359713] = { "Effect is not removed when Unreserved Life is Filled" }, } }, ["UniqueDuringRageFlaskEffects__1"] = { affix = "", "(15-30)% of Damage taken during effect Recouped as Life", "Gain (3-5) Rage when Hit by an Enemy during effect", "No Inherent loss of Rage during effect", statOrder = { 736, 739, 749 }, level = 1, group = "DoubleMaximumRageFlask", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3464644319] = { "No Inherent loss of Rage during effect" }, [555311715] = { "Gain (3-5) Rage when Hit by an Enemy during effect" }, [3598623697] = { "(15-30)% of Damage taken during effect Recouped as Life" }, } }, - ["UniqueFlaskDuration__1"] = { affix = "", "(25-50)% increased Duration", statOrder = { 907 }, level = 1, group = "FlaskUtilityIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [156096868] = { "(25-50)% increased Duration" }, } }, + ["UniqueFlaskDuration__1"] = { affix = "", "(25-50)% increased Duration", statOrder = { 907 }, level = 1, group = "FlaskUtilityIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, tradeHashes = { [1256719186] = { "(25-50)% increased Duration" }, } }, ["GhostflameOnHitUnique__1"] = { affix = "", "Attack Hits inflict Spectral Fire for 8 seconds", statOrder = { 6453 }, level = 1, group = "GhostflameOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [33298888] = { "Attack Hits inflict Spectral Fire for 8 seconds" }, } }, ["AttackAdditionalProjectilesUnique__1"] = { affix = "", "Attacks fire an additional Projectile", statOrder = { 3749 }, level = 1, group = "AttackAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "attack" }, tradeHashes = { [1195705739] = { "Attacks fire an additional Projectile" }, } }, ["FireDamageArmourPenetrationUnique__1"] = { affix = "", "Break Armour equal to 15% of Fire Damage dealt", statOrder = { 4289 }, level = 1, group = "FireDamageArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, tradeHashes = { [2451508632] = { "Break Armour equal to 15% of Fire Damage dealt" }, } }, @@ -4479,7 +4479,7 @@ return { ["UniqueTwoHandedWeaponLightningStunMultiplier1"] = { affix = "", "(50-100)% more Stun Buildup with Lightning Damage", statOrder = { 9811 }, level = 1, group = "UniqueTwoHandedWeaponLightningStunMultiplier", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2029147356] = { "(50-100)% more Stun Buildup with Lightning Damage" }, } }, ["LocalAlwaysHeavyStunOnFullLifeUnique__1"] = { affix = "", "Heavy Stuns Enemies that are on Full Life", statOrder = { 1066 }, level = 76, group = "LocalAlwaysHeavyStunOnFullLife", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [668076381] = { "Heavy Stuns Enemies that are on Full Life" }, } }, ["LocalDisableRareModOnHitUnique__1"] = { affix = "", "DNT-UNUSED 20% chance when hitting a Rare Monster to disable one of its Modifiers", statOrder = { 7194 }, level = 1, group = "LocalDisableRareModOnHit", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [2662365575] = { "DNT-UNUSED 20% chance when hitting a Rare Monster to disable one of its Modifiers" }, } }, - ["TheFlawedEdictUnique__1"] = { affix = "", "DNT-UNUSED Gain 20% Edict Declaration when you disable a rare monster mod", statOrder = { 7231 }, level = 1, group = "TheFlawedEdict", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3607612750] = { "DNT-UNUSED Gain 20% Edict Declaration when you disable a rare monster mod" }, [1386510068] = { "" }, } }, + ["TheFlawedEdictUnique__1"] = { affix = "", "DNT-UNUSED Gain 20% Edict Declaration when you disable a rare monster mod", statOrder = { 7231 }, level = 1, group = "TheFlawedEdict", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [3607612750] = { "DNT-UNUSED Gain 20% Edict Declaration when you disable a rare monster mod" }, } }, ["UniqueDesecratedModEffect1"] = { affix = "", "(60-80)% increased Desecrated Modifier magnitudes", statOrder = { 47 }, level = 1, group = "UniqueDesecratedModEffect", weightKey = { }, weightVal = { }, modTags = { }, tradeHashes = { [586037801] = { "(60-80)% increased Desecrated Modifier magnitudes" }, } }, ["UniqueMutatedVaalPresenceRadius"] = { affix = "", "100% reduced Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [101878827] = { "100% reduced Presence Area of Effect" }, } }, ["UniqueMutatedVaalIncreasedLifeLeechRate"] = { affix = "", "Leech Life (-25-25)% slower", statOrder = { 1821 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique_vaal", "life" }, tradeHashes = { [1570501432] = { "Leech Life (-25-25)% slower" }, } }, @@ -4670,7 +4670,7 @@ return { ["UniqueMutatedVaalLocalPhysicalDamage"] = { affix = "", "Adds (65-73) to (83-91) Physical Damage", statOrder = { 822 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHashes = { [1940865751] = { "Adds (65-73) to (83-91) Physical Damage" }, } }, ["UniqueMutatedVaalLocalCriticalStrikeChance"] = { affix = "", "+(3-5)% to Critical Hit Chance", statOrder = { 917 }, level = 1, group = "LocalBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "attack", "critical" }, tradeHashes = { [518292764] = { "+(3-5)% to Critical Hit Chance" }, } }, ["UniqueMutatedVaalSpellChanceToFireTwoAdditionalProjectiles1"] = { affix = "", "(10-25)% chance for Spell Skills to fire 2 additional Projectiles", statOrder = { 9431 }, level = 1, group = "SpellChanceToFireTwoAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal", "caster" }, tradeHashes = { [2910761524] = { "(10-25)% chance for Spell Skills to fire 2 additional Projectiles" }, } }, - ["UniqueMutatedVaalLocalPhysicalDamagePercent"] = { affix = "", "(300-400)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(300-400)% increased Physical Damage" }, } }, + ["UniqueMutatedVaalLocalPhysicalDamagePercent"] = { affix = "", "(300-400)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "mutatedunique_vaal", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(300-400)% increased Physical Damage" }, } }, ["UniqueMutatedVaalFireExposureOnHit"] = { affix = "", "(30-50)% chance to inflict Exposure on Hit", statOrder = { 4569 }, level = 1, group = "FireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [3602667353] = { "(30-50)% chance to inflict Exposure on Hit" }, } }, ["UniqueMutatedVaalCullingStrikeLocalVsBleeding"] = { affix = "", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrder = { 7188 }, level = 1, group = "CullingStrikeLocalVsBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique_vaal" }, tradeHashes = { [2558253923] = { "Hits with this Weapon have Culling Strike against Bleeding Enemies" }, } }, ["UniqueMutatedVaalLocalIncreasedEvasionAndEnergyShield"] = { affix = "", "(150-300)% increased Evasion and Energy Shield", statOrder = { 839 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "energy_shield", "evasion", "mutatedunique_vaal", "defences" }, tradeHashes = { [1999113824] = { "(150-300)% increased Evasion and Energy Shield" }, } }, @@ -4741,7 +4741,7 @@ return { ["CorruptionUpgradeLifeFlaskChargeGeneration1"] = { affix = "", "Life Flasks gain (0.33-0.58) charges per Second", statOrder = { 6451 }, level = 1, group = "LifeFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [1102738251] = { "Life Flasks gain (0.33-0.58) charges per Second" }, } }, ["CorruptionUpgradeManaFlaskChargeGeneration1"] = { affix = "", "Mana Flasks gain (0.33-0.58) charges per Second", statOrder = { 6452 }, level = 1, group = "ManaFlaskChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.33-0.58) charges per Second" }, } }, ["CorruptionUpgradeCharmChargeGeneration1"] = { affix = "", "Charms gain (0.33-0.58) charges per Second", statOrder = { 6448 }, level = 1, group = "CharmChargeGeneration", weightKey = { "amulet", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [185580205] = { "Charms gain (0.33-0.58) charges per Second" }, } }, - ["CorruptionUpgradeLocalIncreasedPhysicalDamagePercent1"] = { affix = "", "(50-75)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "upgraded_corruption_mod", "damage", "physical", "attack" }, tradeHashes = { [1805374733] = { "(50-75)% increased Physical Damage" }, } }, + ["CorruptionUpgradeLocalIncreasedPhysicalDamagePercent1"] = { affix = "", "(50-75)% increased Physical Damage", statOrder = { 821 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1, 0 }, modTags = { "physical_damage", "upgraded_corruption_mod", "damage", "physical", "attack" }, tradeHashes = { [1509134228] = { "(50-75)% increased Physical Damage" }, } }, ["CorruptionUpgradeSpellDamageOnWeapon1"] = { affix = "", "(60-90)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "wand", "focus", "default", }, weightVal = { 1, 1, 0 }, modTags = { "caster_damage", "upgraded_corruption_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(60-90)% increased Spell Damage" }, } }, ["CorruptionUpgradeSpellDamageOnTwoHandWeapon1"] = { affix = "", "(120-240)% increased Spell Damage", statOrder = { 853 }, level = 1, group = "WeaponSpellDamage", weightKey = { "staff", "default", }, weightVal = { 1, 0 }, modTags = { "caster_damage", "upgraded_corruption_mod", "damage", "caster" }, tradeHashes = { [2974417149] = { "(120-240)% increased Spell Damage" }, } }, ["CorruptionUpgradeLocalIncreasedSpiritPercent1"] = { affix = "", "(35-60)% increased Spirit", statOrder = { 842 }, level = 1, group = "LocalIncreasedSpiritPercent", weightKey = { "sceptre", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [3984865854] = { "(35-60)% increased Spirit" }, } }, @@ -4765,7 +4765,7 @@ return { ["CorruptionUpgradeWeaponElementalDamage1"] = { affix = "", "(60-90)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "one_hand_weapon", "default", }, weightVal = { 1, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(60-90)% increased Elemental Damage with Attacks" }, } }, ["CorruptionUpgradeWeaponElementalDamageTwoHand1"] = { affix = "", "(140-200)% increased Elemental Damage with Attacks", statOrder = { 859 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1, 0 }, modTags = { "elemental_damage", "upgraded_corruption_mod", "damage", "elemental", "attack" }, tradeHashes = { [387439868] = { "(140-200)% increased Elemental Damage with Attacks" }, } }, ["CorruptionUpgradeAdditionalArrows1"] = { affix = "", "Bow Attacks fire 2 additional Arrows", statOrder = { 945 }, level = 1, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [3885405204] = { "Bow Attacks fire 2 additional Arrows" }, } }, - ["CorruptionUpgradeAdditionalAmmo1"] = { affix = "", "Loads 2 additional bolts", statOrder = { 943 }, level = 1, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [1039380318] = { "Loads 2 additional bolts" }, } }, + ["CorruptionUpgradeAdditionalAmmo1"] = { affix = "", "Loads 2 additional bolts", statOrder = { 943 }, level = 1, group = "AdditionalAmmo", weightKey = { "crossbow", "default", }, weightVal = { 1, 0 }, modTags = { "upgraded_corruption_mod", "attack" }, tradeHashes = { [1967051901] = { "Loads 2 additional bolts" }, } }, ["CorruptionUpgradeIgniteChanceIncrease1"] = { affix = "", "(50-75)% increased Flammability Magnitude", statOrder = { 988 }, level = 1, group = "IgniteChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [2968503605] = { "(50-75)% increased Flammability Magnitude" }, } }, ["CorruptionUpgradeFreezeDamageIncrease1"] = { affix = "", "(50-75)% increased Freeze Buildup", statOrder = { 990 }, level = 1, group = "FreezeDamageIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [473429811] = { "(50-75)% increased Freeze Buildup" }, } }, ["CorruptionUpgradeShockChanceIncrease1"] = { affix = "", "(50-75)% increased chance to Shock", statOrder = { 992 }, level = 1, group = "ShockChanceIncrease", weightKey = { "wand", "staff", "default", }, weightVal = { 1, 1, 0 }, modTags = { "upgraded_corruption_mod" }, tradeHashes = { [293638271] = { "(50-75)% increased chance to Shock" }, } }, diff --git a/src/Data/ModJewel.lua b/src/Data/ModJewel.lua index 43043506f9..518a6d0d9e 100644 --- a/src/Data/ModJewel.lua +++ b/src/Data/ModJewel.lua @@ -179,8 +179,8 @@ return { ["JewelBannerArea"] = { type = "Prefix", affix = "Rallying", "Banner Skills have (10-20)% increased Area of Effect", statOrder = { 4495 }, level = 1, group = "BannerArea", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [429143663] = { "Banner Skills have (10-20)% increased Area of Effect" }, } }, ["JewelBannerDuration"] = { type = "Suffix", affix = "of Inspiring", "Banner Skills have (15-25)% increased Duration", statOrder = { 4497 }, level = 1, group = "BannerDuration", weightKey = { "strjewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [2720982137] = { "Banner Skills have (15-25)% increased Duration" }, } }, ["JewelPresenceRadius"] = { type = "Prefix", affix = "Iconic", "(15-25)% increased Presence Area of Effect", statOrder = { 1002 }, level = 1, group = "PresenceRadius", weightKey = { "strjewel", "intjewel", "default", }, weightVal = { 1, 1, 0 }, modTags = { }, tradeHashes = { [101878827] = { "(15-25)% increased Presence Area of Effect" }, } }, - ["JewelRadiusMediumSize"] = { type = "Prefix", affix = "Greater", "Upgrades Radius to Medium", statOrder = { 7285 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3802517517] = { "" }, [3891355829] = { "Upgrades Radius to Medium" }, } }, - ["JewelRadiusLargeSize"] = { type = "Prefix", affix = "Grand", "Upgrades Radius to Large", statOrder = { 7285 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3802517517] = { "" }, [3891355829] = { "Upgrades Radius to Large" }, } }, + ["JewelRadiusMediumSize"] = { type = "Prefix", affix = "Greater", "Upgrades Radius to Medium", statOrder = { 7285 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Medium" }, } }, + ["JewelRadiusLargeSize"] = { type = "Prefix", affix = "Grand", "Upgrades Radius to Large", statOrder = { 7285 }, level = 1, group = "JewelRadiusLargerRadius", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [3891355829] = { "Upgrades Radius to Large" }, } }, ["JewelRadiusSmallNodeEffect"] = { type = "Suffix", affix = "of Potency", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7308 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [1060572482] = { "(15-25)% increased Effect of Small Passive Skills in Radius" }, } }, ["JewelRadiusNotableEffect"] = { type = "Suffix", affix = "of Influence", "(15-25)% increased Effect of Small Passive Skills in Radius", statOrder = { 7308 }, level = 1, group = "JewelRadiusSmallNodeEffect", weightKey = { "radius_jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, tradeHashes = { [1060572482] = { "(15-25)% increased Effect of Small Passive Skills in Radius" }, } }, ["JewelRadiusNotableEffectNew"] = { type = "Suffix", affix = "of Supremacy", "(15-25)% increased Effect of Notable Passive Skills in Radius", statOrder = { 7304 }, level = 1, group = "JewelRadiusNotableEffect", weightKey = { "radius_jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, tradeHashes = { [4234573345] = { "(15-25)% increased Effect of Notable Passive Skills in Radius" }, } }, diff --git a/src/Data/ModVeiled.lua b/src/Data/ModVeiled.lua index 95ca603e74..fe8221cc80 100644 --- a/src/Data/ModVeiled.lua +++ b/src/Data/ModVeiled.lua @@ -130,7 +130,7 @@ return { ["AbyssModJewelPrefixGlobalPhysicalDamageArmourBreak"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Global Physical Damage", "Break (4-8)% increased Armour", statOrder = { 1122, 4283 }, level = 1, group = "HybridAbyssModJewelGlobalPhysicalDamageArmourBreak", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "armour", "unveiled_mod", "defences", "physical" }, tradeHashes = { [1776411443] = { "Break (4-8)% increased Armour" }, [1310194496] = { "(4-8)% increased Global Physical Damage" }, } }, ["AbyssModJewelPrefixElementalDamageAilmentMagnitude"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Elemental Damage", "(4-8)% increased Magnitude of Ailments you inflict", statOrder = { 1651, 4140 }, level = 1, group = "HybridAbyssModJewelElementalDamageAilmentMagnitude", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental", "ailment" }, tradeHashes = { [1303248024] = { "(4-8)% increased Magnitude of Ailments you inflict" }, [3141070085] = { "(4-8)% increased Elemental Damage" }, } }, ["AbyssModJewelPrefixChaosDamageWitherEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Chaos Damage", "(3-6)% increased Withered Magnitude", statOrder = { 858, 9915 }, level = 1, group = "HybridAbyssModJewelChaosDamageWitherEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "chaos" }, tradeHashes = { [736967255] = { "(4-8)% increased Chaos Damage" }, [3973629633] = { "(3-6)% increased Withered Magnitude" }, } }, - ["AbyssModJewelPrefixMinionAreaAndLife"] = { type = "Prefix", affix = "Lightless", "Minions have (4-8)% increased maximum Life", statOrder = { 962 }, level = 1, group = "HybridAbyssModJewelMinionAreaAndLife", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "minion" }, tradeHashes = { [649627192] = { "" }, [770672621] = { "Minions have (4-8)% increased maximum Life" }, } }, + ["AbyssModJewelPrefixMinionAreaAndLife"] = { type = "Prefix", affix = "Lightless", "Minions have (4-8)% increased maximum Life", statOrder = { 962 }, level = 1, group = "HybridAbyssModJewelMinionAreaAndLife", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "minion" }, tradeHashes = { [770672621] = { "Minions have (4-8)% increased maximum Life" }, } }, ["AbyssModJewelPrefixAuraSkillEffectPresenceAreaOfEffect"] = { type = "Prefix", affix = "Lightless", "(8-15)% increased Presence Area of Effect", "Aura Skills have (2-4)% increased Magnitudes", statOrder = { 1002, 2472 }, level = 1, group = "HybridAbyssModJewelAuraSkillEffectPresenceAreaOfEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "aura" }, tradeHashes = { [101878827] = { "(8-15)% increased Presence Area of Effect" }, [315791320] = { "Aura Skills have (2-4)% increased Magnitudes" }, } }, ["AbyssModJewelPrefixElementalExposureEffect"] = { type = "Prefix", affix = "Lightless", "(4-8)% increased Exposure Effect", statOrder = { 6106 }, level = 1, group = "HybridAbyssModJewelElementalExposureEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod", "elemental" }, tradeHashes = { [2074866941] = { "(4-8)% increased Exposure Effect" }, } }, ["AbyssModJewelPrefixAbyssalWastingEffect"] = { type = "Prefix", affix = "Lightless", "(10-20)% increased Magnitude of Abyssal Wasting you inflict", statOrder = { 4004 }, level = 1, group = "HybridAbyssModJewelAbyssalWastingEffect", weightKey = { "strjewel", "intjewel", "dexjewel", "default", }, weightVal = { 1, 1, 1, 0 }, modTags = { "unveiled_mod" }, tradeHashes = { [4043376133] = { "(10-20)% increased Magnitude of Abyssal Wasting you inflict" }, } }, @@ -176,7 +176,7 @@ return { ["AbyssModBeltUlamanPrefixLifeRegenRateDuringLifeFlaskEffect"] = { type = "Prefix", affix = "Ulaman's", "(20-30)% increased Life Regeneration rate during Effect of any Life Flask", statOrder = { 7039 }, level = 65, group = "LifeRegenerationRateDuringFlaskEffect", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "life_flask", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [1261076060] = { "(20-30)% increased Life Regeneration rate during Effect of any Life Flask" }, } }, ["AbyssModBeltUlamanSuffixReducedSlowPotencySelfIfCharmedRecently"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently", statOrder = { 9337 }, level = 65, group = "SlowEffectIfCharmedRecently", weightKey = { "belt", "default", "ulaman_mod", }, weightVal = { 1, 0, 1 }, modTags = { "charm", "unveiled_mod", "ulaman_mod" }, tradeHashes = { [3839676903] = { "(17-25)% reduced Slowing Potency of Debuffs on You if you've used a Charm Recently" }, } }, ["AbyssModBeltAmanamuPrefixCharmsGainChargesPerSecond"] = { type = "Prefix", affix = "Amanamu's", "Charms gain (0.1-0.2) charges per Second", statOrder = { 6448 }, level = 65, group = "CharmChargeGeneration", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [185580205] = { "Charms gain (0.1-0.2) charges per Second" }, } }, - ["AbyssModBeltAmanamuPrefixGainFireThornsPer100MaximumLife"] = { type = "Prefix", affix = "Amanamu's", "2 to 4 Fire Thorns damage per 100 maximum Life", statOrder = { 9648 }, level = 65, group = "ThornsFirePerOneHundredLife", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire" }, tradeHashes = { [1670667154] = { "2 to 0 Fire Thorns damage per 100 maximum Life" }, [1785118465] = { "0 to 4 Fire Thorns damage per 100 maximum Life" }, } }, + ["AbyssModBeltAmanamuPrefixGainFireThornsPer100MaximumLife"] = { type = "Prefix", affix = "Amanamu's", "2 to 4 Fire Thorns damage per 100 maximum Life", statOrder = { 9648 }, level = 65, group = "ThornsFirePerOneHundredLife", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod", "elemental", "fire" }, tradeHashes = { [287294012] = { "2 to 4 Fire Thorns damage per 100 maximum Life" }, } }, ["AbyssModBeltAmanamuPrefixChanceToNotConsumeCharmCharges"] = { type = "Prefix", affix = "Amanamu's", "(10-18)% chance for Charms you use to not consume Charges", statOrder = { 5256 }, level = 65, group = "CharmChanceToNotConsumeCharges", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [501873429] = { "(10-18)% chance for Charms you use to not consume Charges" }, } }, ["AbyssModBeltAmanamuSuffixThornsBaseCriticalStrikeChance"] = { type = "Suffix", affix = "of Amanamu", "+(2-4)% to Thorns Critical Hit Chance", statOrder = { 4616 }, level = 65, group = "ThornsCriticalStrikeChance", weightKey = { "belt", "default", "amanamu_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "amanamu_mod" }, tradeHashes = { [2715190555] = { "+(2-4)% to Thorns Critical Hit Chance" }, } }, ["AbyssModBeltKurgalPrefixManaFlasksGainChargesPerSecond"] = { type = "Prefix", affix = "Kurgal's", "Mana Flasks gain (0.1-0.2) charges per Second", statOrder = { 6452 }, level = 65, group = "ManaFlaskChargeGeneration", weightKey = { "belt", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod" }, tradeHashes = { [2200293569] = { "Mana Flasks gain (0.1-0.2) charges per Second" }, } }, @@ -284,7 +284,7 @@ return { ["AbyssModGenWeaponKurgalPrefixColdPenetration"] = { type = "Prefix", affix = "Kurgal's", "Attacks with this Weapon Penetrate (15-25)% Cold Resistance", statOrder = { 3332 }, level = 65, group = "LocalColdPenetration", weightKey = { "weapon", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "elemental_damage", "unveiled_mod", "kurgal_mod", "damage", "elemental", "cold", "attack" }, tradeHashes = { [1740229525] = { "Attacks with this Weapon Penetrate (15-25)% Cold Resistance" }, } }, ["AbyssModGenWeaponKurgalSuffixAttackCostEfficiency"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4519 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { "weapon", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [3350279336] = { "(8-15)% increased Cost Efficiency of Attacks" }, } }, ["AbyssModAllMacesUlamanPrefixMaximumMeleeAttackTotems"] = { type = "Prefix", affix = "Ulaman's", "Melee Attack Skills have +1 to maximum number of Summoned Totems", statOrder = { 8361 }, level = 65, group = "AdditionalMeleeTotem", weightKey = { "mace", "talisman", "default", "ulaman_mod", }, weightVal = { 1, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod" }, tradeHashes = { [2013356568] = { "Melee Attack Skills have +1 to maximum number of Summoned Totems" }, } }, - ["AbyssModAllMacesKurgalPrefixIncreasedPhysicalDamageReducedAttackSpeed"] = { type = "Prefix", affix = "Kurgal's", "(110-154)% increased Physical Damage", "15% reduced Attack Speed", statOrder = { 821, 919 }, level = 65, group = "LocalIncreasedPhysicalDamageAttackSpeedHybrid", weightKey = { "mace", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "physical", "attack", "speed" }, tradeHashes = { [1805374733] = { "(110-154)% increased Physical Damage" }, [210067635] = { "15% reduced Attack Speed" }, } }, + ["AbyssModAllMacesKurgalPrefixIncreasedPhysicalDamageReducedAttackSpeed"] = { type = "Prefix", affix = "Kurgal's", "(110-154)% increased Physical Damage", "15% reduced Attack Speed", statOrder = { 821, 919 }, level = 65, group = "LocalIncreasedPhysicalDamageAttackSpeedHybrid", weightKey = { "mace", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "physical", "attack", "speed" }, tradeHashes = { [210067635] = { "15% reduced Attack Speed" }, [1509134228] = { "(110-154)% increased Physical Damage" }, } }, ["AbyssModAllMacesKurgalSuffixCostEfficiencyOfAttackSkills"] = { type = "Suffix", affix = "of Kurgal", "(8-15)% increased Cost Efficiency of Attacks", statOrder = { 4519 }, level = 65, group = "AttackSkillCostEfficiency", weightKey = { "mace", "default", "kurgal_mod", }, weightVal = { 1, 0, 1 }, modTags = { "unveiled_mod", "kurgal_mod", "attack" }, tradeHashes = { [3350279336] = { "(8-15)% increased Cost Efficiency of Attacks" }, } }, ["AbyssMod1HMaceUlamanPrefixDamageWhileActiveTotem"] = { type = "Prefix", affix = "Ulaman's", "(41-59)% increased Damage while you have a Totem", statOrder = { 2818 }, level = 65, group = "IncreasedDamageWhileTotemActive", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "damage" }, tradeHashes = { [2543331226] = { "(41-59)% increased Damage while you have a Totem" }, } }, ["AbyssMod1HMaceUlamanSuffixTotemPlacementSpeed"] = { type = "Suffix", affix = "of Ulaman", "(17-25)% increased Totem Placement speed", statOrder = { 2250 }, level = 65, group = "SummonTotemCastSpeed", weightKey = { "two_hand_weapon", "mace", "default", "ulaman_mod", }, weightVal = { 0, 1, 0, 1 }, modTags = { "unveiled_mod", "ulaman_mod", "speed" }, tradeHashes = { [3374165039] = { "(17-25)% increased Totem Placement speed" }, } }, diff --git a/src/Export/Scripts/mods.lua b/src/Export/Scripts/mods.lua index 18fae27fc2..285dd40604 100644 --- a/src/Export/Scripts/mods.lua +++ b/src/Export/Scripts/mods.lua @@ -1,6 +1,7 @@ if not loadStatFile then dofile("statdesc.lua") end +local statDescriptions = getStatDescriptors("stat_descriptions.csd") loadStatFile("stat_descriptions.csd") -- not comprehensive. see moddomains table in export tool and enums.lua @@ -31,6 +32,21 @@ function table.containsId(table, element) return false end +-- used for calculating the hash field of a stat +local GGG_STAT_HASH32_SEED = 0xC58F1A7B +-- used for calculating the trade hash from stat hash fields +local GGG_TRADE_SEED = 0x02312233 +---@param stats string[] +---@return integer +local function hashStats(stats) + local statHashes = "" + for _, statName in ipairs(stats) do + local newHash = intToBytes(murmurHash2(statName, GGG_STAT_HASH32_SEED)) + statHashes = statHashes..newHash + end + return murmurHash2(statHashes, GGG_TRADE_SEED) +end + local whiteListStat = { ["dummy_stat_display_nothing"] = true, } @@ -125,52 +141,68 @@ local function writeMods(outName, condFunc) out:write('nodeType = ', mod.NodeType, ', ') end - -- Note that some of the resulting hashes might not be correct. - -- Some of the trade hashes are also associated with another - -- value. For example the "only affects passives in # ring" is - -- correct here, but has a variant value appended to it like: - -- explicit.stat_3642528642|7. Some stats may also be handled in - -- a way similar to radius jewels that this script doesn't do. - local modIdx = 1 local tradeHashes = {} - while mod["Stat" .. modIdx] do + local statsHashed = {} + local isTinctureMod = (mod.Domain == Domains.Tincture) and + (mod.GenerationType == GenTypes.Prefix + or mod.GenerationType == GenTypes.Suffix) + for statIdx = 1, 6 do local currentStats = {} - local stat = mod["Stat" .. modIdx] - currentStats[stat.Id] = { - min = mod["Stat" .. modIdx .. "Value"][1], max = mod["Stat" .. modIdx .. "Value"][2] - } - if modIdx == 6 then + local stat = mod["Stat" .. statIdx] + if not stat then break end - local bytes = intToBytes(stat.Hash) - -- # to # stats consist of two different stats as the min and max have different ranges - if stat.Id:match("minimum") then - local nextStat = mod["Stat" .. (modIdx + 1)] - if nextStat and nextStat.Id:match("maximum") then - modIdx = modIdx + 1 - bytes = bytes .. intToBytes(nextStat.Hash) - currentStats[nextStat.Id] = { - min = mod["Stat" .. modIdx .. "Value"][1], max = mod["Stat" .. modIdx .. "Value"][2] - } - end + -- some stats are related to other stats, and should be + -- hashed with them. we don't want to hash e.g. the lower + -- and upper range of # to # damage modifiers separately. + if statsHashed[stat.Id] then + goto innercontinue end - local description, _, _ = describeStats(currentStats) + -- tincture stat descriptions are in a separate file + local statEntry + if isTinctureMod then + statEntry = tinctureStatDescriptions[stat.Id] and tinctureStatDescriptions[stat.Id] + else + statEntry = statDescriptions[stat.Id] and statDescriptions[stat.Id] + end + + -- skip stats that are missing fields. these are most likely + -- hidden stats or e.g. map stats + if not statEntry or not statEntry.stats or not statEntry[1] then + goto innercontinue + end + -- match stats to the stat values on the mod and save them + -- as they're used to describe the stat + local currentStats = {} + for _, statId in ipairs(statEntry.stats) do + for statIdx = 1, 6 do + if mod["Stat" .. statIdx] and mod["Stat" .. statIdx].Id == statId then + currentStats[statId] = { + min = mod["Stat" .. statIdx .. "Value"][1], + max = mod["Stat" .. statIdx .. "Value"][2] + } + end + end + end + + local stats = copyTable(statEntry.stats) -- radius jewel mods: -- notable if mod.NodeType == 2 then - -- append stat hash for - -- "local_jewel_mod_stats_added_to_notable_passives" - bytes = bytes .. intToBytes(1950420994) - -- small + table.insert(stats, "local_jewel_mod_stats_added_to_notable_passives") + -- small elseif mod.NodeType and mod.NodeType == 1 then - -- append stat hash for - -- "local_jewel_mod_stats_added_to_small_passives" - bytes = bytes .. intToBytes(1498395485) + table.insert(stats, "local_jewel_mod_stats_added_to_small_passives") end - tradeHashes[murmurHash2(bytes, 0x02312233)] = description - modIdx = modIdx + 1 + + + local description, _, _ = describeStats(currentStats) + + local tradeHash = hashStats(stats) + tradeHashes[tradeHash] = description + ::innercontinue:: end out:write("tradeHashes = { ") for hash, desc in pairs(tradeHashes) do diff --git a/src/Export/statdesc.lua b/src/Export/statdesc.lua index 947d8d973f..592a310230 100644 --- a/src/Export/statdesc.lua +++ b/src/Export/statdesc.lua @@ -468,3 +468,10 @@ function describeScalability(fileName) end return out end + +function getStatDescriptors(fileName) + if not statDescriptors[fileName] then + loadStatFile(fileName) + end + return statDescriptors[fileName] +end From f92e79724fcf12416871243a2e1eaab0d61e918f Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Fri, 22 May 2026 21:57:16 +0300 Subject: [PATCH 39/42] add note about radius jewel mods --- src/Export/Scripts/mods.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Export/Scripts/mods.lua b/src/Export/Scripts/mods.lua index 285dd40604..da8f0bff6e 100644 --- a/src/Export/Scripts/mods.lua +++ b/src/Export/Scripts/mods.lua @@ -187,6 +187,9 @@ local function writeMods(outName, condFunc) end end + -- radius jewel stats are slightly unique in that they use + -- the same stat as regular jewel mods. this means the + -- description will not include the also grant: prefix local stats = copyTable(statEntry.stats) -- radius jewel mods: -- notable From 551ba83179b668ac9acad82fc239c013e9c22518 Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Fri, 22 May 2026 22:23:16 +0300 Subject: [PATCH 40/42] Fix rune weight generation and regenerate QueryMods.lua --- src/Classes/TradeQueryGenerator.lua | 2 +- src/Data/QueryMods.lua | 192 +++++++++++++++++++++++++++- 2 files changed, 192 insertions(+), 2 deletions(-) diff --git a/src/Classes/TradeQueryGenerator.lua b/src/Classes/TradeQueryGenerator.lua index a8260644ba..37d33b729f 100644 --- a/src/Classes/TradeQueryGenerator.lua +++ b/src/Classes/TradeQueryGenerator.lua @@ -489,7 +489,7 @@ function TradeQueryGeneratorClass:InitMods() local matchedCategory = nil for category, categoryOptions in pairs(tradeCategoryNames) do for i, opt in pairs(categoryOptions) do - if opt:lower():match(slotType) then + if opt:lower():match("^"..slotType) then matchedCategory = category break end diff --git a/src/Data/QueryMods.lua b/src/Data/QueryMods.lua index 61f8e95033..2f31e273d1 100644 --- a/src/Data/QueryMods.lua +++ b/src/Data/QueryMods.lua @@ -7651,6 +7651,55 @@ return { ["type"] = "enchant", }, }, + ["1509134228"] = { + ["1HMace"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Spear"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 25, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "enchant", + }, + }, ["1515657623"] = { ["Belt"] = { ["max"] = 1, @@ -7866,6 +7915,23 @@ return { ["type"] = "enchant", }, }, + ["1967051901"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "enchant.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "enchant", + }, + }, ["1978899297"] = { ["Amulet"] = { ["max"] = 1, @@ -10817,6 +10883,55 @@ return { ["type"] = "explicit", }, }, + ["1509134228"] = { + ["1HMace"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["1HWeapon"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["2HMace"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["2HWeapon"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["Bow"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["Crossbow"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["Flail"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["Quarterstaff"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["Spear"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["Talisman"] = { + ["max"] = 179, + ["min"] = 15, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1509134228", + ["text"] = "#% increased Physical Damage", + ["type"] = "explicit", + }, + }, ["1514844108"] = { ["specialCaseData"] = { }, @@ -11758,6 +11873,23 @@ return { ["type"] = "explicit", }, }, + ["1967051901"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "explicit", + }, + }, ["1978899297"] = { ["Shield"] = { ["max"] = 2, @@ -15892,6 +16024,16 @@ return { ["type"] = "explicit", }, }, + ["388617051"] = { + ["invertOnNegative"] = true, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "explicit.stat_388617051", + ["text"] = "#% increased Charges per use", + ["type"] = "explicit", + }, + }, ["3891355829"] = { ["AnyJewel"] = { ["max"] = 1, @@ -18633,6 +18775,23 @@ return { ["type"] = "implicit", }, }, + ["1967051901"] = { + ["2HWeapon"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["Crossbow"] = { + ["max"] = 1, + ["min"] = 1, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_1967051901", + ["text"] = "Loads an additional bolt", + ["type"] = "implicit", + }, + }, ["1978899297"] = { ["Chest"] = { ["max"] = 1, @@ -18677,6 +18836,19 @@ return { ["type"] = "implicit", }, }, + ["2055966527"] = { + ["Quiver"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_2055966527", + ["text"] = "Attacks have #% chance to cause Bleeding", + ["type"] = "implicit", + }, + }, ["2194114101"] = { ["Quiver"] = { ["max"] = 30, @@ -19142,6 +19314,20 @@ return { ["type"] = "implicit", }, }, + ["3489782002"] = { + ["Amulet"] = { + ["max"] = 30, + ["min"] = 20, + }, + ["specialCaseData"] = { + }, + ["tradeMod"] = { + ["id"] = "implicit.stat_3489782002", + ["text"] = "# to maximum Energy Shield", + ["type"] = "implicit", + }, + ["usePositiveSign"] = true, + }, ["3544800472"] = { ["Chest"] = { ["max"] = 40, @@ -20997,7 +21183,7 @@ return { }, }, ["2481353198"] = { - ["Chest"] = { + ["Shield"] = { ["max"] = 10, ["min"] = 10, }, @@ -22486,6 +22672,10 @@ return { ["max"] = 20, ["min"] = 20, }, + ["Shield"] = { + ["max"] = 20, + ["min"] = 20, + }, ["specialCaseData"] = { }, ["tradeMod"] = { From 776d4b7440dedfe5cc7d2b62c89b9e64c04e5f1d Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Sat, 23 May 2026 01:38:11 +0300 Subject: [PATCH 41/42] Port buy similar improvements from pob1 and improve mod matching --- src/Classes/CompareBuySimilar.lua | 169 +++++++++++++++----------- src/Classes/TradeHelpers.lua | 196 ++++++++++++++++++++++-------- 2 files changed, 244 insertions(+), 121 deletions(-) diff --git a/src/Classes/CompareBuySimilar.lua b/src/Classes/CompareBuySimilar.lua index 4930d9b13e..c9f23e4b14 100644 --- a/src/Classes/CompareBuySimilar.lua +++ b/src/Classes/CompareBuySimilar.lua @@ -30,17 +30,7 @@ for i, entry in ipairs(LISTED_STATUS_OPTIONS) do LISTED_STATUS_LABELS[i] = entry.label end --- Helper: create a numeric EditControl without +/- spinner buttons -local function newPlainNumericEdit(anchor, rect, init, prompt, limit) - local ctrl = new("EditControl", anchor, rect, init, prompt, "%D", limit) - -- Remove the +/- spinner buttons that "%D" filter triggers - ctrl.isNumeric = false - if ctrl.controls then - if ctrl.controls.buttonDown then ctrl.controls.buttonDown.shown = false end - if ctrl.controls.buttonUp then ctrl.controls.buttonUp.shown = false end - end - return ctrl -end + -- Build the trade search URL based on popup selections local function buildURL(item, slotName, controls, modEntries, defenceEntries, isUnique) @@ -139,24 +129,34 @@ local function buildURL(item, slotName, controls, modEntries, defenceEntries, is for i, entry in ipairs(modEntries) do local prefix = "mod" .. i if entry.tradeId and controls[prefix .. "Check"] and controls[prefix .. "Check"].state then - local minVal = tonumber(controls[prefix .. "Min"].buf) - local maxVal = tonumber(controls[prefix .. "Max"].buf) local filter = { id = entry.tradeId } - local value = {} - if minVal then - value.min = minVal - end - if maxVal then - value.max = maxVal - end - if entry.invert then - value.min, value.max = value.max, value.min - value.min = value.min and -value.min - value.max = value.max and -value.max - end - if next(value) then - filter.value = value + if entry.isOption then + filter.value = { option = entry.value } + -- some entries don't want to search for ranges, but aren't + -- implemented using options on the trade site (timeless jewels) + elseif entry.needsExactValue then + filter.value = { min = entry.value, max = entry.value } + elseif entry.value then + local minVal = tonumber(controls[prefix .. "Min"].buf) + + local maxVal = tonumber(controls[prefix .. "Max"].buf) + local value = {} + if minVal then + value.min = minVal + end + if maxVal then + value.max = maxVal + end + if entry.invert then + value.min, value.max = value.max, value.min + value.min = value.min and -value.min + value.max = value.max and -value.max + end + if next(value) then + filter.value = value + end end + t_insert(queryTable.query.stats[1].filters, filter) end end @@ -187,6 +187,7 @@ function M.openPopup(item, slotName, primaryBuild) local isUnique = item.rarity == "UNIQUE" or item.rarity == "RELIC" local controls = {} + local uri = "" local rowHeight = 24 local popupWidth = 700 local leftMargin = 20 @@ -199,7 +200,7 @@ function M.openPopup(item, slotName, primaryBuild) -- Collect mod entries with trade IDs local modEntries = {} local modTypeSources = { - { list = item.enchantModLines, type = "enchant" }, + { list = item.enchantModLines, type = "enchant" }, { list = item.implicitModLines, type = "implicit" }, { list = item.explicitModLines, type = "explicit" }, } @@ -207,21 +208,30 @@ function M.openPopup(item, slotName, primaryBuild) if source.list then for _, modLine in ipairs(source.list) do if item:CheckModLineVariant(modLine) then + local modLine = copyTable(modLine) + -- remove unsupported data. the formatting of unsupported + -- mods is confusing here + modLine.extra = nil local formatted = itemLib.formatModLine(modLine) - formatted = formatted and formatted:gsub(" %^8%(Not supported in PoB yet%)", "") if formatted then -- Use range-resolved text for matching - local resolvedLine = (modLine.range and itemLib.applyRange(modLine.line, modLine.range, modLine.valueScalar)) or modLine.line - local tradeHash = tradeHelpers.findTradeHash(item, resolvedLine, source.type, modLine.desecrated) - local identifier = tradeHash and string.format("%s.stat_%s", source.type, tradeHash) - local value = tradeHelpers.modLineValue(resolvedLine) + local resolvedLine = (modLine.range and itemLib.applyRange(modLine.line, modLine.range, modLine.valueScalar)) or + modLine.line + local tradeHash, identifier, value = tradeHelpers.findTradeHash(item, resolvedLine, source.type, modLine.desecrated) + local isOption = not not identifier + if not identifier then + identifier = tradeHash and string.format("%s.stat_%s", source.type, tradeHash) + value = tradeHelpers.modLineValue(resolvedLine) + end + local invert = (not isOption) and tradeHelpers.shouldBeInverted(identifier, resolvedLine, source.type) t_insert(modEntries, { line = modLine.line, - formatted = formatted:gsub("%^x%x%x%x%x%x%x", ""):gsub("%^%x", ""), -- strip color codes + formatted = formatted, tradeId = identifier, value = value, - modType = source.type, - invert = tradeHelpers.shouldBeInverted(identifier, resolvedLine, source.type) + isOption = isOption, + type = source.type, + invert = invert, }) end end @@ -319,6 +329,23 @@ function M.openPopup(item, slotName, primaryBuild) fetchLeaguesForRealm("poe2") ctrlY = ctrlY + rowHeight + 4 + local function rebuildUrl() + local result = buildURL(item, slotName, controls, modEntries, defenceEntries, isUnique) + uri = result + end + + -- Helper: create a numeric EditControl without +/- spinner buttons, and + -- with a preset changeFunc + local function newPlainNumericEdit(anchor, rect, init, prompt, limit) + local ctrl = new("EditControl", anchor, rect, init, prompt, "%D", limit, rebuildUrl) + -- Remove the +/- spinner buttons that "%D" filter triggers + ctrl.isNumeric = false + if ctrl.controls then + if ctrl.controls.buttonDown then ctrl.controls.buttonDown.shown = false end + if ctrl.controls.buttonUp then ctrl.controls.buttonUp.shown = false end + end + return ctrl + end if isUnique then -- Unique item name label controls.nameLabel = new("LabelControl", nil, {0, ctrlY, 0, 16}, "^x" .. (colorCodes[item.rarity] or "FFFFFF"):gsub("%^x","") .. item.name) @@ -330,7 +357,7 @@ function M.openPopup(item, slotName, primaryBuild) ctrlY = ctrlY + rowHeight -- Base type checkbox - controls.baseTypeCheck = new("CheckBoxControl", nil, {-popupWidth/2 + leftMargin + checkboxSize/2, ctrlY, checkboxSize}, "", nil, nil) + controls.baseTypeCheck = new("CheckBoxControl", nil, {-popupWidth/2 + leftMargin + checkboxSize/2, ctrlY, checkboxSize}, "", rebuildUrl) controls.baseTypeLabel = new("LabelControl", {"LEFT", controls.baseTypeCheck, "RIGHT"}, {4, 0, 0, 16}, "^7Use specific base: " .. (item.baseName or "Unknown")) ctrlY = ctrlY + rowHeight @@ -344,7 +371,7 @@ function M.openPopup(item, slotName, primaryBuild) -- Defence stat rows for i, def in ipairs(defenceEntries) do local prefix = "def" .. i - controls[prefix .. "Check"] = new("CheckBoxControl", nil, {-popupWidth/2 + leftMargin + checkboxSize/2, ctrlY, checkboxSize}, "", nil, nil) + controls[prefix .. "Check"] = new("CheckBoxControl", nil, {-popupWidth/2 + leftMargin + checkboxSize/2, ctrlY, checkboxSize}, "", rebuildUrl) controls[prefix .. "Label"] = new("LabelControl", {"LEFT", controls[prefix .. "Check"], "RIGHT"}, {4, 0, 0, 16}, "^7" .. def.label) controls[prefix .. "Min"] = newPlainNumericEdit(nil, {minFieldX - popupWidth/2, ctrlY, fieldW, fieldH}, tostring(m_floor(def.value)), "Min", 6) controls[prefix .. "Max"] = newPlainNumericEdit(nil, {maxFieldX - popupWidth/2, ctrlY, fieldW, fieldH}, "", "Max", 6) @@ -358,51 +385,55 @@ function M.openPopup(item, slotName, primaryBuild) end -- Mod rows + local prevType for i, entry in ipairs(modEntries) do + -- add extra row to separate e.g. implicits + if prevType and prevType ~= entry.type then + ctrlY = ctrlY + rowHeight + end + prevType = entry.type local prefix = "mod" .. i local canSearch = entry.tradeId ~= nil - controls[prefix .. "Check"] = new("CheckBoxControl", nil, {-popupWidth/2 + leftMargin + checkboxSize/2, ctrlY, checkboxSize}, "", nil, nil) + controls[prefix .. "Check"] = new("CheckBoxControl", nil, {-popupWidth/2 + leftMargin + checkboxSize/2, ctrlY, checkboxSize}, "", rebuildUrl) controls[prefix .. "Check"].enabled = function() return canSearch end -- Truncate long mod text to fit + --- @type string local displayText = entry.formatted - if #displayText > 45 then - displayText = displayText:sub(1, 42) .. "..." - end - controls[prefix .. "Label"] = new("LabelControl", {"LEFT", controls[prefix .. "Check"], "RIGHT"}, {4, 0, 0, 16}, (canSearch and "^7" or "^8") .. displayText) - controls[prefix .. "Min"] = newPlainNumericEdit(nil, {minFieldX - popupWidth/2, ctrlY, fieldW, fieldH}, entry.value ~= 0 and tostring(m_floor(entry.value)) or "", "Min", 8) - controls[prefix .. "Max"] = newPlainNumericEdit(nil, {maxFieldX - popupWidth/2, ctrlY, fieldW, fieldH}, "", "Max", 8) + local colorCodeLength = displayText:match("(%^x%x%x%x%x%x%x)") or displayText:gsub("(%^%x)", "") or "" if not canSearch then - controls[prefix .. "Min"].enabled = function() return false end - controls[prefix .. "Max"].enabled = function() return false end + -- strip color codes and replace with gray + displayText = "^8" .. displayText:gsub("%^x%x%x%x%x%x%x", ""):gsub("%^%x", "") + end + if #displayText > (#colorCodeLength + 60) then + displayText = displayText:sub(1, #colorCodeLength + 54) .. "..." + end + + controls[prefix .. "Label"] = new("LabelControl", { "LEFT", controls[prefix .. "Check"], "RIGHT" }, { 4, 0, 0, 16 }, + displayText) + -- when the trade site has a dropdown for the value, we opt to disable + -- the inputs as they are numeric + if not (entry.isOption or entry.needsExactValue) and entry.value then + controls[prefix .. "Min"] = newPlainNumericEdit(nil, {minFieldX - popupWidth/2, ctrlY, fieldW, fieldH}, entry.value ~= 0 and tostring(m_floor(entry.value)) or "", "Min", 8) + controls[prefix .. "Max"] = newPlainNumericEdit(nil, {maxFieldX - popupWidth/2, ctrlY, fieldW, fieldH}, "", "Max", 8) + if not canSearch then + controls[prefix .. "Min"].enabled = function() return false end + controls[prefix .. "Max"].enabled = function() return false end + end end ctrlY = ctrlY + rowHeight end -- Search button ctrlY = ctrlY + 8 - controls.search = new("ButtonControl", nil, {0, ctrlY, 110, 20}, "Generate URL", function() - local success, result = pcall(function() - return buildURL(item, slotName, controls, modEntries, defenceEntries, isUnique) - end) - if success and result then - controls.uri:SetText(result, true) - elseif not success then - controls.uri:SetText("Error: " .. tostring(result), true) - else - controls.uri:SetText("Error: could not determine league", true) - end - end) - ctrlY = ctrlY + rowHeight + 4 - - -- URL field - controls.uri = new("EditControl", nil, {-30, ctrlY, popupWidth - 100, fieldH}, "", nil, "^%C\t\n") - controls.uri:SetPlaceholder("Press 'Generate URL' then Ctrl+Click to open") - controls.uri.tooltipFunc = function(tooltip) - tooltip:Clear() - if controls.uri.buf and controls.uri.buf ~= "" then - tooltip:AddLine(16, "^7Ctrl + Click to open in web browser") - end + controls.search = new("ButtonControl", nil, {0, ctrlY, 110, 20}, "Open URL", function() + Copy(uri) + OpenURL(uri) + end, nil) + controls.search.tooltipText = "The URL is also copied to the clipboard." + controls.search.enabled = function() + return uri and uri ~= "" end + controls.close = new("ButtonControl", nil, {popupWidth/2 - 50, ctrlY, 60, 20}, "Close", function() main:ClosePopup() end) diff --git a/src/Classes/TradeHelpers.lua b/src/Classes/TradeHelpers.lua index 36d37107d6..28d9d59abc 100644 --- a/src/Classes/TradeHelpers.lua +++ b/src/Classes/TradeHelpers.lua @@ -9,28 +9,35 @@ local dkjson = require "dkjson" local M = {} -- Helper: get rarity color code for an item +--- @param item table function M.getRarityColor(item) if not item then return "^7" end - if item.rarity == "UNIQUE" then return colorCodes.UNIQUE - elseif item.rarity == "RARE" then return colorCodes.RARE - elseif item.rarity == "MAGIC" then return colorCodes.MAGIC - else return colorCodes.NORMAL end + if item.rarity and colorCodes[item.rarity] then + return colorCodes[item.rarity] + else + return "^7" + end end -- Helper: normalize a mod line by replacing numbers with "#" for template matching +--- @param line string function M.modLineTemplate(line) -- Replace decimal numbers first (e.g. "1.5"), then integers - return line:gsub("[%d]+%.?[%d]*", "#") + return line:gsub("%-?[%d]+%.?[%d]*", "#") end -- Helper: extract the first number from a mod line for value comparison +--- @param line string function M.modLineValue(line) - return tonumber(line:match("[%d]+%.?[%d]*")) or 0 + return tonumber(line:match("%-?[%d]+%.?[%d]*")) end -- Helper: fetch and cache the trade API stats local _tradeStats = nil local _tradeStatsFetched = false +-- contains data for stats which have options, like allocates # +local optionTradeStatMap = {} +--- @return table local function getTradeStatsLookup() if _tradeStats then return _tradeStats end local tradeStats = "" @@ -47,6 +54,22 @@ local function getTradeStatsLookup() if not ok or tradeStats == "" then return {} end local parsed = dkjson.decode(tradeStats) _tradeStats = parsed.result + + for _, cat in ipairs(_tradeStats) do + if cat.id == "enchant" or cat.id == "explicit" or cat.id == "implicit" then + optionTradeStatMap[cat.id] = {} + for _, entry in ipairs(cat.entries) do + local tradeId, option = entry.id:match("(.*)|(.*)") + if tradeId and option then + local newEntry = { type = cat.id, text = entry.text, tradeId = entry.id } + if entry.text:match("#") then + newEntry.pattern = entry.text:gsub("#", "(.*)") + end + table.insert(optionTradeStatMap[cat.id], newEntry) + end + end + end + end return _tradeStats end @@ -57,28 +80,71 @@ M.sourceTypeToCategory = { ["enchant"] = "Enchant", } +-- inverses a mod. e.g. more x -> less x +--- @param modLine string +function M.swapInverse(modLine) + local priorStr = modLine + local inverseKey + if modLine:match("increased") then + modLine = modLine:gsub("([^ ]+) increased", "-%1 reduced") + if modLine ~= priorStr then inverseKey = "increased" end + elseif modLine:match("reduced") then + modLine = modLine:gsub("([^ ]+) reduced", "-%1 increased") + if modLine ~= priorStr then inverseKey = "reduced" end + elseif modLine:match("more") then + modLine = modLine:gsub("([^ ]+) more", "-%1 less") + if modLine ~= priorStr then inverseKey = "more" end + elseif modLine:match("less") then + modLine = modLine:gsub("([^ ]+) less", "-%1 more") + if modLine ~= priorStr then inverseKey = "less" end + elseif modLine:match("expires ([^ ]+) slower") then + modLine = modLine:gsub("([^ ]+) slower", "-%1 faster") + if modLine ~= priorStr then inverseKey = "slower" end + elseif modLine:match("expires ([^ ]+) faster") then + modLine = modLine:gsub("([^ ]+) faster", "-%1 slower") + if modLine ~= priorStr then inverseKey = "faster" end + end + return modLine, inverseKey +end + +-- checks if the mod should be inverted before query +--- @param tradeId string +--- @param modLine string +--- @param modType string function M.shouldBeInverted(tradeId, modLine, modType) local formattedLine = M.formatDatabaseText(M.formatDatabaseText(modLine)) + local invertedLine, inverseKey = M.swapInverse(formattedLine) + invertedLine = invertedLine:gsub("^%-", "") + if not inverseKey then + return false + end for _, category in ipairs(getTradeStatsLookup()) do if category.id == modType then for _, stat in ipairs(category.entries) do if tradeId == stat.id then -- remove radius jewel extra text local formattedTradeSiteText = M.formatDatabaseText(stat.text) - -- local modifiers don't seem to be inverted. same goes for - -- the single stat that has (charm) in it - if formattedTradeSiteText:match("(Local)") or formattedTradeSiteText:match(" %(Charm%)$") then + -- there are multiple stat variants on the trade site which are marked with e.g. (Local). None of these seem to be inverted, so we can check for those and return early + if formattedTradeSiteText:match(" %(%w+%)$") then return false end - -- trade site sometimes has a + sign, sometimes not - return not (formattedLine == formattedTradeSiteText or formattedLine:gsub("^%+", "") == formattedTradeSiteText) + + -- test for inverted mod + if inverseKey and ((invertedLine == formattedTradeSiteText) or (invertedLine:gsub("^%+", "") == formattedTradeSiteText)) then + return true + end + + -- otherwise it's probably not inverted + return false end end end end + return false end -- Helper: normalise data texts to # format +--- @param text string function M.formatDatabaseText(text) -- decimal -> integer text = text:gsub("%d+%.%d+", "1") @@ -93,25 +159,67 @@ function M.formatDatabaseText(text) end -- Helper: find the trade stat ID for a mod line +--- @param item table +--- @param modLine string +--- @param modType string +--- @param isDesecrated boolean +--- the +--- @return number? hash returned for most mods +--- @return string? optionTradeId returned if the mod is an option. e.g. Allocates X +--- @return number value returned if the mod is an option and uses values. e.g. timeless jewel function M.findTradeHash(item, modLine, modType, isDesecrated) local formattedLine = M.formatDatabaseText(modLine) -- the data export splits some mods into different parts, even though they -- are technically just one stat. we handle that here - function findStat(dbMod, allowDefault) - local excludeTags = (not allowDefault) and { default = true } or nil - if #dbMod.weightKey > 0 and not (item:GetModSpawnWeight(dbMod, nil, excludeTags) > 0) then + local isUnique = item.rarity == "UNIQUE" or item.rarity == "RELIC" + local function findStat(dbMod, ignoreWeights) + local excludeTags = (not isUnique) and { default = true } or nil + if not ignoreWeights and #(dbMod.weightKey or {}) > 0 and not (item:GetModSpawnWeight(dbMod, nil, excludeTags) > 0) then return nil end for tradeHash, description in pairs(dbMod.tradeHashes) do - for _, line in ipairs(description) do - local dbFormatted = M.formatDatabaseText(line) - if formattedLine == dbFormatted then + local tradeLine = table.concat(description, "\n") + if formattedLine == M.formatDatabaseText(tradeLine) then + return tradeHash + end + + -- the mod line splitting between the stat export and item parsing + -- can be different. hence we test both a combined line and separate + -- lines + for _, descLine in ipairs(description) do + if formattedLine == M.formatDatabaseText(descLine) then return tradeHash end end end end + -- initialise optionTradeStatMap + if not _tradeStats then + getTradeStatsLookup() + end + + for _, v in ipairs(optionTradeStatMap[modType] or {}) do + if v.pattern then + local match = v.pattern:match(modLine) + if match then + return nil, v.tradeId, tonumber(match) + end + elseif v.text == modLine then + return nil, v.tradeId + end + end + + + -- desecrate-only mods + if isDesecrated then + for _, dbMod in pairs(data.itemMods.Desecrated) do + local tradeHashMaybe = findStat(dbMod, isUnique) + if tradeHashMaybe then + return tradeHashMaybe + end + end + end -- corruptions if modType == "enchant" then for _, dbMod in pairs(data.itemMods.Corruption) do @@ -120,33 +228,22 @@ function M.findTradeHash(item, modLine, modType, isDesecrated) return tradeHashMaybe end end - -- explicit - elseif modType ~= "implicit" then - local modList = (item.base and item.base.type == "Jewel" and data.itemMods.Jewel) - or data.itemMods.Item - for _, dbMod in pairs(modList) do + -- most implicit and explicit applicable to the type + elseif modType ~= "implicit" or modType ~= "explicit" then + for _, dbMod in pairs(item.affixes) do local tradeHashMaybe = findStat(dbMod) if tradeHashMaybe then return tradeHashMaybe end end end - -- implicit, and special explicit (e.g. unique and essence) + -- special mods with weird weights for _, dbMod in pairs(data.itemMods.Exclusive) do local tradeHashMaybe = findStat(dbMod, true) if tradeHashMaybe then return tradeHashMaybe end end - -- desecrated mods (some of these are unique) - if isDesecrated then - for _, dbMod in pairs(data.itemMods.Desecrated) do - local tradeHashMaybe = findStat(dbMod) - if tradeHashMaybe then - return tradeHashMaybe - end - end - end -- charm mods if item.base and item.base.type == "Charm" then for _, dbMod in pairs(data.itemMods.Charm) do @@ -157,6 +254,13 @@ function M.findTradeHash(item, modLine, modType, isDesecrated) end end end + -- essence mods don't seem to have spawn weights and are tested last + for _, dbMod in pairs(data.itemMods.Item) do + local tradeHashMaybe = findStat(dbMod, true) + if tradeHashMaybe then + return tradeHashMaybe + end + end end -- Map slot name + item type to (trade API category string, itemCategoryTags key). @@ -212,7 +316,9 @@ function M.getTradeCategory(slotName, item) end end + -- Helper: get a display-friendly category name from slot name +--- @param item table function M.getTradeCategoryLabel(slotName, item) if not item or not item.base then return "Item" end local baseType = item.base.type or item.type @@ -221,6 +327,7 @@ end -- Helper: build a mod comparison map from an item. -- Returns a table keyed by template string → { line = original text, value = first number } +--- @param item table function M.buildModMap(item) local modMap = {} if not item then return modMap end @@ -239,6 +346,8 @@ function M.buildModMap(item) end -- Helper: get diff label string for an item slot comparison +--- @param pItem table +--- @param cItem table function M.getSlotDiffLabel(pItem, cItem) if not pItem and not cItem then return "^8(both empty)" @@ -334,23 +443,6 @@ local function fitItemName(colorCode, name, maxW) return colorCode .. name:sub(1, lo) .. "..." end -local function fitSlotLabel(label, maxW) - local display = "^7" .. label .. ":" - if DrawStringWidth(16, "VAR", display) <= maxW then - return display - end - local lo, hi = 0, #label - while lo < hi do - local mid = m_floor((lo + hi + 1) / 2) - if DrawStringWidth(16, "VAR", "^7" .. label:sub(1, mid) .. "...:") <= maxW then - lo = mid - else - hi = mid - 1 - end - end - return "^7" .. label:sub(1, lo) .. "...:" -end - -- Helper: draw a single compact-mode item row. -- Returns: pHover, cHover, b1Hover, b2Hover, b3Hover, b2X, b2Y, b2W, b2H, hoverItem, hoverItemsTab -- copyBtnW, copyBtnH, buyBtnW are button dimensions (passed from LAYOUT by caller). @@ -372,11 +464,11 @@ function M.drawCompactSlotRow(drawY, slotLabel, pItem, cItem, local diffLabel = M.getSlotDiffLabel(pItem, cItem) -- Layout positions (fixed 310px box width matching regular Items tab) - local labelX = xOffset + 10 + local labelX = 10 + xOffset local pBoxX = labelX + maxLabelW + 4 local pBoxW = ITEM_BOX_W - local cBoxX = xOffset + colWidth + 10 + local cBoxX = colWidth + 10 + xOffset local cBoxW = ITEM_BOX_W -- Diff indicator position @@ -390,7 +482,7 @@ function M.drawCompactSlotRow(drawY, slotLabel, pItem, cItem, -- Draw slot label SetDrawColor(1, 1, 1) - DrawString(labelX, drawY + 2, "LEFT", 16, "VAR", fitSlotLabel(slotLabel, maxLabelW)) + DrawString(labelX, drawY + 2, "LEFT", 16, "VAR", "^7" .. slotLabel .. ":") -- Draw primary item box local pBorderGray = pHover and 0.5 or 0.33 From 396376a8ac77c449269a0b94bcf4cf957ef0206e Mon Sep 17 00:00:00 2001 From: vaisest <4550061+vaisest@users.noreply.github.com> Date: Sat, 23 May 2026 02:36:36 +0300 Subject: [PATCH 42/42] Fix timeless jewel searching (completely useless) --- src/Classes/CompareBuySimilar.lua | 4 ---- src/Classes/TradeHelpers.lua | 6 ++++-- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/Classes/CompareBuySimilar.lua b/src/Classes/CompareBuySimilar.lua index c9f23e4b14..13d1943464 100644 --- a/src/Classes/CompareBuySimilar.lua +++ b/src/Classes/CompareBuySimilar.lua @@ -131,10 +131,6 @@ local function buildURL(item, slotName, controls, modEntries, defenceEntries, is if entry.tradeId and controls[prefix .. "Check"] and controls[prefix .. "Check"].state then local filter = { id = entry.tradeId } if entry.isOption then - filter.value = { option = entry.value } - -- some entries don't want to search for ranges, but aren't - -- implemented using options on the trade site (timeless jewels) - elseif entry.needsExactValue then filter.value = { min = entry.value, max = entry.value } elseif entry.value then local minVal = tonumber(controls[prefix .. "Min"].buf) diff --git a/src/Classes/TradeHelpers.lua b/src/Classes/TradeHelpers.lua index 28d9d59abc..5c0fd55c43 100644 --- a/src/Classes/TradeHelpers.lua +++ b/src/Classes/TradeHelpers.lua @@ -63,7 +63,9 @@ local function getTradeStatsLookup() if tradeId and option then local newEntry = { type = cat.id, text = entry.text, tradeId = entry.id } if entry.text:match("#") then - newEntry.pattern = entry.text:gsub("#", "(.*)") + -- work around issue where pob splits timeless jewel + -- mods into separate mod lines + newEntry.pattern = entry.text:gsub("\n.*", ""):gsub("(%+)", "%%+"):gsub("#", "(%%d%+)") end table.insert(optionTradeStatMap[cat.id], newEntry) end @@ -201,7 +203,7 @@ function M.findTradeHash(item, modLine, modType, isDesecrated) for _, v in ipairs(optionTradeStatMap[modType] or {}) do if v.pattern then - local match = v.pattern:match(modLine) + local match = modLine:match(v.pattern) if match then return nil, v.tradeId, tonumber(match) end